
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/

/*** Order Tracking Start ***/
.tracking-timeline {
    position: relative;
}

.tracking-timeline::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    width: 2px;
    background: rgba(129, 196, 8, .25);
}

.tracking-step {
    position: relative;
    display: flex;
    gap: 20px;
    min-height: 106px;
    color: var(--bs-dark);
}

.tracking-step:last-child {
    min-height: auto;
}

.tracking-icon {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(129, 196, 8, .3);
    border-radius: 50%;
    background: var(--bs-white);
    color: var(--bs-gray);
}

.tracking-step.completed .tracking-icon,
.tracking-step.active .tracking-icon {
    border-color: var(--bs-secondary);
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.tracking-step.active h5 {
    color: var(--bs-primary);
}

@media (max-width: 575px) {
    .tracking-step {
        gap: 14px;
    }

    .tracking-timeline::before {
        left: 20px;
    }

    .tracking-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }
}
/*** Order Tracking End ***/

/*** Account Dashboard Start ***/
.account-avatar {
    display: flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.account-email {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.account-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    padding: 13px 15px;
    border-radius: 8px;
    color: var(--bs-dark);
    font-weight: 600;
}

.account-tabs .nav-link i {
    width: 20px;
    color: var(--bs-secondary);
    text-align: center;
}

.account-tabs .nav-link:hover,
.account-tabs .nav-link.active {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.account-tabs .nav-link:hover i,
.account-tabs .nav-link.active i {
    color: var(--bs-secondary);
}

.account-tab-count {
    margin-left: auto;
    min-width: 24px;
    padding: 2px 7px;
    border-radius: 20px;
    background: var(--bs-secondary);
    color: var(--bs-dark);
    font-size: 12px;
    text-align: center;
}

.account-stat {
    display: flex;
    min-height: 142px;
    flex-direction: column;
    justify-content: space-between;
}

.account-stat i {
    color: var(--bs-secondary);
    font-size: 22px;
}

.account-stat span {
    color: var(--bs-gray);
}

.account-stat strong {
    color: var(--bs-primary);
    font-family: Raleway, sans-serif;
    font-size: 30px;
}

.account-order-row,
.account-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.account-order-row:last-child,
.account-setting-row:last-child {
    border-bottom: 0;
}

.account-inline-tab {
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 600;
}

.account-orders-table th {
    color: var(--bs-gray);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.account-orders-table {
    min-width: 760px;
}

.account-orders-table td,
.account-orders-table th {
    padding: 16px 10px;
    white-space: nowrap;
}

.wishlist-item img {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    object-fit: cover;
    border-radius: 50%;
}

.address-card {
    border: 1px solid rgba(0, 0, 0, .06);
}

.account-setting-row .form-check-input {
    width: 2.5em;
    height: 1.3em;
}

@media (max-width: 991px) {
    .account-sidebar {
        margin-bottom: 12px;
    }
}

@media (max-width: 575px) {
    .account-order-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .account-setting-row {
        align-items: flex-start;
    }
}
/*** Account Dashboard End ***/

/*** About Page Start ***/
.about-story-image {
    min-height: 390px;
    object-fit: cover;
}

.about-value {
    border: 1px solid rgba(0, 0, 0, .05);
}

@media (max-width: 575px) {
    .about-story-image {
        min-height: 280px;
    }
}
/*** About Page End ***/

/*** FAQ Page Start ***/
.faq-page > .container > .row {
    margin-right: 0;
    margin-left: 0;
    padding: 32px;
    border-radius: 8px;
    background: var(--bs-light);
}

.faq-page > .container > .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.faq-page .faq-group {
    display: contents;
    margin-bottom: 32px !important;
    padding: 0 !important;
    background: transparent !important;
}

.faq-page .faq-group:last-child {
    margin-bottom: 0 !important;
}

.faq-page .faq-group .accordion {
    margin-bottom: 0;
}

.faq-page .faq-group .accordion + .accordion {
    margin-top: 0;
}

.faq-group .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: transparent;
}

.faq-group .accordion-item:last-child {
    border-bottom: 0;
}

.faq-group .accordion-button {
    padding: 18px 0;
    background: transparent;
    color: var(--bs-dark);
    font-weight: 600;
    box-shadow: none;
}

.faq-group .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
}

.faq-group .accordion-button::after {
    background-size: 14px;
}

.faq-group .accordion-body {
    padding: 0 0 18px;
    color: var(--bs-gray);
    line-height: 1.7;
}

@media (max-width: 575px) {
    .faq-page > .container > .row {
        padding: 20px;
    }
}
/*** FAQ Page End ***/

/*** Privacy Policy Page Start ***/
.privacy-intro {
    max-width: 820px;
}

.privacy-meta {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid rgba(129, 196, 8, .2);
    border-radius: 6px;
    background: rgba(255, 181, 36, .12);
    color: var(--bs-gray);
    font-size: 14px;
}

.privacy-contents {
    position: sticky;
    top: 115px;
    border-left: 3px solid var(--bs-secondary);
}

.privacy-contents a {
    display: block;
    padding: 7px 0;
    color: var(--bs-gray);
    font-size: 14px;
    line-height: 1.45;
}

.privacy-contents a:hover {
    color: var(--bs-primary);
}

.privacy-document {
    max-width: 820px;
}

.privacy-document section {
    position: relative;
    padding: 0 0 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    scroll-margin-top: 120px;
}

.privacy-document section:last-child {
    border-bottom: 0;
}

.privacy-document h3 {
    margin-bottom: 14px;
    color: var(--bs-primary);
    font-size: 25px;
}

.privacy-document p,
.privacy-document li {
    color: var(--bs-gray);
    line-height: 1.8;
}

.privacy-document ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.privacy-document li + li {
    margin-top: 8px;
}

.privacy-number {
    display: block;
    margin-bottom: 8px;
    color: var(--bs-secondary);
    font-family: Raleway, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.privacy-contact {
    padding: 28px;
    border: 1px solid rgba(129, 196, 8, .2) !important;
    background: var(--bs-light);
}

.privacy-contact h3 {
    font-size: 23px;
}

@media (max-width: 991px) {
    .privacy-contents {
        position: static;
    }
}

@media (max-width: 575px) {
    .privacy-contact {
        padding: 20px;
    }

    .privacy-contact .d-flex {
        align-items: flex-start !important;
    }
}
/*** Privacy Policy Page End ***/

/*** Simple Privacy Content ***/
.privacy-content {
    color: var(--bs-gray);
    line-height: 1.8;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--bs-primary);
}

.privacy-content p,
.privacy-content ul,
.privacy-content ol {
    margin-bottom: 16px;
}

.privacy-content li + li {
    margin-top: 8px;
}

.privacy-content a {
    color: var(--bs-primary);
}
/*** Simple Privacy Content End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/cart-page-header-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }
}
/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);
    
}
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px; 
    height: 130px; 
    top: -50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important; 
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}

.wishlist-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--bs-secondary);
    border-radius: 50%;
    background: var(--bs-white);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.wishlist-button:hover,
.wishlist-button.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.wishlist-button.active i::before {
    content: "\f004";
}

.vesitable .wishlist-button {
    left: 10px;
    right: auto;
}
/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/

/*** Auth Pages Start ***/
.auth-page {
    background: rgba(248, 223, 173, 0.1);
}

.auth-card {
    max-width: 640px;
    border: 1px solid rgba(129, 196, 8, 0.15);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.auth-icon {
    display: block;
    font-size: 54px;
    margin-bottom: 18px;
}

.auth-card .form-label {
    font-weight: 600;
}

.auth-card .form-control,
.auth-card .input-group .btn {
    border-color: rgba(129, 196, 8, 0.25);
}

.auth-card .form-control:focus {
    border-color: var(--bs-secondary);
    box-shadow: 0 0 0 0.25rem rgba(255, 181, 36, 0.15);
}

@media (max-width: 575px) {
    .auth-page {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .auth-card {
        padding: 1.5rem !important;
    }
}
/*** Auth Pages End ***/

/*** Offers Page Start ***/
.offers-intro {
    background: rgba(248, 223, 173, 0.1);
}

.offers-hero-image {
    overflow: hidden;
    border-radius: 10px;
}

.offers-hero-image img {
    min-height: 280px;
    object-fit: cover;
}

.offers-hero-badge {
    position: absolute;
    width: 150px;
    height: 150px;
    right: 8%;
    bottom: 8%;
    border: 8px solid rgba(255, 255, 255, 0.75);
}

.offer-tile {
    transition: 0.5s;
}

.offer-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 575px) {
    .offers-hero-badge {
        width: 120px;
        height: 120px;
        border-width: 5px;
    }

    .offers-hero-badge .display-5 {
        font-size: 2rem;
    }
}
/*** Offers Page End ***/


/*** Footer Start ***/
.bazaar-section {
    overflow: hidden;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--bs-dark);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: .3s ease;
}

.category-card:hover {
    color: var(--bs-primary);
    transform: translateY(-6px);
}

.category-card img {
    width: 100%;
    aspect-ratio: 1;
    border: 6px solid var(--bs-light);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.shop-card,
.product-card,
.why-card {
    transition: .3s ease;
}

.shop-card:hover,
.product-card:hover,
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

/* Use the home product card language throughout every product list. */
.fruite-item,
.vesitable-item {
    overflow: hidden;
    border: 0 !important;
    background: var(--bs-light);
    box-shadow: 0 0 0 1px rgba(129, 196, 8, .08);
}

.fruite .fruite-item:hover,
.vesitable .vesitable-item:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    transform: translateY(-5px);
}

.fruite-item .fruite-img,
.vesitable-item .vesitable-img {
    border-radius: 0;
}

.fruite-item .fruite-img img,
.vesitable-item .vesitable-img img {
    aspect-ratio: 1.15;
    object-fit: cover;
}

.fruite-item > div:last-child,
.vesitable-item > div:last-child {
    border: 0 !important;
    padding: 1.5rem !important;
}

.fruite-item > div:last-child p,
.vesitable-item > div:last-child p {
    color: var(--bs-gray-600);
    font-size: .9rem;
}

.fruite-item > div:last-child > div,
.vesitable-item > div:last-child > div {
    align-items: center;
}

.fruite-item > div:last-child .btn,
.vesitable-item > div:last-child .btn {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.fruite-item > div:last-child .btn i,
.vesitable-item > div:last-child .btn i {
    margin: 0 !important;
    font-size: 1rem;
}

.fruite-item .wishlist-button,
.vesitable-item .wishlist-button {
    top: 14px;
    right: 14px;
}

.shop-avatar {
    width: 68px;
    height: 68px;
    object-fit: cover;
}

.product-card {
    overflow: hidden;
}

.product-card > .position-relative > img {
    aspect-ratio: 1.15;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    font-size: .8rem;
    font-weight: 600;
}

.offer-card {
    min-height: 290px;
    color: var(--bs-white);
    background: var(--bs-dark);
}

.offer-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    opacity: .78;
    transition: .4s ease;
}

.offer-card:hover img {
    transform: scale(1.05);
    opacity: .6;
}

.offer-card-content {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .78));
}

.offer-card-content strong {
    color: var(--bs-secondary);
    font-size: 1.65rem;
}

.process-step {
    position: relative;
    height: 100%;
    padding: 28px 24px;
    border: 1px solid rgba(129, 196, 8, .2);
    border-radius: 10px;
    background: var(--bs-light);
}

.process-step > i,
.why-card > i {
    display: block;
    margin: 10px 0 18px;
    color: var(--bs-primary);
    font-size: 2.4rem;
}

.process-number {
    color: var(--bs-secondary);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.seller-section {
    background: rgba(248, 223, 173, .18);
}

.seller-image {
    width: 100%;
    max-height: 330px;
    object-fit: cover;
}

.why-card {
    height: 100%;
    border: 1px solid rgba(129, 196, 8, .14);
    border-radius: 10px;
    background: var(--bs-white);
}

@media (max-width: 575px) {
    .bazaar-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .bazaar-section .display-6 {
        font-size: 2rem;
    }

    .bazaar-section .d-flex.justify-content-between {
        gap: 18px;
    }

    .category-card {
        font-size: .9rem;
    }
}

.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/

