#homeProductTabs{
    float: left;
    width: 100%;
}
.home-product-tabs-section {
    margin: 40px 0;
}

.home-product-tabs-section .container {

    margin: 0 auto;
}

.home-tabs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 20px;
}
#homeProductTabs .product-item-details{margin-left: 0px!important}
#homeProductTabs .product-item-info, #homeProductTabs .slider-product-item-info{width: 100%!important;left: 0px!important}
.home-product-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.home-product-tabs li {
    min-width: 135px;
    height: 40px;
    padding: 0 25px;
    border: 1px solid #ddd;
    border-radius: 24px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.home-product-tabs li:first-child {
    background: #eefcff;
}

.home-product-tabs li.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(90deg, #8b5cf6 0%, #8bdaf4 100%);
}

.home-shop-more {
    min-width: 150px;
    height: 42px;
    padding: 0 24px;
    border: 1px solid #ddd;
    border-radius: 24px;
    background: #fff;
    color: #777;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.home-shop-more:hover {
    color: #111;
    text-decoration: none;
}

.home-tab-content {
    display: none;
}

.home-tab-content.active {
    display: block;
}

.amt-home-swiper-wrap {
    position: relative;
}

/* Prevent broken layout before Swiper initializes */
/*.amt-home-product-swiper {
    opacity: 0;
    visibility: hidden;
    min-height: 720px;
    overflow: hidden;
}

.amt-home-product-swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
}*/

/* ===============================
   Skeleton loader
================================ */

.amt-home-swiper-wrap {
    position: relative;
    min-height: 720px;
}

.amt-home-product-skeleton {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 5px 5px 45px;
}

.amt-home-swiper-wrap.is-loading .amt-home-product-skeleton {
    display: grid;
}

.amt-home-swiper-wrap.is-loading .amt-home-product-swiper {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.amt-home-swiper-wrap.is-ready .amt-home-product-skeleton {
    display: none;
}

.amt-home-swiper-wrap.is-ready .amt-home-product-swiper {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.skeleton-card {
    height: 335px;
    border: 1px solid #dedede;
    border-radius: 25px;
    background: #fff;
    padding: 20px 18px 18px;
    overflow: hidden;
}

.skeleton-image {
    height: 170px;
    border-radius: 25px;
    background: linear-gradient(90deg, #f1f1f1 25%, #fafafa 50%, #f1f1f1 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.4s infinite;
    margin-bottom: 28px;
}

.skeleton-line {
    height: 12px;
    border-radius: 20px;
    background: linear-gradient(90deg, #f1f1f1 25%, #fafafa 50%, #f1f1f1 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.4s infinite;
    margin-bottom: 10px;
}

.skeleton-line-title {
    width: 80%;
}

.skeleton-line-small {
    width: 60%;
}

.skeleton-line-price {
    width: 38%;
    height: 14px;
    margin-top: 15px;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Mobile skeleton */
@media only screen and (max-width: 991px) {
    .amt-home-product-skeleton {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .amt-home-swiper-wrap {
        min-height: 610px;
    }

    .amt-home-product-skeleton {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 5px 5px 40px;
    }

    .skeleton-card {
        height: 285px;
        padding: 15px 12px;
    }

    .skeleton-image {
        height: 130px;
        margin-bottom: 24px;
    }
}
/* Important for 2-row grid */
.amt-home-product-swiper .swiper-wrapper {
    align-items: stretch;
}

.amt-home-product-swiper .swiper-slide {
    height: calc((100% - 24px) / 2) !important;
}

/* Card height control */
.amt-home-product-swiper .product-item {
    height: 335px;
}

.amt-home-product-swiper .product-item-info {
    height: 100%;
    position: relative;
}

.amt-home-product-swiper {
    padding: 5px 5px 45px;
}

.amt-home-product-swiper .swiper-wrapper {
    align-items: stretch;
}

.amt-home-product-swiper .swiper-slide {
    height: auto;
}

.amt-home-product-swiper .product-item {
    height: 100%;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.25s ease;
}

.amt-home-product-swiper .product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.amt-home-product-swiper .product-item-info {
    width: 100%;
    height: 100%;
    padding: 0;
}

.amt-home-product-swiper .product-item-photo {
    height: 205px;
    padding: 20px 16px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amt-home-product-swiper .product-image-container {
    width: 100% !important;
}

.amt-home-product-swiper .product-image-wrapper {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amt-home-product-swiper .product-image-photo {
    max-width: 160px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.amt-home-product-swiper .product-item-details {
    padding: 0 18px 18px;
    text-align: left;
}

.amt-home-product-swiper .product-item-name {
    min-height: 42px;
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

.amt-home-product-swiper .product-item-name a {
    color: #45515d;
    text-decoration: none;
}

.amt-home-product-swiper .price-box {
    margin: 0;
}

.amt-home-product-swiper .price {
    color: #111;
    font-size: 15px;
    font-weight: 900;
}

.amt-home-product-swiper .product-item-actions,
.amt-home-product-swiper .actions-primary,
.amt-home-product-swiper .tocart {
    display: none !important;
}

/* Keep wishlist/compare icon area if your theme uses it */
.amt-home-product-swiper .actions-secondary {
    position: absolute;
    right: 16px;
    bottom: 14px;
}

/*.amt-home-product-swiper .swiper-button-prev,
.amt-home-product-swiper .swiper-button-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: #888;
}

.amt-home-product-swiper .swiper-button-prev:after,
.amt-home-product-swiper .swiper-button-next:after {
    font-size: 16px;
    font-weight: 700;
}

.amt-home-product-swiper .swiper-button-prev {
    left: 0;
}

.amt-home-product-swiper .swiper-button-next {
    right: 0;
}*/

.amt-home-product-swiper .swiper-pagination {
    bottom: 5px;
}

.amt-home-product-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d5d5d5;
    opacity: 1;
}

.amt-home-product-swiper .swiper-pagination-bullet-active {
    background: #444;
}

@media only screen and (max-width: 991px) {
    .home-tabs-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .home-product-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .home-product-tabs li {
        min-width: 125px;
        white-space: nowrap;
    }

    .home-shop-more {
        align-self: flex-end;
    }
}

@media only screen and (max-width: 767px) {
    .home-product-tabs-section {
        margin: 28px 0;
    }

    .home-product-tabs li {
        min-width: 115px;
        height: 36px;
        padding: 0 18px;
        font-size: 12px;
    }

    .home-shop-more {
        min-width: 125px;
        height: 36px;
        font-size: 12px;
    }

    .amt-home-product-swiper {
        padding: 5px 12px 40px;
    }

    .amt-home-product-swiper .product-item-photo {
        height: 145px;
        padding: 15px 10px 6px;
    }

    .amt-home-product-swiper .product-image-photo {
        max-height: 110px;
    }

    .amt-home-product-swiper .product-item-details {
        padding: 0 12px 15px;
    }

    .amt-home-product-swiper .product-item-name {
        font-size: 12px;
        min-height: 38px;
    }

    .amt-home-product-swiper .price {
        font-size: 13px;
    }
}

.home-bestseller-section {
    margin: 50px 0;
}

.home-bestseller-section .container {

    margin: 0 auto;
}

/* ===============================
   Header
================================ */

.amt-bestseller-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

.amt-bestseller-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amt-bestseller-title h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: #111827;
}

.rocket-icon {
    color: #cfcfcf;
    font-size: 28px;
    line-height: 1;
}

.amt-bestseller-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}
#homeProductTabs .product-item-name span{display: none!important;}
.amt-bestseller-tabs li {
    min-width: 105px;
    height: 42px;
    padding: 0 18px;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    background: #fff;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.amt-bestseller-tabs li:hover {
    color: #111;
    border-color: #cfcfcf;
}

.amt-bestseller-tabs li.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(90deg, #8b5cf6 0%, #8bdaf4 100%);
}

/* ===============================
   Loading / Ready State
================================ */

.amt-bestseller-wrap {
    position: relative;
    min-height: 600px;
    padding: 0 5px;
}

.amt-bestseller-products {
    opacity: 1;
    visibility: visible;
}

.amt-bestseller-wrap.is-loading .amt-bestseller-products {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.amt-bestseller-wrap.is-ready .amt-bestseller-skeleton {
    display: none;
}

/* ===============================
   Skeleton Layout
   Shape: 1 big left + 4 small right
================================ */

.amt-bestseller-skeleton {
    display: none;
    grid-template-columns: 2fr 2fr;
    gap: 8px;
}

.amt-bestseller-wrap.is-loading .amt-bestseller-skeleton {
    display: grid;
}

.skeleton-big,
.skeleton-small {
    border-radius: 25px;
    background: linear-gradient(90deg, #f1f1f1 25%, #fafafa 50%, #f1f1f1 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.4s infinite;
    border: 1px solid #eee;
}

.skeleton-big {
    height: 600px;
}

.skeleton-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.skeleton-small {
    height: 296px;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===============================
   Actual Product Layout
   Desktop:
   Left: 1 big product
   Right: 4 small products
================================ */

.bestseller-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 296px);
    gap: 22px;
}

.bestseller-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 25px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transition: 0.25s ease;
}

.bestseller-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.bestseller-card-big {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 600px;
    display: flex;flex-direction: column;
}
.bestseller-price{display: none!important;}
.bestseller-card-small {
    min-height: 296px;
    display: flex;flex-direction: column;
}

.bestseller-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}

.bestseller-card-big .bestseller-image {
    height: 410px;
}

.bestseller-card-small .bestseller-image {
    height: 155px;
}

.bestseller-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bestseller-details {
    margin-top: 18px;
}

.bestseller-category {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 5px;
}

.bestseller-name {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    font-weight: normal;
    margin-bottom: 8px;
}

.bestseller-name a {
    color: #111;
    text-decoration: none;
}

.bestseller-name a:hover {
    color: #111;
    text-decoration: none;
}

.bestseller-price .price {
    font-size: 16px;
    font-weight: 900;
    color: #111;
}

.bestseller-empty {
    padding: 40px 20px;
    border: 1px solid #ededed;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* ===============================
   Tablet
================================ */

@media only screen and (max-width: 991px) {
    .amt-bestseller-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .amt-bestseller-tabs {
        justify-content: flex-start;
    }

    .bestseller-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bestseller-card-big {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 420px;
    }

    .bestseller-card-big .bestseller-image {
        height: 260px;
    }

    .bestseller-card-small {
        min-height: 260px;
    }

    .bestseller-card-small .bestseller-image {
        height: 145px;
    }

    .amt-bestseller-skeleton {
        grid-template-columns: 1fr;
    }

    .skeleton-big {
        height: 420px;
    }

    .skeleton-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skeleton-small {
        height: 260px;
    }
}

/* ===============================
   Mobile
================================ */

@media only screen and (max-width: 767px) {
    .home-bestseller-section {
        margin: 35px 0;
    }

    .amt-bestseller-title h2 {
        font-size: 20px;
    }

    .rocket-icon {
        font-size: 24px;
    }

    .amt-bestseller-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .amt-bestseller-tabs li {
        min-width: max-content;
        white-space: nowrap;
        height: 34px;
        font-size: 12px;
        padding: 0 16px;
    }

    .bestseller-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bestseller-card {
        padding: 18px;
    }

    .bestseller-card-big {
        grid-column: auto;
        grid-row: auto;
        min-height: 380px;
    }

    .bestseller-card-big .bestseller-image {
        height: 230px;
    }

    .bestseller-card-small {
        min-height: 250px;
    }

    .bestseller-card-small .bestseller-image {
        height: 145px;
    }

    .amt-bestseller-skeleton {
        grid-template-columns: 1fr;
    }

    .skeleton-big {
        height: 380px;
    }

    .skeleton-small-grid {
        grid-template-columns: 1fr;
    }

    .skeleton-small {
        height: 250px;
    }
}

/* ===============================
   Shop By Brand Section
================================ */

.home-brand-section {
    margin: 50px 0;
}

.home-brand-section .container {
    max-width: 1180px;
    margin: 0 auto;
}

.home-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}

.home-brand-header h2 {
    position: relative;
    flex: 1;
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 800;
    text-transform: none;
}

.home-brand-header h2:after {
    content: "";
    display: block;
    height: 1px;
    background: #e5e5e5;
    position: absolute;
    left: 155px;
    right: 0;
    top: 50%;
}

.home-brand-more {
    min-width: 150px;
    height: 42px;
    padding: 0 24px;
    border: 1px solid #dedede;
    border-radius: 24px;
    background: #fff;
    color: #777;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: 0.25s ease;
}

.home-brand-more:hover {
    color: #111;
    border-color: #cfcfcf;
    text-decoration: none;
}

.brand-marquee-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0 25px;
}

.brand-marquee-slider:before,
.brand-marquee-slider:after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-marquee-slider:before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.brand-marquee-slider:after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: brandMarquee 45s linear infinite;
}

.brand-marquee-slider:hover .brand-marquee-track {
    animation-play-state: paused;
}

.brand-logo-item {
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-logo-item img {
    max-width: 120px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.22;
    transition: 0.25s ease;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

@keyframes brandMarquee {
    0% {
        transform: translateX(0);
    }

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

/* Duplicate support for smooth marquee */
.brand-marquee-track.is-cloned {
    animation: brandMarquee 45s linear infinite;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .home-brand-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .home-brand-header h2 {
        width: 100%;
    }

    .home-brand-header h2:after {
        left: 140px;
    }

    .home-brand-more {
        align-self: flex-end;
    }

    .brand-marquee-track {
        gap: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .home-brand-section {
        margin: 35px 0;
    }

    .home-brand-header {
        margin-bottom: 20px;
    }

    .home-brand-header h2 {
        font-size: 18px;
    }

    .home-brand-header h2:after {
        left: 125px;
    }

    .home-brand-more {
        min-width: 125px;
        height: 36px;
        font-size: 12px;
    }

    .brand-marquee-track {
        gap: 35px;
        animation-duration: 35s;
    }

    .brand-logo-item {
        width: 95px;
        height: 55px;
    }

    .brand-logo-item img {
        max-width: 95px;
        max-height: 42px;
    }
}

/* ===============================
   Home Category Section
================================ */

.home-category-section {
    margin: 50px 0;
}

.home-category-section .container {
    max-width: 1180px;
    margin: 0 auto;
}

.home-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 55px;
}

.home-category-header h2 {
    position: relative;
    flex: 1;
    margin: 0;
    color: #333;
    font-size: 22px;
    font-weight: 900;
    text-transform: none;
}

.home-category-header h2:after {
    content: "";
    position: absolute;
    left: 145px;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e5e5e5;
}

.home-category-more {
    min-width: 170px;
    height: 42px;
    padding: 0 28px;
    border: 1px solid #dedede;
    border-radius: 28px;
    background: #fff;
    color: #777;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: 0.25s ease;
}

.home-category-more:hover {
    color: #111;
    border-color: #cfcfcf;
    text-decoration: none;
}

/* ===============================
   Swiper
================================ */

.home-category-widget-swiper-wrap {
    position: relative;
}

.home-category-swiper {
    padding: 0 0 52px;
}

.home-category-swiper .swiper-wrapper {
    align-items: stretch;
}

.home-category-swiper .swiper-slide {
    height: auto;
}

/* ===============================
   Category Card
================================ */

.home-category-card {
    height: 100%;
    background: #f7f7f7;
    border: 1px solid #ededed;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: 0.25s ease;
}
#shopByCategory .category-name, #shopByCategory .product-item-name, #shopByCategory h3, #shopByCategory strong{text-align: left!important;}

.home-category-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  
}

.home-category-image {
    height: 250px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.home-category-image img {
    max-width: 82%;
    max-height: 175px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-category-title-row {
    position: relative;
    min-height: 58px;
    padding: 0 16px;
    background: #fff;
    display: flex;
    align-items: center;
}

.home-category-name {
    margin: 0;
    padding: 0;
    padding-right: 135px;
    color: #333;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.home-category-name a {
    color: #333;
    text-decoration: none;
}

.home-category-name a:hover {
    color: #111;
    text-decoration: none;
}

.home-category-shop-now {
    min-width: 130px;
    height: 40px;
    padding: 0 22px;
    border-radius: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(
        120deg,
        #004f90 0%,
        #0071be 40%,
        #e0a000 72%,
        #c76200 100%
    );
    position: absolute;
    right: 28px;
    top: -20px;
    z-index: 2;
}

.home-category-shop-now:hover {
    color: #fff;
    text-decoration: none;
}
#shopByCategory h2{text-align: left!important;text-transform: capitalize!important;}

.home-category-child-list {
    list-style: none;
    margin: 0;
    padding: 28px 32px 30px;
    background: #f7f7f7;
}
#shopByCategory a{color: #000!important;font-size: 14px}
.home-category-image{height: auto!important;}
#shopByCategory img{height: 120px!important;padding: 20px!important}
.home-category-child-list li {
    margin: 0 0 10px;
    color: #555;
    font-size: 13px;
    line-height: 1.3;
    border-radius: 0px!important;
}
.home-category-child-list li:hover,.home-category-child-list li:hover a{color: #000!important}

.home-category-child-list li:before {
    content: "›";
    color: #c7c7c7;
    margin-right: 10px;
    font-size: 15px;
    position: absolute;
    margin-left: -12px;

}

.home-category-child-list a {
    color: #555;
    text-decoration: none;
}

.home-category-child-list a:hover {
    color: #111;
    text-decoration: none;
}

/* ===============================
   Dots
================================ */

.home-category-swiper .swiper-pagination {
    bottom: 8px;
}

.home-category-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    opacity: 1;
    margin: 0 6px !important;
}

.home-category-swiper .swiper-pagination-bullet-active {
    background: #333;
}
#shopByCategory ul.home-category-child-list{border-radius: 0px!important}
#shopByCategory ul.home-category-child-list a{color: #777!important}
#shopByCategory .item, #shopByCategory .category-item, #shopByCategory li{background: transparent!important;text-align: left!important;border:none!important;min-height: inherit!important;}
#shopByCategory .item:hover, #shopByCategory .category-item:hover, #shopByCategory li:hover{transform: none!important;box-shadow: none!important;}
.home-category-title-row > a.home-category-shop-now{display: none!important;}
#shopByCategory .category-name, #shopByCategory .product-item-name, #shopByCategory h3, #shopByCategory strong{background: transparent!important;text-align: center;color: #000!important}
#shopByCategory .container{padding-left: 0px!important;padding-right: 0px!important}
/* ===============================
   Responsive
================================ */

@media only screen and (max-width: 991px) {
    .home-category-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }

    .home-category-header h2 {
        width: 100%;
        font-size: 20px;
    }

    .home-category-header h2:after {
        left: 135px;
    }

    .home-category-more {
        align-self: flex-end;
        height: 40px;
        min-width: 145px;
        font-size: 13px;
    }

    .home-category-card {
        
    }

    .home-category-image {
        height: 225px;
    }

    .home-category-image img {
        max-height: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .home-category-section {
        margin: 35px 0;
    }

    .home-category-card {
       
    }

    .home-category-image {
        height: 205px;
    }

    .home-category-image img {
        max-height: 150px;
    }

    .home-category-title-row {
        padding: 0 24px;
    }

    .home-category-name {
        font-size: 16px;
        padding-right: 120px;
    }

    .home-category-shop-now {
        right: 22px;
        height: 38px;
        min-width: 115px;
        font-size: 13px;
        padding: 0 18px;
    }

    .home-category-child-list {
        padding: 24px 24px 28px;
    }
}

/* ===============================
   Category Skeleton Loader
================================ */

.home-category-widget-swiper-wrap {
    position: relative;
    min-height: 430px;
}

.home-category-skeleton {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.home-category-widget-swiper-wrap.is-loading .home-category-skeleton {
    display: grid;
}

.home-category-widget-swiper-wrap.is-loading .home-category-swiper {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.home-category-widget-swiper-wrap.is-ready .home-category-skeleton {
    display: none;
}

.home-category-widget-swiper-wrap.is-ready .home-category-swiper {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.home-category-skeleton-card {
    min-height: 430px;
    background: #f7f7f7;
    border: 1px solid #ededed;
    border-radius: 25px;
    overflow: hidden;
}

.home-category-skeleton-image {
    height: 250px;
    background: linear-gradient(90deg, #f1f1f1 25%, #fafafa 50%, #f1f1f1 75%);
    background-size: 200% 100%;
    animation: categorySkeletonLoading 1.4s infinite;
}

.home-category-skeleton-title {
    width: 55%;
    height: 18px;
    margin: 28px 32px 20px;
    border-radius: 20px;
    background: linear-gradient(90deg, #f1f1f1 25%, #fafafa 50%, #f1f1f1 75%);
    background-size: 200% 100%;
    animation: categorySkeletonLoading 1.4s infinite;
}

.home-category-skeleton-list {
    padding: 18px 32px 28px;
}

.home-category-skeleton-line {
    width: 80%;
    height: 13px;
    margin-bottom: 16px;
    border-radius: 20px;
    background: linear-gradient(90deg, #f1f1f1 25%, #fafafa 50%, #f1f1f1 75%);
    background-size: 200% 100%;
    animation: categorySkeletonLoading 1.4s infinite;
}

.home-category-skeleton-line:nth-child(2) {
    width: 70%;
}

.home-category-skeleton-line:nth-child(3) {
    width: 86%;
}

.home-category-skeleton-line:nth-child(4) {
    width: 62%;
}

.home-category-skeleton-line:nth-child(5) {
    width: 78%;
}

.home-category-skeleton-line:nth-child(6) {
    width: 68%;
}

@keyframes categorySkeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Tablet */
@media only screen and (max-width: 991px) {
    .home-category-skeleton {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .home-category-skeleton-card {
        min-height: 405px;
    }

    .home-category-skeleton-image {
        height: 225px;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .home-category-skeleton {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-category-skeleton-card {
        min-height: 380px;
    }

    .home-category-skeleton-image {
        height: 205px;
    }

    .home-category-skeleton-title {
        margin: 24px 24px 18px;
    }

    .home-category-skeleton-list {
        padding: 16px 24px 24px;
    }
}
.amt-bestseller-tabs li.active,.home-product-tabs li.active{background:#eb7924!important}
.home-brand-more,.home-category-more,.home-shop-more{transition: all 0.3s;}
.home-brand-more:hover,.home-category-more:hover,.home-shop-more:hover{background: #eb7924!important;border:1px solid #eb7924!important;color: #fff!important;transition: all 0.3s;}
.home-category-header h2,.home-brand-header h2{margin-bottom: 0px!important}

#homeBestSellers,#shopByCategory{background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6f6f6));
    background: linear-gradient(#fff, #f6f6f6);padding-bottom: 50px!important;margin-bottom: 0px!important}
#homeProductTabs{background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6f6f6));
    background: linear-gradient(#fff, #f6f6f6);margin-bottom: 0px!important}
#homeProductTabs{margin-top: 50px}
.home-category-child-list,.home-category-card{background: #fff!important}

/* ===============================
   Best Seller Layout
   1 Big + 6 Small
================================ */

.amt-bestseller-wrap {
    position: relative;
    min-height: 580px;
}

.bestseller-layout-one-big {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 285px);
    gap: 20px;
}

.bestseller-card-index-0 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.bestseller-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 25px;
    overflow: hidden;
    padding: 20px;
    position: relative;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
}

.bestseller-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    
}

.bestseller-card-big {
    min-height: 578px;
}

.bestseller-card-small {
    min-height: 285px;
}

.bestseller-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestseller-card-big .bestseller-image {
    flex: 0 0 390px;
}

.bestseller-card-small .bestseller-image {
    flex: 0 0 145px;
}

.bestseller-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bestseller-details {
    margin-top: auto;
    padding-top: 14px;
}

.bestseller-name {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 8px;
}

.bestseller-name a {
    color: #111;
    text-decoration: none;
}

.bestseller-price .price {
    font-size: 15px;
    font-weight: 900;
    color: #111;
}

/* ===============================
   Skeleton: 1 Big + 6 Small
================================ */

.bestseller-skeleton-one-big {
    display: none;
    grid-template-columns: 1.55fr 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 285px);
    gap: 20px;
}

.amt-bestseller-wrap.is-loading .bestseller-skeleton-one-big {
    display: grid;
}

.amt-bestseller-wrap.is-ready .bestseller-skeleton-one-big {
    display: none;
}

.bestseller-skeleton-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 25px;
    padding: 20px;
    overflow: hidden;
}

.bestseller-skeleton-index-0 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.bestseller-skeleton-image,
.bestseller-skeleton-line {
    background: linear-gradient(90deg, #f1f1f1 25%, #fafafa 50%, #f1f1f1 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.4s infinite;
}

.bestseller-skeleton-image {
    height: 145px;
    border-radius: 25px;
    margin-bottom: 24px;
}

.bestseller-skeleton-index-0 .bestseller-skeleton-image {
    height: 390px;
}

.bestseller-skeleton-line {
    height: 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.bestseller-skeleton-title {
    width: 75%;
}

.bestseller-skeleton-price {
    width: 35%;
    height: 15px;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .bestseller-layout-one-big,
    .bestseller-skeleton-one-big {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bestseller-card-index-0,
    .bestseller-skeleton-index-0 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .bestseller-card-big,
    .bestseller-card-small,
    .bestseller-skeleton-card {
        min-height: 260px;
    }

    .bestseller-card-big .bestseller-image,
    .bestseller-card-small .bestseller-image {
        flex: 0 0 145px;
    }

    .bestseller-skeleton-image,
    .bestseller-skeleton-index-0 .bestseller-skeleton-image {
        height: 145px;
    }
}

@media only screen and (max-width: 767px) {
    .bestseller-layout-one-big,
    .bestseller-skeleton-one-big {
        grid-template-columns: 1fr;
    }

    .bestseller-card-index-0,
    .bestseller-skeleton-index-0 {
        grid-column: auto;
    }

    .bestseller-card-big,
    .bestseller-card-small,
    .bestseller-skeleton-card {
        min-height: 245px;
    }

    .bestseller-card {
        padding: 18px;
    }
}