@charset "UTF-8";

/*---Google Fonts---*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --thm-font: 'Rubik', sans-serif;
    /* Headings */
    --thm-b-font:  'Rubik', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /* --thm-icon-font: "Font Awesome 5 Pro"; */
    /*Icon Font*/
    --thm-color-one: #FF7A33;
    --thm-color-two: #000;
    --thm-color-three: #fff;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #3C2B01;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-text: #050556;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    background-color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

.section-padding.section {
    padding-bottom: 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 30px;
    padding-top: 0;
    border-left: 4px solid var(--thm-color-one);
    border-radius: 10px;
    border-bottom: 2px solid #e2dcdc;
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 16px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}
.slick-arrow.slick-prev:before {
    content: "\f053";
}
.slick-arrow {
    background-color: #B0B0B0;
    position: absolute;
    top: 48%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 50%;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid #B0B0B0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev.slick-arrow {
    left: -30px;
}
.slick-next.slick-arrow {
    right: -30px;
/*    left: 0;*/
}



.slick-arrow.slick-prev:hover {
    border: 2px solid var(--thm-color-one);
    background-color:transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-prev:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus:before {
    color: var(--thm-color-one);
}

.slick-arrow.slick-next:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-next:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus:before {
    color: var(--thm-color-one);
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}

.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 2px solid ;
    color: #000;
    border-radius: 5px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    color: var(--thm-color-two);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
    line-height: 1.2;
}
h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
h5 {
    font-size: 20px;
    line-height: 1.3;
}
h6 {
    font-size: 16px;
    line-height: 1.7;
}
p {
    margin-bottom: 25px;
    color: #696B67;
    line-height: 1.3;
}
a {
    color: var(--thm-color-three);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px 40px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}
.whislist-table {
    overflow: auto;
}
.order-title {
    color: #000;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}
/*Buttons*/
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
.btn:hover {
    background-color: transparent;
}
.thm-btn:hover i, .thm-btn:focus i {
    color: var(--thm-color-one);
}
.thm-btn:hover, .thm-btn:focus {
    color: var(--thm-color-one);
    background-color: #000 !important;
    justify-content: center;
} 
.thm-btn i {
    color: #fff;
}
.thm-btn {
    color: #fff;
    background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    transition: 0.5s all;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    gap: 7px;
    overflow: hidden;
}
.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}

.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}
.thm-btn i {
    font-size: 19px;
    line-height: normal;
    color: #fff;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 4px 15px;
}
.thm-btn-two {
    background: #FFE0D0;
    padding: 2px 15px;
    border-radius: 6px;
    color: #FF7A33;
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s all;
}
.thm-btn-two:hover  {
    background-color: #000;
    color: #fff;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
/*---------------------------------------*/
/*------header start------*/
/* .menu-item a:hover {
    transform: translateX(5px);
} */
.active {
    color: var(--thm-color-one) !important;
}
.header-logo {
    padding: 10px 0;
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-icon {
    display: flex;
    justify-content: end;
    align-items: center;
}
.btn.btn-primary {
    width: 50px;
    height: 35px;
    /* margin-right: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

.btn.btn-primary i {
    transition: 0.5s all;
}

.btn.btn-primary i:hover {
    color: var(--thm-color-one);
}

/*------header end------*/

.main-menu {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}
.menu-item a {
    color: #000;
    padding: 18px 10px;
    font-size: 15px;
    font-weight: 600;
    /* padding-bottom: 0; */
    padding-top: 0;
}
nav.navigation {
    width: 70%;
    text-align: center;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    padding-top: 46px;
}
.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .menu-item a:hover {
    color: var(--thm-color-one) !important;
}
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
    height: 288px;
    overflow: auto;
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item a {
    padding: 0;
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover a {
    background-color: #000;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 52px;
}
.header .header_action {
    margin-left: 15px;
}
.header.sticky .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: -100%;
    top: 52px;
}
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/
.header-search {
    position: relative;
    width: 60%;
}
.header-search i {
    position: absolute;
    left: 14px;
    top: 29%;
}
.header-search input {
    padding-left: 40px;
}
.header {
    background: #fff;
    position: relative;
    z-index: 99;
    border-bottom: 2px solid #D1D1D1;
    /* padding: 15px 0; */
}
.logo {
    padding: 15px 0;
}
.stat-select {
    color: #4C8EFF;
    font-size: 14px;
    margin-bottom: 15px;
}
.header-profile .profile-icon {
    width: 40px;
    height: 40px;
    background: var(--thm-color-one);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
        position: relative;
}
.header-profile .profile-icon:hover {
    background-color: #000;
}
.header-profile {
    display: flex;
    align-items: center;
    gap: 5px;
}
.profile-main {
    position: relative;
    padding-bottom: 30px;
    padding-top: 30px;
    transition: 0.5s all;
    padding-left: 20px;
}
.profile-main:hover .profile-dropdown {
    display: block;
    width: 300px;
    transition: 0.5s all;
    display: block;
}
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0%;
    background: #fff;
    border-radius: 15px;
    width: 0px;
    min-height: 200px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    transition: 0.5s all;
}
ul.user-list-header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
ul.user-list-header li a {
    color: #696B67;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: 0.5s all;
}
.user-list-header li a:hover {
    color: var(--thm-color-one);
}
.user-name {
    display: flex;
    align-items: center;
    padding: 15px 14px;
    background: var(--thm-color-one);
    color: #fff;
    gap: 15px;
    border-radius: 15px 15px 0 0;
}
.user-full-name {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}
.user-sort-name {
    background: #fff;
    color: var(--thm-color-one);
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-right {
    padding-top: 36px;
    text-align: end;
}




/*--------banner start------*/

.banner-bg {
    height: 450px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    z-index: 0;
    border-radius: 20px;
}
.banner-title {
    font-size: 64px;
    color: #fff;
    padding-top: 20px;
}
.overlay:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}
.banner-text p {
    color: #fff;
    font-size: 23px;
}
.banner-sm {
    background-color: #fff !important;
}
.banner-sm:before {
    background-color: var(--thm-color-one) !important; 
    outline: 4px solid #f7efca !important;
}
.heading-top-sm {
    background: #FEF3D7;
    color: #1E1600;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: Lora;
    position: relative;
    padding-left: 40px;

}
.heading-top-sm:before {
    position: absolute;
    content: '';
    top: 39%;
    background-color: var(--thm-color-two);
    left: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: 4px solid #cacbf7;
}
.banner-btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.thm-text {
    color: var(--thm-text);
}

.banner-text.slick-slide.slick-current.slick-active h2 {
    display: block;
}
@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
    border-top: 1px solid #fff;
    background: #FFF9EB;
    margin-top: 90px;
}
.marquee-text {
    color: #B58203;
    font-size: 18px;
    font-weight: 500;
    margin: 0 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 28px;
}
.banner-title h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner-slider .slick-dots {
    position: absolute;
    right: 9%;
    bottom: 0;
}
.banner-slider .slick-dots li button {
    background-color: #fff;
    width: 15px;
    height: 15px;
}
.banner-slider .slick-dots li.slick-active button {
    background-color: var(--thm-color-one);
    width: 15px;
    height: 15px;
}
.banner-slider .slick-dots li.slick-active button:before {
    width: 25px;
    height: 25px;
    opacity: 0;
}
.btn-sm {
    padding: 4px 16px;
    font-size: 14px;
}
/*--------banner end------*/

/*--------footer start-----*/
.footer {
    background: #fff;
    padding-bottom: 30px;
}
.ft-logo img {
    width: 100px;
}
.follow-icon i {
    color: #fff;
    transition: 0.5s all;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
}
.follow-icon i:hover {
    color: var(--thm-color-one);
}
.ft-left p {
    /* text-align: justify; */
    color: #B4BBC5;
    font-size: 14px;
}
.ft-list li {
    line-height: 1.3;
    padding-bottom: 15px;
    font-size: 14px;
}
.ft-title p {
    color: #000;
    margin-bottom: 28px;
    font-size: 20px;
    font-weight: 600;
    /* border-bottom: 1px solid; */
    display: inline-block;
    font-family: 'Poppins';
}
.ft-item li:hover {
    color: var(--thm-color-one);
}
.ft-item li {
    transition: 0.5s all;
    cursor: pointer;
    font-weight: 500;
    color: #b7b7b7;
}
.custom-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-title {
    margin-bottom: 20px;
}

.copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #141310;
    font-size: 15px;
    font-weight: 500;
}
.copyright p a {
    color: #141310;
}
.copyright {
    padding: 20px 0;
    /* border-top: 2px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FEE7AF;
}
.ft-list li a {
    color: #696B67;
    font-size: 16px;
    /* font-family: 'Lora'; */
    display: flex;
    align-items: center;
    gap: 11px;
}
.ft-list li a:hover {
    color: var(--thm-color-one);
}
.ft-mail-box {
    border: 1px solid #8E8E93;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px;
}
.ft-mail-box input {
    border: 0;
    width: 100%;
}

.ft-social-icon li a {
    transition: 0.5s all;
}
.ft-left {
    padding-right: 40px;
}
.ft-social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ft-social-icon li i {
    color: #fff;
    width: 33px;
    height: 33px;
    background: var(--thm-color-one);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: 0.5s all;
}
.ft-social-icon li:hover i {
    color: #fff;
    background-color: #000;
}
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.ft-payment-image {
    width: 58%;
}
.ft-payment-image ul {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

/*--------footer end-----*/

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #ffffff;
     background: var(--thm-color-two);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: #fff;
    color: var(--thm-color-one);
    transform: rotate(360deg);
}

/*----subheader star----*/
.subheader {
    position: relative;
    background-image: url(../images/subheader.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    height: 330px;
    display: flex;
    align-items: center;
}
.subheader:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.5;
}
.subheader-title {
    text-align: center;
}
.subheader-title h1 {
    color: #fff;
    margin-bottom: 5px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    justify-content: center;
}

.form-group input {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
}
.form-group select {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
}
 input:focus {
    border-color: var(--thm-color-one);
}
.form-control:focus {
    border-color: var(--thm-color-one);
}
.form-group textarea {
    width: 100%;
    height: 181px;
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
}
 textarea:focus {
    border-color: var(--thm-color-one);
}

/*----------cart start----------*/
tbody tr td:hover {
    background-color: #f7f7f7;
}
tbody tr td {
    border: 0;
    transition: 0.5s all;
    padding: 35px 15px;
}
tbody tr {
    border: 2px solid #e7e7e7;
    margin-bottom: 20px;
}
thead th {
    border: 0;
}

thead tr {
    border: 2px solid #dedada;
}
/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.section-heading {
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
}
.section-heading a:hover {
    color: #000;
}
.section-heading h2 {
    color: #1E1600;
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 600;
    text-align: left;
}
.section-heading p {
    color: #525B5A;
}
.color-one {
    color: var(--thm-color-one) !important;
}
.breadcrumb li {
    margin: 0 5px;
}

.breadcrumb li a {
    text-decoration: none;
    color: #000;
}

.breadcrumb li a:hover {
    text-decoration: underline;
    color: #4C8EFF;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 5px;
    color: #4C8EFF;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li:last-child a {
    color: #4C8EFF;
    pointer-events: none;
    cursor: default;
}

/* --------------inner page css------------------------------- */
.section-hedding h2 {
    color: var(--thm-color-one);
    font-weight: 500;
    font-style: italic;
}



/* ------------------css inner page------------------------------------ */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  color: #ffffff;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.5); 
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}

/* -------------------------------------------------- */

.category-card {
    border-radius: 20px;
    margin: 12px;
    margin-bottom: 20px;
}
.category-card.one {
    background: #E9F1FF;
}
.category-card.two {
    background: #F6FFE9;
}
.category-card.three {
    background: #FDF4FF;
}
.category-card.four {
    background: #FFF4EA;
}
.category-card img {
    padding: 15px;
    text-align: center;
}
.category-name {
    padding: 13px 20px;
    border-radius: 0 0 20px 20px;
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
    display: block;
    color: #000;
}
.category-name.one {
    background: #CBE4FF;
}
.category-name.two {
    background: #E0EFCC;
}
.category-name.three {
    background: #FBE2FF;
}
.category-name.four {
    background: #FFEFE0;
}
.product-image {
    border: 2px solid #E7E7E7;
    border-radius: 20px;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: 0.5s all;
}

.product-image img {
    width: 100%;
    transition: 0.5s all;
    height: 306px;
    object-fit: contain;
}
.product-image:hover img {
    transform: scale(1.1);
}

.product-perra {
    padding: 10px;
    height: 100%;
    max-height: 288px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-perra a h3:hover {
    color: var(--thm-color-one);
     transition: 0.3s all;
}
.product-perra h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-weight {
    background: #4C8EFF;
    color: #fff;
    padding: 4px 7px;
    border-radius: 5px;
    margin-bottom: 24px;
    font-size: 14px;
}
.price-mian {
    display: flex;
    align-items: end;
    gap: 5px;
    margin-bottom: 10px;
}
.price-bg {
    font-size: 24px;
    color: #000;
    font-weight: 600;
}
.price-throuth {
    text-decoration: line-through;
    color: #888888;
    line-height: 2.3;
}
.product-card .thm-btn {
    width: 100%;
}
.product-card {
    margin: 12px;
    margin-bottom: 20px;
}
.sport-card {
    margin: 12px;
}
.sport-image img {
    width: 100%;
}
.download-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}
.download-item-icon {
    background: #FFEFE6;
    padding: 10px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}
.flex-image {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.download-text {
    width: 100%;
}
.download-box {
    position: relative;
    z-index: 0;
    text-align: center;
}
.download-image .download-center {
    width: 70%;
    margin: auto;
}
.download-sm-left {
    position: absolute;
    bottom: 15%;
    width: auto ;
    left: 13%;
}
.download-sm-right {
    position: absolute;
    top: 15%;
    width: auto ;
    right: 13%;
}
.download-image:before {
    position: absolute;
    content: '';
    bottom: 4%;
    left: 0;
    width: 363px;
    height: 300px;
    background: #4C8EFF;
    border-radius: 20px;
    z-index: -1;
}
.bottom-bg-title {
    font-size: 20px;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b7d2ffbd;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 5px;
  width: 800px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.login-title {
    position: relative;
    text-align: center;
    padding-bottom: 15px;
}
.login-title:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 40%;
    background: #696B67;
    width: 100px;
    height: 2px;
    opacity: 0.7;
}
.login-logo {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 61px;
}
.login-box {
    text-align: center;
}
.login-box .form-group label {
    text-align: left;
    display: block;
}
.otp-inputs {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    margin: auto;
    justify-content: center;
    margin-bottom: 30px;
}

.otp-box {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.otp-box:focus {
  border-color: var(--thm-color-one);
  box-shadow: 0 0 5px rgba(246, 194, 96, 0.5);
}
.gender-selector {
    display: flex;
    gap: 20px;
    justify-content: left;
    margin-top: 20px;
    margin-bottom: 30px;
}

.gender-option {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gender-option i {
    font-size: 20px;
    margin-bottom: 5px;
}

.gender-option.active {
    background-color: black;
    color: white !important;
}

.gender-option span {
    font-size: 14px;
}
#onboarding .popup-content {
    padding: 20px;
}
.thm-btn.bg-light {
    color: #696B67;
    background: #fff;
    border: 1px solid ;
}
.main-image {
  width: 100%;
  border-radius: 10px;
}
.product-info h3 {
    margin-bottom: 0;
}
.product-info p {
    margin-bottom: 0;
}
.product-info {
  text-align: center;
  margin-top: 10px;
  background: #ffe4d1;
  padding: 15px;
  border-radius: 10px;
}
.thumb-slider {
    width: 75%;
}
.thumb-slider .swiper-slide {
    width: 150px !important;
    height: 150px;
    margin-right: 10px;
    cursor: pointer;
}
.thumb-slider .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: border 0.3s;
}
.product-details-image {
    position: relative;
}
.thumb-slider .swiper-slide-thumb-active .thumb {
  border-color: coral;
}
.dot-image:before {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;
    border: 1px solid #009246;
    width: 20px;
    height: 20px;
}
.dot-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #009246;
    padding: 5px;
    border-radius: 50%;
}

.product-slider-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}
.thumb-slider .swiper-wrapper {
    flex-direction: column;
    /* width: 147px; */
    gap: 20px;
}

.product-details {
    /* max-width: 600px; */
    /* margin: auto; */
    position: relative;
}

.category {
  color: #007bff;
  font-size: 14px;
  margin-bottom: 5px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.brand {
    font-size: 14px;
    margin-bottom: 5px;
    color: #007bff;
}
.brand-name {
  font-weight: bold;
}
.rating i {
color: var(--thm-color-one);
}
.share-btn i {
    background: #FFE4D6;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.share-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.price-box {
  margin-top: 10px;
  font-size: 18px;
}
.current-price {
    font-weight: bold;
    color: #000;
}
.old-price {
    text-decoration: line-through;
    margin: 0 8px;
    color: #888;
    font-size: 14px;
}
.discount {
    color: #4C8EFF;
    font-size: 14px;
    margin: 0 10px;
}
.tax-info {
  font-size: 14px;
  color: #4C8EFF;
}
.offers h6 {
    margin-bottom: 10px;
}
.offers p {
    margin-bottom: 8px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 10px;
}
.offers {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 14px;
}

.qty-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #B0B0B0;
    border-radius: 10px;
    width: fit-content;
}
.qty-btn {
    background: #eee;
    border: none;
    color: #696B67;
    padding: 5px 13px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
}
.quantity input {
    width: 46px;
    text-align: center;
    border: 0px solid #ccc;
    margin: 0 5px;
    color: var(--thm-color-one);
    font-size: 16px;
}
.qty-btn.border-raduis {
    border-radius: 0 10px 10px 0;
}
.add-to-cart, .buy-now {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.add-to-cart {
  background: #f2f2f2;
}
.buy-now {
  background: #ff6f00;
  color: #fff;
}

.weight-flower {
  margin: 20px 0;
}
.weight-flower .label {
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.weight-flower .option {
    padding: 6px 12px;
    border: 1px solid #ccc;
    /* background: #f2f2f2; */
    border-radius: 10px;
    cursor: pointer;
    color: #B0B0B0;
}
.weight-flower .option.active {
  background: #ffeadf;
  color: #ff6f00;
  border-color: #ff6f00;
}
.delivery-box {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}
.delivery-type {
    padding: 6px 10px;
    background: #fff;
    border-radius: 10px;
}
.delivery-box input {
  padding: 5px;
  width: 90%;
  border: 0px solid #ccc;
}
.check-btn {
    /* padding: 6px 10px; */
    /* margin-left: 10px; */
    border: none;
    /* background: #ff6f00; */
    color: #ff6f00;
    cursor: pointer;
}
.delivery-service-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    font-size: 15px;
    color: #696B67;
}
.delivery-service-list li {
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
ul.delivery-service-list.list-style {
    list-style: disc !important;
    padding-left: 23px;
}
ul.delivery-service-list.list-style li {
    display: revert !important;
}

.dashboard {
  display: flex;
}

.sidebar {
  width: 300px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-btn {
  padding: 8px 12px;
  text-align: left;
  color: #696B67;
  border: none;
  background: #F4F4F4;
  border-left: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn.active {
  color: #007bff !important;
  background: #fff;
  border-left: 3px solid #007bff;
}

.tab-btn.logout {
  color: #ff4d4d;
}

.tab-content {
  margin-left: 20px;
  flex: 1;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.profile-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.profile-box .info {
    color: #696B67;
}
.profile-box .avatar {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #ff6f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid;
}
.editBtn {
   transition: 0.5s all;
}
.editBtn:hover {
    color: #000;
}
.edit-link {
  margin-left: auto;
  color: #007bff;
  font-size: 14px;
  text-decoration: none;
}
.edit-form-box {
  display: none;
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px #ccc;
}
.form-group label {
  margin-bottom: 5px;
}



.order-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 4px #ddd;
  /*display: flex;*/
  padding: 15px;
  margin-bottom: 15px;
  gap: 15px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.order-image img {
    width: 150px;
    height: 150px;
}
.order-details {
  flex: 1;
}
.order-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e1c70b;
    color: #000;
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 0;
}
.thm-btn.btn-small.cancel {
    background: red;
}
.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
    line-height: 1.3;
}
.price {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
}
.product-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.qty-control button {
  padding: 4px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
ul.progressbar {
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.track-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 4px #ddd;
    /* display: flex; */
    padding: 15px;
    margin-bottom: 15px;
}
.product-desc {
    color: #000;
}
.order-price {
    color: #000;
}
.product-desc.product-details-title p {
    margin-bottom: 10px;
}
.product-name {
    margin-bottom: 10px;
}
.bill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
}
.order-card .product-img {
    width: 150px;
    height: 150px;
}
.qty-control input {
  width: 30px;
  text-align: center;
  padding: 4px;
}
.order-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
    flex-wrap: wrap;
}
.invoice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.order-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 13px;
  margin-bottom: 8px;
}
.track {
    color: #007bff;
    text-decoration: none;
    white-space: nowrap;
}
.reorder {
    color: #ff6f00;
    text-decoration: none;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.product-img {
    /*width: 20%;*/
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.delivered {
  color: green;
  font-weight: bold;
  font-size: 16px;
}

.cancelled {
    color: red;
    font-weight: bold;
    font-size: 16px;
}

.delivery-status {
  font-size: 13px;
  color: #555;
}

.address-header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.add-address {
  color: #ff6f00;
  font-weight: bold;
  text-decoration: none;
}

.address-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.saved-addresses {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}
.address-card p {
    margin-bottom: 10px;
    font-size: 14px;
}
.address-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  width: calc(50% - 10px);
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  position: relative;
}

.address-card.selected {
  border: 2px solid #1ec773;
}
.edit-form-box .form-group label {
    color: #696B67;
}
.color-red {
    color: red;
}
.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rating span {
    font-size: 20px;
}
.select-btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 20px;
  background: #ccc;
  color: #333;
  cursor: pointer;
}

.selected-btn {
  background: #1ec773;
  color: #fff;
}
.rating i {
    color: #696B79;
}

/* ------------cart css------------------ */

.cart-steps {
  display: flex;
  justify-content: center;
}

.cart-steps .step {
    text-align: center;
    padding: 10px;
    flex: 1;
    color: #000;
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.cart-steps .step i:after {
    position: absolute;
    content: '';
    top: 35%;
    left: 50%;
    z-index: -1;
    /* right: 0; */
    bottom: 0;
    background: #ff6f00;
    width: 100%;
    height: 2px;
}
.cart-steps .step:last-child i::after {
  display: none;
}
.cart-steps .step i {
    width: 40px;
    height: 40px;
     margin: auto;
     margin-bottom: 6px;
    border-radius: 50%;
    color: #B0B0B0;
    background-color: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-steps .step h6 {
    margin-bottom: 0;
}

.cart-steps .step i.active {
  color: #ff6f00;
  border: 1px solid #ff6f00;
  background-color: #FFE0D0;
}

.cart-main {
  display: flex;
  gap: 20px;
}
.cart-items {
    background: #fff;
    padding: 20px 13px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.cart-item {
    /* display: flex; */
    background: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    /* align-items: flex-start; */
    border: 1px solid #DBDCDB;
    position: relative;
}
.cart-item .product-img {
    width: 100px;
    height: 100px !important;
}
.item-details .title {
  font-size: 14px;
  font-weight: bold;
}

.delete {
  background: none;
  border: none;
  font-size: 16px;
  color: #ff6f00;
  cursor: pointer;
  margin-left: 10px;
}

.continue {
  color: #ff6f00;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

/* .cart-summary {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
} */
.summary-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}
.pincode-check {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
   background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
}
.thm-btn-two {
    background: #FFE0D0;
    padding: 2px 15px;
    border-radius: 6px;
    color: #FF7A33;
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
}
.pincode-check input {
  padding: 0px;
  border: 0;
}

.coupon-btn span {
    color: #696B67;
}
.coupon-btn {
    background: #fff;
    padding: 10px;
    /* border: 1px solid #ddd; */
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #ff6f00;
  color: #fff;
  border: none;
  font-weight: bold;
  margin-bottom: 15px;
  cursor: pointer;
}
.summary-box p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.summary-box .discount {
    color: #00BF5B;
    margin: 0;
    font-weight: 500;
}
.summary-box .total {
  font-weight: bold;
}
.address-card.checkout-address.selected {
    background: #FFE0D0;
    border-color: #FF7A33;
}
.select-add.selected-check {
    color: #FF7A33;
}
 .offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%); /* start off-screen */
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 20px;
}

.offcanvas.show {
    transform: translateX(0); /* slide in */
}

.backdrop {
    position: fixed;
    inset: 0;
    background-color: #918c8c5c;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 998;
}

.backdrop.show {
    opacity: 1;
    visibility: visible;
}
.offcanvas-body .pincode-check {
    border: 1px solid #B0B0B0;
    margin: 20px;
    margin-top: 0;
}
.offer-headding p {
    background: #F0F0F0;
    padding: 9px 20px;
    margin-bottom: 0;
    color: #000;
}
.offer-item {
    margin: 20px;
    border: 1px solid #B0B0B0;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
}
.offer-item p {
    font-size: 14px;
}
.offer-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #B0B0B0;
    padding-top: 14px;
}
.coupon-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #918c8c5c;
  justify-content: center;
  align-items: center;
}
.coupon-modal-content {
    background: white;
    padding: 20px 30px;
    width: 450px;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
.text-left {
    text-align: left;
}
.product-sort {
    border: 1px solid #696B67;
    padding: 8px 20px;
    border-radius: 8px;
    color: #696B67;
}
img.veg-image {
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 15px;
    left: 15px;
}
.wish-icon {
    position: absolute;
    top: 5px;
    right: 13px;
    color: #888888;
    font-size: 24px;
}
.descount-text {
    line-height: 2.3;
}
.member-text {
    color: var(--thm-color-one);
    border: 1px solid;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    display: flex;
     align-items: center; 
    justify-content: center;
    gap: 10px;
}
.member-text i {
    border: 1px solid;
    padding: 4px;
    border-radius: 50%;
    font-size: 12px;
}
.shop-card {
    position: relative;
    border: 2px solid #E7E7E7;
    border-radius: 15px;
    margin-bottom: 20px;
    z-index: 0;
    transition: 0.5s all;
    overflow: hidden;
}
.shop-image img {
    width: 100%;
    height: 302px;
    object-fit: contain;
}
.shop-image {
    position: relative;
}
.shop-title {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 50px;
}
.shop-card:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    opacity: 0.7;
    transition: 0.5s all;
}
.shop-desc {
    background: #FF7A33;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: -100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 15px;
    opacity: 0;
    transition: 0.5s all;
}
.shop-card:hover .shop-desc {
    opacity: 1;
    left: 0;
    right: 0;
    
    width: 100%;
}
.shop-desc p {
     color: #000;
    margin-bottom: 0;
}

.shop-section .tabs {
    display: flex;
    gap: 10px;
  }
.shop-section .tab {
    padding: 5px 18px;
    border: 1px solid var(--thm-color-one);
    border-radius: 8px;
    background: transparent;
    color: var(--thm-color-one);
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
  .shop-section .tab.active {
    background: var(--thm-color-one);
    color: #fff !important;
  }
.shop-section .tab-content {
    display: none;
    margin: 0;
    margin-top: 15px;
    padding: 0;
}
  .shop-section .tab-content.active {
    display: block;
  }
   .feature-box {
    background: #FFE7DA;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
  }
  .feature-box i {
    font-size: 45px;
    color: #ff7b32;
    margin-bottom: 15px;
  }
  .feature-box h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
  }
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
.order-item img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 4px;
    background: #fff;
}
.item-price {
    font-weight: bold;
    font-size: 16px;
}
.old-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #888;
    margin-left: 5px;
}
.discount {
    color: #ff6600;
    font-weight: bold;
    margin-left: 5px;
}
.delivery-date {
    color: #ff6600;
    font-size: 14px;
    margin-top: 5px;
}
.rate i {
    color: #ccc;
    cursor: pointer;
}
.free {
    color: green;
}
.discount-price {
    color: green;
}
.upi-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E5E8EC;
    padding: 5px 15px;
    border-radius: 8px;
}
.upi-item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #000;
}
.upi-list {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.upi-item {
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}
.upi-item:hover {
    border-color: #ccc;
}
.upi-item.active {
    border-color: var(--thm-color-one);
    background: var(--thm-color-one);
}
#placeorder .popup-content {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
    background-image: url(../images/order-check.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.check-order {
    font-size: 100px;
    color: var(--thm-color-one);
}
.order-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 0;
}

.order-track .step {
    text-align: center;
    position: relative;
    flex: 1;
}

.order-track .step p {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 10px;
    color: #000;
}
/*.order-track .step:before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background: #000;*/
/*}*/
.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ccc;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: bold;
}

.completed .step-icon {
    background: green;
}

.current .step-icon {
    background: orange;
}

/* Connector lines */
.order-track .step:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 96px;
    width: 100%;
    height: 2px;
    background: #ccc;
    z-index: -1;
}
.completed:before {
    background: green;
}

.order-track .step:first-child:after {
    content: none;
}


.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.activity-item:first-child {
    border-left: none;
}

.activity-item .icon {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.activity-item .icon.green {
    background: #EAF7E9;
    color: green;
    border: 1px solid #D5F0D3;
}
.activity-item .icon.orange {
    background: #FF7A3380;
    color: #000;
    border: 1px solid #FF7A3399;
}

.activity-item .icon.home {
    background: #B0B0B080;
    border: 1px solid #B0B0B099;
    color: #000;
}

.activity-item .details p {
    margin: 0;
    color: #222222;
    font-size: 15px;
}

.activity-item .details span {
    display: block;
    font-size: 13px;
    color: gray;
    margin-top: 3px;
}

.activity-item .activity-item.active {
    background: #ffe9dc;
    border-radius: 5px;
}
.order-details.wishlist-card {
    display: flex;
    align-items: center;
    gap: 30px;
}
.delete-btn {
    background: #4B5966;
    color: #fff;
    font-size: 24px;
    padding: 4px 15px;
    line-height: 1.5;
    border-radius: 5px;
    transition: 0.5s all;
}
.delete-btn:hover {
    background: red;
}

.faq-item {
    /* background: #fff; */
    border: 2px solid #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

  .faq-question {
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #000;
    font-size: 14px;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 62px;
}

    .faq-question::after {
      content: '+'; 
      position: absolute;
      right: 20px;
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      content: '-';
    }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    color: #696B67;
    line-height: 1.5;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14px;
}

    .faq-item.active .faq-answer {
      max-height: 500px; /* enough to expand text */
      padding: 15px;
    }
  .faq-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.contact-box {
    box-shadow: 0px 0px 7px 0px #00000026;
    padding: 50px 20px;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image img {
    border-radius: 10px;
}
.about-content {
    padding-right: 35px;
}
.tab-pane.fade {
  display: none;
  opacity: 0;
  transition: opacity .15s linear;
}
.tab-pane.fade.show {
  display: block;
  opacity: 1;
}
.category-card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
}
.feature-image {
    margin-bottom: 15px;
}
.feature-image img {
    width: 52px;
}
.share-box {
    position: absolute;
    top: 99px;
    right: 0px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 5px 15px;
    display: none;
    /* z-index: 100; */
    /* display: flex !important; */
    align-items: center;
    gap: 11px;
}
.share-box .item span {
    font-size: 14px;
}

span.cart-number {
    position: absolute;
    top: 2px;
    right: 1px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    transition: 0.5s all;
    background: #000;
    width: 17px;
    border-radius: 50%;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coupon-main {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
  .method {
      display: flex;
      align-items: center;
      background: #f9f9f9;
      border: 2px solid transparent;
      border-radius: 8px;
      padding: 12px;
      margin: 10px 0;
      cursor: pointer;
      transition: 0.3s;
    }

    .method:hover {
      border-color: #4CAF50;
      background: #eefaf0;
    }

    .method input {
      margin-right: 12px;
    }

    .method label {
      font-size: 16px;
      color: #444;
      cursor: pointer;
    }
      /* Hidden sections */
    .hidden {
      display: none;
    }



