.slider .swiper-container {
    width: 100%;
    height: 100%;
}
.slider__images {
    height: var(--carousel-height);
}
.slider__images .slider__image img {
    transition: 3s;
}
.slider__images .slider__image:hover img {
    transform: scale(1.1);
}
.slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slider__image:after {
    content: "";
    background-color: #00000063;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
}
.slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.swiper-container-vertical>.swiper-pagination-bullets {
    right: auto;
    left: 20px;
}
.swiper-pagination-bullet {
    background: #fff;
    opacity: .5;
    width: 12px;
    height: 12px;
    transition: linear .5s all;
}
.swiper-pagination-bullet-active{
    opacity: 1;
    width: 28px;
    border-radius: 28px;
}
.slider_content {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    padding: 40px;
    z-index: 1;
}
.slider-content-details {
    max-width: 55%;
    margin: auto;
    text-align: center;
}
.slider_content h2 {
    font-size: 68px;
    font-weight: 900;
    color: #fff;
    text-transform: capitalize;
}
.slider_content .btn {
    transition: linear .5s all;
    max-width: max-content;
    min-width: 190px;
    font-weight: 600;
    font-size: 20px;
        letter-spacing: 0.8px;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-400px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.slider_content h2:nth-child(1).fade-in {
    animation: fadeInLeft 0.8s ease-out both;
}
.slider_content h2:nth-child(2).fade-in {
    animation: fadeInLeft 1s ease-out both;
}
.slider_content p.fade-in {
    animation: fadeInLeft 1.2s ease-out both;
}
.slider_content .slider_buttons.fade-in {
    animation: fadeInLeft 1.4s ease-out both;
}
.custom-swiper-navigation {
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    bottom: 25px;
    z-index: 20;
}
.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    transition: transform 0.4s ease-in-out;
}
.swiper-button-prev-custom:before, .swiper-button-next-custom:before {
    content: "";
    border: 1px solid #ffffffbd;
    border-radius: 12px;
    position: absolute;
    width: 45px;
    height: 45px;
    transform: translateX(-10px);
    transition: width 0.4s ease-in-out; /* Transition on width */
}
.swiper-button-next-custom:before {
    right: 0;
}
.swiper-button-prev-custom:hover:before, .swiper-button-next-custom:hover:before {
    width: calc(100% - 25px);
}
.arrow-line {
    width: 48px;
    transition: transform 0.4s ease-in-out;
}
.swiper-button-prev-custom .arrow-text, .swiper-button-next-custom .arrow-text {
    transition: transform 0.4s ease-in-out;
}
.swiper-button-prev-custom:hover .arrow-text {
    transform: translateX(-60%);
}
.swiper-button-next-custom:hover .arrow-text {
    transform: translateX(54px);
}
.swiper-button-prev-custom:hover .arrow-line {
    transform: translateX(92px);
}
.swiper-button-next-custom:hover .arrow-line {
    transform: translateX(-72px);
}
.title {
    font-size: 40px;
    font-weight: 800;
}
.sub-title {
    color: var(--third-color);
    font-size: 16px;
}
/******** [BEGIN]: FEATURED ************/
.world-map-bg {
    background-image: var(--world-map-bg);
    background-size: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -100px;
    filter: brightness(0.5) drop-shadow(2px 4px 6px black);
}
.featured-banner {
    color: #fff;
    min-height: 325px;
    position: relative;
}
.featured-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--products-bg);
    transition: transform 1.2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px;
}
/* .featured-banner:hover::before {
    transform: scale(1.1);
} */
.featured-banner * {
    z-index: 1;
}
.featured-banner-img {
    margin: -150px 0px 0px 0px;
}
.fetured-bg-shape {
    background-image: var(--fetured-bg-shape);
    background-size: cover;
    display: block;
    background-position: center;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    margin: 15px;
    position: absolute;
}
.featured-banner-img img {
    width: 90%;
    margin-inline: 5%;
}
.featured-banner .sub-title {
    color: #ffffffd6;
}
.featured-banner .main-btn {
    padding: 14px 25px !important;
    max-width: max-content;
}
.featured-banner .overlay {
    border-radius: 14px;
    background-color: rgb(57 44 1 / 49%);
}
/******** [END]: FEATURED ************/

.category-circle {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 12px 0px #00000024;
}
.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 6%;
}
.wrapper-category:hover .category-circle {
    transform: scale(1.05);
}
.row-cols-8 > * {
  flex: 0 0 auto;
  width: 12.5%;
}
.section-products {
    margin-top: -110px;
}
.categories-swiper .swiper-pagination-bullet {
    background: #777;
}
.categories-swiper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(0.85);
}
.categories-swiper .swiper-horizontal>.swiper-pagination-bullets, .categories-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .categories-swiper .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
 }

/******** [BEGIN]: SETUPS ************/
.grid_setups {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-auto-rows: auto; /* Automatic row heights */
    gap: 16px; /* Adjust spacing */
}
.pc-setup {
    width: 100%; /* Ensures it fits inside grid */
}
/* If there are 3 or more .pc-setup, the first one spans 2 rows */
.grid_setups:has(.pc-setup:nth-child(3)) .pc-setup:first-child {
    grid-row: span 2;
}
.pc-setup .section-bg {
    padding: 25px;
    min-height: 270px;
}
.pc-setup-body {
    width: 75%;
}
.pc-setup:first-child .section-bg {
    height: 100%;
}
.section-bg:hover::before {
    transform: scale(1.1);
}
.pc-setup .pc-setup-title {
    font-size: 32px;
    font-weight: 800;
}
.pc-setup .pc-setup-description {
    font-size: 16px;
    color: #ffffffc9;
}
.pc-setup:first-child .pc-setup-title {
    font-size: 36px;
}
.pc-setup:first-child .pc-setup-description {
    font-size: 18px;
}
.pc-setup:nth-child(2) a:first-child {
    /*margin-bottom: 20px;*/
    display: block;
}
/******** [END]: SETUPS ************/

/******** [BEGIN]: BOX ICON ************/
.box-icon .icon svg{
    width: 50px;
    height: 50px;
}
/******** [END]: BOX ICON ************/

.brands-carousel img {
    max-height: 50px;
    width: auto;
}

.store {
    position: relative;
    box-shadow: 0px 0 10px #0000001c;
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
}
.store:hover {
    box-shadow: 0 0 20px #cccccc91;
}
.store-cover{
    width: 100%;
    height: 185px;
    object-fit: cover;
    background-color: #f4f4f4;
    box-shadow: 0 1px 4px #0000000d;
}
.store-profile {
    background-color: #f4f4f4;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
    position: absolute;
    bottom: -12px;
    left: 10px;
    border: 2px solid #fff;
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 8px;
}
.store-body {
    padding: 18px 18px 14px;
}
.store-body h5 {
    font-weight: 600;
    color: var(--second-color);
    letter-spacing: .6px;
    text-transform: capitalize;
}
.store-body p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--third-color);
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
}
.adt-estate-hero-section {
    position: relative;
    padding-block: 30px;
    background-image: url("../../assets/images/wrapper_bg.png");
    background-size: cover;
    background-color: rgb(255, 255, 255);
}
.adt-hero-search-tabs .nav-tabs {
    border-bottom: 0px;
}
.adt-hero-search-tabs .nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: rgb(36, 36, 36);
    background-color: rgb(255, 255, 255);
    padding: 8px 22px;
    border-radius: 0px;
    border: none;
    text-transform: capitalize;
}
.adt-hero-search-tabs .nav-tabs .nav-link:first-child {
    border-top-left-radius: 4px;
}
.adt-hero-search-tabs .nav-tabs .nav-link:last-child {
    border-top-right-radius: 4px;
}
.adt-hero-search-tabs .nav-tabs .nav-link.active {
    background-color: rgb(36, 36, 36);
    color: rgb(255, 255, 255) !important;
}
.adt-hero-search-tabs .search-filters-bar {
    max-width: 94%;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 50px 0px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 0px 8px 8px;
}
.adt-hero-search-tabs .search-filters-bar .filter-box label {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: rgb(36, 36, 36);
    margin-bottom: 7px;
}
.adt-hero-search-tabs .search-filters-bar .filter-box input {
    width: 100%;
    height: 40px;
    background-color: rgb(246, 246, 246);
    font-size: 13px;
    font-weight: 400;
    color: rgb(109, 109, 109);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(240, 240, 240);
    border-image: initial;
    border-radius: 8px;
    padding: 10px;
}
.listingFilterOffcanvas .filter-box {
  margin-bottom: 12px !important;
}
.adt-hero-search-tabs .search-filters-bar .select2-container {
    width: 100% !important;
}
.adt-hero-search-tabs .search-filters-bar .select2-container--default .select2-selection--single {
    background-color: rgb(246, 246, 246);
    height: 40px;
    margin-bottom: 0px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(240, 240, 240);
    border-image: initial;
}
.adt-hero-search-tabs .search-filters-bar .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
    color: rgb(109, 109, 109);
    padding: 0px 10px;
}
.adt-hero-search-tabs .search-filters-bar .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
    width: 32px;
    background-color: rgb(255, 255, 255);
    top: 4px;
    right: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(240, 240, 240);
    border-image: initial;
    border-radius: 8px;
}
.adt-hero-search-tabs .search-filters-bar .select2-container--default .select2-selection--single .select2-selection__arrow b {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    margin-left: -3px;
    transform: rotate(135deg);
    border-color: rgb(109, 109, 109) rgb(109, 109, 109) transparent transparent;
    border-width: 1px 1px 0px 0px;
}
.adt-estate-hero-section .popular-keywords::before {
    content: url("../../assets/images/line-round-vector.png");
    position: absolute;
    bottom: -10px;
    left: -80px;
}
.adt-estate-hero-section .popular-keywords li {
    display: inline-block;
    margin-right: 4px;
}
.adt-estate-hero-section .popular-keywords li a {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    color: rgb(109, 109, 109);
    background-color: rgb(255, 255, 255);
    padding: 5px 10px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}
.adt-hero-search-tabs .search-filters-bar .search-button {
    color: rgb(255, 255, 255);
    background-color: rgb(36, 36, 36);
    border-color: rgb(36, 36, 36);
    border-radius: 8px;
    padding: 6px 18px;
}
.adt-estate-hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    background-image: url("../../assets/images/tracked-dozer.png");
    background-size: contain;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
    filter: opacity(0.1) grayscale(1);
}
.adt-estate-hero-section .content-box .sub-title {
    font-size: 18px;
    font-weight: 500;
    font-family: Kalam, cursive;
    color: var(--main-color);
    display: block;
    margin-bottom: 8px;
}
.adt-estate-hero-section .content-box p {
    font-size: 15px;
    line-height: 24px;
    color: #777;
    max-width: 80%;
    margin-bottom: 30px !important;
}
.adt-estate-hero-section .main-img-box img {
    position: absolute;
    bottom: 0px;
    transform: translate(-18%, 8%);
    max-width: 42%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
}
.select2-container--open .select2-dropdown--below{
    border-color: #e7e7e7;
}
.select2-results__option {
    font-size: 14px;
}
.select2-results__option {
    padding: 6px 10px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--main-color);
}
.toggle-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #242424;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.toggle-btn:hover {
    background: #f6f6f6;
}
#chevronIcon {
    transition: transform 0.3s ease;
    height: 12px;
    width: 12px;
}

.extra-filters {
    display: none;
    width: 100%;
    padding-inline: 0;
    margin: auto;
    margin-top: 10px;
    animation: fadeIn 0.3s ease-in-out;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--main-color);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none; /* hidden by default */
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.floating-btn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.adt-hero-search-tabs .listingFilterOffcanvas .search-filters-bar {
  max-width: 100%;
  box-shadow: none;
  padding: 0 10px;
}
.offcanvas-backdrop {
  z-index: 1042;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-5px);}
    to {opacity: 1; transform: translateY(0);}
}
@media screen and (min-width: 1600px) {
    .adt-estate-hero-section .main-img-box img {
        max-width: 32%;
    }
}
@media (max-width: 1440px) {
    .title {
        font-size: 38px;
    }
}
@media screen and (max-width: 1300px) {
    .slider-content-details {
        max-width: 60%;
    }
    .title {
        font-size: 38px !important;
    }
    .sub-title {
        font-size: 15px;
    }
}
@media screen and (max-width: 1200px) {
    .slider-content-details {
        max-width: 65%;
    }
    .slider_content h2 {
        font-size: 62px;
    }
    .slider_content .btn {
        font-size: 18px;
    }
    .slider__images {
        --carousel-height: 200px;
    }
}
@media screen and (max-width: 1024px) {
    .slider_content h2 {
        font-size: 58px;
    }
    .slider__images {
        --carousel-height: 185px !important;
    }
}
@media (max-width: 991.98px) {
    .slider__images {
        --carousel-height: 170px !important;
    }
    .title {
        font-size: 36px !important;
    }
    .slider-content-details {
        max-width: 76%;
    }
    .slider_content h2 {
        font-size: 52px;
    }
    .slider-content-details p {
        font-size: 15px;
    }
    .slider_content .btn {
        font-size: 16px;
    }
    .main-img-box {
        display: none;
    }
    .adt-hero-search-tabs .search-filters-bar {
        max-width: 100%;
    }
    .floating-btn {
        bottom: 80px;
    }
}
@media (max-width: 767.98px) {
    .slider__flex {
        flex-direction: column-reverse;
    }
    .slider__images {
        width: 100%;
        --carousel-height: 520px;
    }
    .slider_content {
        position: relative;
        top: -100%;
        left: 0;
        margin: auto;
        text-align: center;
    }
    .slider_content img {
        margin: auto;
    }
    .swiper-pagination-bullet{
        width: 12px;
        height: 12px;
    }
    .swiper-pagination-bullet-active {
        width: 32px;
        height: 12px;
    }
    .slider_buttons{
        margin-inline: 20px;
    }
    .slider_content h2 {
        font-size: 48px !important;
    }
    .title {
        font-size: 32px !important;
    }
    .slider-content-details {
        max-width: 100%;
    }
    .adt-estate-hero-section .content-box p {
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    .adt-hero-search-tabs .nav-tabs {
        gap: 0.5rem;
        margin-bottom: 12px;
    }
    .adt-hero-search-tabs .nav-tabs .nav-link {
        width: calc(50% - 0.25rem);
        padding: 20px 10px;
        border-radius: 12px;
        box-shadow: rgb(0 0 0 / 16%) 0px 0px 3px 0px;
    }
    .adt-estate-hero-section {
        padding-block: 15px;
    }
    .adt-estate-hero-section .content-box .sub-title {
        font-size: 16px;
    }
    .adt-estate-hero-section .content-box h1 {
        font-size: calc(1.2rem + 1.2vw);
    }
    .adt-estate-hero-section .content-box p {
        font-size: 14px;
        margin-bottom: 20px !important;
    }
    .adt-hero-search-tabs .nav-tabs .nav-link:nth-child(2) {
        border-top-right-radius: 4px;
    }
    .adt-hero-search-tabs .nav-tabs .nav-link:nth-child(3) {
        border-bottom-left-radius: 4px;
    }
    .adt-hero-search-tabs .nav-tabs .nav-link:nth-child(4) {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 4px;
    }
    .adt-hero-search-tabs .search-filters-bar {
        border-radius: 8px;
    }
    .adt-hero-search-tabs .search-filters-bar {
        box-shadow: rgb(0 0 0 / 15%) 0px 0px 4px 0px;
    }
    .toggle-btn {
        font-size: 13px;
        padding-inline: 4px;
        gap: 8px;
    }
    .floating-btn {
        right: 10px;
    }
    .filter-box {
        margin-bottom: 12px !important;
    }
    .section-products {
        margin-top: -90px;
    }
    .sub-title {
        font-size: 14px;
    }
    .slider_content {
        padding: 20px;
    }
    .slider_content img {
        max-width: 125px;
    }
    .slider_content h2 {
        font-size: 32px;
    }
    .slider_content .btn {
        font-size: 16px;
    }
    .section-setups .pc-setup-body {
        width: 100%;
    }
    .section-setups .pc-setup .pc-setup-title {
        font-size: 26px !important;
    }
    .pc-setup .section-bg {
        padding: 15px;
        min-height: 220px;
    }
    .section-setups .pc-setup .pc-setup-description {
        font-size: 16px !important;
    }
    .section-setups .pc-setup:first-child a, .pc-setup:nth-child(2) a:first-child {
        margin-bottom: 12px;
    }
}