:root {
    --primary-color: #222222;
    --primary-hover-color: #ba0634;
    --secondary-color: #ffffff;
    --secondary-light-color: #888888;
    --background-color: #f7f7f7;
    --border-color: #dddddd;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Alexandria", sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 20px;
    overflow-x: hidden;
}
/*------------------------- top Header ------------------------------------ */
#top {
    background: var(--primary-color);
    height: 50px;
}
#top .container {
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*---- top left---- */
.top-left {
    padding: 15px 0;
}
.contacts a,
.contact-time span {
    color: var(--secondary-color);
}
.top-left .fa {
    color: var(--primary-hover-color);
    padding-right: 5px;
}
.contact-time,
.currency {
    padding-right: 16px;
}

/*---- top right---- */
.top-right {
    display: flex;
}
.top-right .btn.dropdown-toggle {
    color: var(--secondary-color);
    text-transform: capitalize;
    font-size: 14px;
    border: none;
    padding: 15px 0;
}
.top-right .btn.dropdown-toggle:hover {
    color: var(--primary-hover-color);
}
.top-right .code {
    text-transform: uppercase;
}
.top-right ul.dropdown-menu,
#header_ac .dropdown-menu {
    padding: 7px 0;
    right: 0;
    left: auto;
}
.top-right ul.dropdown-menu button,
.account-link-toggle li a {
    text-align: left;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
}
.dropdown-menu {
    background: var(--secondary-color);
    z-index: 1001;
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--primary-hover-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    background-color: transparent;
    color: var(--primary-hover-color);
}
.btn-link {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--primary-color);
    border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    box-shadow: none;
}
.btn-link:focus,
.btn-link:hover {
    color: var(--primary-hover-color);
    text-decoration: none;
    outline: none;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    box-shadow: (0 6px 12px rgba(0, 0, 0, 0.175));
}
.lang-btn {
    text-align: left;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--primary-color);
    border-radius: 0;
    margin: 0 20px;
}
.lang-btn:focus,
.lang-btn:focus {
    color: var(--primary-hover-color);
    text-decoration: none;
    outline: none;
}
.lang {
    font-size: 0.875rem;
    font-family: var(--bs-body-font-family);
    letter-spacing: 0.0875rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    text-align: left;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
}
/*------------------------- Header Navbar ------------------------------------ */

#header .offcanvas-body li {
    padding: 28px 9px;
}
#header .offcanvas-body li a {
    padding: 28px 9px;
    color: var(--primary-color);
    padding: 5px 0;
    font-size: 13px;
    border-radius: 0;
    font-weight: bold;
    background: transparent;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
    .top-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #header .offcanvas-body li {
        padding: 9px 9px;
    }
}
@media (max-width: 500px) {
    #header .main-nav img {
        width: 120px;
    }
    #header .nav-icon {
        width: 30px;
        height: 30px;
    }
}

/* Banner Hero Swiper */
/*------------------------------------------------------------- */
.homepage {
    --heading-font: "Marcellus", Roboto, sans-serif;
    --heading-font-weight: 400;
    --heading-color: #111;
    --heading-line-height: 1.24;

    --swiper-theme-color: #8c907e;

    /* bootstrap */
    --bs-body-font-family: "Jost", Roboto, sans-serif;
    --bs-body-font-size: 18px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #8f8f8f;
    --bs-body-color-rgb: 143, 143, 143;

    --bs-primary: #8c907e;
    --bs-secondary: #6c757d;
    --bs-black: #111;
    --bs-light: #f1f1f0;
    --bs-dark: #212529;
    --bs-gray: #9aa1a7;
    --bs-gray-dark: #51565b;

    --bs-primary-rgb: 140, 144, 126;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-black-rgb: 17, 17, 17;
    --bs-light-rgb: 241, 241, 240;
    --bs-dark-rgb: 33, 37, 41;

    --bs-link-color: #111;
    --bs-link-color-rgb: 17, 17, 17;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #111;
    --bs-link-hover-color-rgb: 17, 17, 17;
}

body {
    letter-spacing: 0.03rem;
}

#billboard h1,
#billboard h5 {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    color: var(--heading-color);
    line-height: var(--heading-line-height);
}
#billboard p {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);

    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

#billboard .section-title h1 {
    margin: 25px 0;
}

#billboard h5 {
    letter-spacing: 1px;
}

#billboard h1 {
    font-size: 4.5rem;
}

#billboard h5 {
    font-size: 1.4rem;
}

a {
    text-decoration: none;
}
#billboard .btn-left {
    margin-top: 25px;
}

/* Main swiper arrows */
.main-swiper-container {
    position: relative;
}

.main-icon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.main-icon-arrow-left {
    left: -60px;
}

.main-icon-arrow-right {
    right: -60px;
}

/* Top categories swiper arrows */
.top-cat-swiper-container {
    position: relative;
}

.top-cat-icon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.top-cat-icon-arrow-left {
    left: -60px;
}

.top-cat-icon-arrow-right {
    right: -60px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-icon-arrow-left,
    .top-cat-icon-arrow-left {
        left: -40px;
    }

    .main-icon-arrow-right,
    .top-cat-icon-arrow-right {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .main-icon-arrow-left,
    .top-cat-icon-arrow-left {
        left: -20px;
    }

    .main-icon-arrow-right,
    .top-cat-icon-arrow-right {
        right: -20px;
    }
}
@media (max-width: 500px) {
    #billboard h1 {
        font-size: 1.5rem;
    }
}

/** Swiper Slide Arrows 2
--------------------------------------------------------------*/
.icon-arrow.no-outline {
    top: 40%;
    font-size: 1.7em;
    color: var(--grey-color);
    border: none;
}

.icon-arrow.no-outline:hover {
    background: none;
    color: var(--dark-color);
}

.icon-arrow.light-arrow.no-outline {
    color: var(--light-color);
    opacity: 0.7;
}

.icon-arrow.light-arrow.no-outline:hover {
    opacity: 1;
}

.swiper-button-normal {
    background: transparent;
}

.swiper-button-normal .icon {
    font-size: 1.6em;
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/** Swiper Slide Arrows with background 3
--------------------------------------------------------------*/
.icon-arrow {
    border: 1px solid rgb(143, 143, 143);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0.5;
}
.icon-arrow:hover {
    border: 1px solid rgb(143, 143, 143);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 1;
}

/*--- Image hover Effects
-----------------------------------------------*/
.image-zoom-effect {
    display: flex;
    flex-wrap: wrap;
}

.image-zoom-effect .image-holder {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
    transform: scale(0.95);
}

.image-zoom-effect img {
    transform: scale(1);
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.image-zoom-effect:hover img {
    transform: scale(1.1);
}

/*----------------------------------------------*/
/* service */
/*----------------------------------------------*/
.service-box {
    background: var(--background-color);
    padding: 33px 0 32px 0;
}
.service {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.service-item {
    padding-right: 10px;
}
.service-item + .service-item {
    border-left: 1px dashed var(--border-color);
}
.service-icon {
    font-size: 40px;
    height: 55px;
    width: 55px;
    margin-right: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.service:hover .service-icon {
    font-size: 50px;
    color: var(--primary-hover-color);
}
.service .promo-title {
    margin: -1px 0 7px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
}
.service .promo-desc {
    color: var(--secondary-light-color);
}
@media (max-width: 1199px) {
    .promo-item > div > div:nth-child(3) {
        border-left: none;
    }
    .promo-item > div > div:nth-child(1),
    .promo-item > div > div:nth-child(2) {
        margin-bottom: 10px;
    }
}
@media (max-width: 991px) {
    .service-box {
        padding: 20px 0;
    }
    .service .service-icon,
    .service:hover .service-icon {
        font-size: 35px;
        height: 40px;
        width: 40px;
    }
    .service-box .row {
        margin: 0 -5px;
    }
    .service-item {
        padding: 0 5px;
    }
    .service .promo-title {
        margin: 0;
    }
}
@media only screen and (max-width: 600px) {
    .service .promo-title {
        font-size: 14px;
    }
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 34px;
    }
}
@media only screen and (max-width: 540px) {
    .service {
        display: block;
        text-align: center;
    }
    .service .service-icon,
    .service:hover .service-icon {
        margin: auto auto 10px;
    }
    .service .promo-desc,
    .service .promo-title {
        font-size: 10px;
    }
}

/*--------------------------------------------------------------------------------*/
/* Top Category */
/*--------------------------------------------------------------------------------*/

#topCategory {
    background: url("../images/categories-bg.jpg");
    height: 67vh;
    margin-bottom: 130px;
}
#topCategory .section-title {
    color: white;
    padding-top: 80px;
    padding-bottom: 20px;
}
#topCategory .banner-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
#topCategory .banner-content h2 {
    color: white;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}
#topCategory .banner-item {
    width: 90%;
}
#topCategory .swiper-slide {
    display: flex;
    align-items: start;
    justify-content: center;
    /* height: 60vh; */
}
#topCategory .swiper-slide .image-holder {
    height: 100%;
}
#topCategory .banner-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}
#topCategory .banner-content a {
    color: var(--secondary-color);
    font-size: 24px;
    text-transform: capitalize;
    background: rgba(37, 37, 37, 0.9);
    padding: 15px 0;
    display: block;
}
.top-cat-icon-arrow svg {
    fill: #ffffff; /* White color */
}
@media only screen and (max-width: 1400px) and (min-width: 1200px) {
    #topCategory {
        height: 60vh;
    }
}
@media only screen and (max-width: 1200px) and (min-width: 992px) {
    #topCategory .banner-item {
        width: 80%;
        height: 80%;
    }
}
@media only screen and (max-width: 992px) and (min-width: 767px) {
    #topCategory {
        height: 58vh;
    }
}
@media only screen and (max-width: 767px) and (min-width: 500px) {
    #topCategory .banner-item {
        width: 62%;
    }
    #topCategory {
        height: 60vh;
    }
}
@media only screen and (max-width: 500px) {
    #topCategory .banner-item {
        width: 280px;
    }
    #topCategory {
        height: 500px;
    }
}

/* - Banners Section
------------------------------------------------------------- */

.threeBanners {
    margin-top: 50px;
}

.banners-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.banner {
    flex: 1;
    min-width: 300px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(134, 134, 134, 0.1);
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner:hover .banner-image {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)); */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.banner h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.banner p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: bold;
    font-size: 17px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.shop-btn {
    color: white;
    background: #ba0634;
    font-size: 18px;
    border-radius: 50px;
    padding: 13px 41px;
    border: 2px solid #ba0634;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: fit-content;
    text-decoration: none;
}

.banner:hover .shop-btn {
    background: transparent;
    color: #ba0634;
    border-color: #ba0634;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(186, 6, 52, 0.3);
}

@media (max-width: 900px) {
    .banners-cont {
        flex-direction: column;
        align-items: center;
    }

    .banner {
        width: 100%;
        max-width: 700px;
    }
}

/* - Product Swiper 2 Rows
------------------------------------------------------------- */
/* Filter Buttons */
.product-tab-block {
    padding: 80px 0 50px 0;
}
.box.all-products {
    padding: 80px 0 50px 0;
}
#product-swiper-section {
    margin-top: 80px;
}
#product-swiper-section .section-title {
    font-size: 19px;
    margin: 0 0 36px 0;
    text-transform: capitalize;
    line-height: 36px;
    text-align: center;
    position: relative;
    font-weight: bold;
}
#product-swiper-section .swiper-slide {
    margin-bottom: 25px;
}
.product-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 10px;
}

.btn-filter {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    line-height: 20px;
    color: var(--primary-color);
    text-transform: capitalize;
    padding: 13px 31px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin: 0px;
}

.btn-filter.active,
.btn-filter:hover {
    background: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    margin: 10px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border: 2px solid var(--primary-hover-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-main-image,
.product-hover-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-hover-image {
    position: absolute;
    top: 24%;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-main-image {
    opacity: 0;
}

.product-card:hover .product-hover-image {
    opacity: 1;
}

.product-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-hover-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

/* Icons container */
.product-action-icons {
    position: absolute;
    bottom: -70px; /* Increased starting position for more dramatic movement */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    background: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    width: 160px;
    /* Modern box shadow */
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 25px 25px 25px 25px;
    margin: auto;
}

.product-card:hover .product-action-icons {
    bottom: 70px; /* Moves higher up on hover */
    opacity: 1;
}

.action-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1.05);
    /* Enhanced icon shadow */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); */
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

.action-icon:hover {
    background: var(--primary-hover-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.35);
}

.product-info {
    padding: 15px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    text-align: center;
}

.product-code {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating .star {
    font-size: 20px;
    position: relative;
}

.product-rating .star.active {
    color: #ffc107; /* Active star color (yellow) */
}

.product-price {
    margin-top: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #ddd;
    font-size: 16px;
    font-weight: 600;
    margin-right: 8px;
}

.discounted-price,
.regular-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Swiper Container */
.product-swiper-container {
    position: relative;
    padding: 0 50px;
}

.product-swiper {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-swiper.active {
    display: block;
    opacity: 1;
    height: 100vh;
}

.product-swiper-button-prev,
.product-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    padding: 8px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.product-swiper-button-prev:hover,
.product-swiper-button-next:hover {
    background: var(--primary-hover-color);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.product-swiper-button-prev:hover svg,
.product-swiper-button-next:hover svg {
    fill: white;
}

.product-swiper-button-prev {
    left: -15px;
}

.product-swiper-button-next {
    right: -15px;
}

/* Two rows layout */
.product-swiper .swiper-wrapper {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    height: 100vh; /* Adjust based on your card height */
}

.product-swiper .swiper-slide {
    height: auto;
}
.product-swiper-button-prev.swiper-button-disabled,
.product-swiper-button-next.swiper-button-disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
    cursor: not-allowed;
}

/* Ensure pointer events are properly handled */
.product-swiper-button-prev,
.product-swiper-button-next {
    pointer-events: auto;
}
/* Responsive adjustments */
@media (min-width: 1200px) {
    .product-swiper-button-prev {
        left: -10px;
    }

    .product-swiper-button-next {
        right: -10px;
    }
}
@media (max-width: 1200px) {
    .product-swiper-button-prev {
        left: 0;
    }

    .product-swiper-button-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .product-swiper-button-prev {
        left: -10px;
    }
    .product-swiper-button-next {
        right: -10px;
    }
    .product-swiper-container {
        position: relative;
        padding: 0px 20px;
    }
}
@media (max-width: 500px) {
    .product-swiper.active {
        height: 118vh;
    }
}
@media (max-height: 600px) {
    .product-image-container {
        height: 120px !important;
    }
    .product-card {
        padding: 3px;
    }
}
@media (max-height: 800px) {
    .product-image-container {
        height: 150px;
    }
}

/* - Top Brands
------------------------------------------------------------- */
#BestSellerBrands {
    margin-top: 20px;
    margin-bottom: 40px;
}
#BestSellerBrands .section-title {
    font-size: 19px;
    margin: 0 0 36px 0;
    text-transform: capitalize;
    line-height: 36px;
    text-align: center;
    position: relative;
    font-weight: bold;
}

/* - Product Swiper single Row
------------------------------------------------------------- */
#single-row-swiper-section {
    margin-bottom: 70px;
}
.single-row-swiper {
    height: 50vh;
}
.single-row-swiper .swiper-wrapper {
    height: 50vh;
}
.single-row-swiper .swiper-wrapper .swiper-slide {
    height: 48vh;
}
#single-row-swiper-section .section-title {
    font-size: 19px;
    margin: 0 0 36px 0;
    text-transform: capitalize;
    line-height: 36px;
    text-align: center;
    position: relative;
    font-weight: bold;
}
.single-row-swiper-button-prev,
.single-row-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    padding: 8px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.single-row-swiper-button-prev:hover,
.single-row-swiper-button-next:hover {
    background: var(--primary-hover-color);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    color: white;
}

.single-row-swiper-button-prev:hover svg,
.single-row-swiper-button-next:hover svg {
    fill: white;
}

.single-row-swiper-button-prev {
    left: 10px;
}

.single-row-swiper-button-next {
    right: 10px;
}
@media screen and (max-width: 500px) {
    .single-row-swiper-button-prev {
        left: 0;
    }

    .single-row-swiper-button-next {
        right: 0;
    }
}
/* - Up footer Banners
------------------------------------------------------------- */
#up-footer {
    margin-bottom: 40px;
}
.up-footer-container {
    display: flex;
    gap: 30px;
}
.up-footer-banner .inner1 {
    width: 100%;
    overflow: hidden; /* Essential for containing the zoom effect */
    position: relative;
    border-radius: 12px; /* Modern rounded corners */
}
.up-footer-banner img {
    width: 100%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth easing */
    transform-origin: center center;
    display: block;
}

/* Hover effect with smooth zoom */
.up-footer-banner:hover img {
    transform: scale(1.08); /* Slight zoom effect */
}

/* Optional: Add a subtle overlay on hover for extra elegance */
.up-footer-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 12px;
    pointer-events: none; /* Allows clicking through the overlay */
}

.up-footer-banner:hover::before {
    opacity: 1;
}

/* Optional: Add a subtle shadow for depth */
.up-footer-banner {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border-radius: 12px;
}

.up-footer-banner:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 500px) {
    .up-footer-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
}

/* - Border Hover Effects 2
------------------------------------------------------------- */
.border-animation-left .item-anchor {
    position: relative;
    margin-bottom: 20px;
}

.border-animation-left .item-anchor:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    z-index: 9;
    background: var(--bs-dark);
    transition: all 0.5s ease;
}

.border-animation-left.light-border .item-anchor:after,
.border-animation-left .item-anchor:after {
    background: var(--bs-dark);
}

.border-animation-left .item-anchor:hover:after,
.border-animation-left .item-anchor:focus:after {
    width: 100%;
}

/* button */
.btn-link {
    font-size: 0.875rem;
    font-family: var(--bs-body-font-family);
    letter-spacing: 0.0875rem;
    text-transform: uppercase;
    text-decoration: none;
}

a.btn-link,
a.btn-link:after {
    transition: all 0.5s;
}

a.btn-link {
    position: relative;
}

a.btn-link:before,
a.btn-link:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--bs-dark);
    height: 1px;
}

[data-bs-theme="dark"] a.btn-link:after {
    background-color: var(--bs-white);
}

a.btn-link:before {
    background-color: var(--bs-gray);
    width: 100%;
}

a.btn-link.is-checked:after,
a.btn-link:hover:after {
    width: 100%;
}

a.btn-link.text-white:after {
    background-color: var(--bs-white);
}

a.btn-link.text-light:after {
    background-color: var(--bs-light);
}
@media (max-width: 1440px) {
    .box.all-products,
    .product-tab-block {
        padding: 50px 0 20px;
    }
}
@media (max-width: 991px) {
    .product-tab-block,
    .box.all-products {
        padding: 30px 0 10px;
    }
}
@media (min-width: 1200px) {
    .product-tab-block,
    .box.all-products {
        width: 1200px;
        margin: auto;
    }
}
@media (min-width: 1400px) {
    .product-tab-block,
    .box.all-products {
        width: 1400px;
        margin: auto;
    }
}
