/* --- TRUST FEATURES ROW  Start--- */

.trust-features-section {
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 8px;
    border: 1px solid #edf2f7;
    transition: var(--transition-normal);
}

.trust-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    background: #000000;
    border-radius: 12px;
    padding: 10px;
}

.trust-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
}

.trust-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

@media(max-width: 1024px) {
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media(max-width: 767px) {
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 10px;
    }

    .trust-features-section {
        padding: 20px 0;
    }
}

/* --- TRUST FEATURES ROW  End --- */


/* --- MISSION SECTION --- */
.mission-section {
    margin: 40px 0 0;
    background-color: #f4f6f8;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-banner-img {
    width: 100%;
    height: 100%;
    /* border-radius: 16px; */
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.mission-img-col {
    height: 100%;
}

.mission-quote-box {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-yellow);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    background: #000000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-text-col {
    padding: 20px 20px 20px 0;
}

@media(max-width: 1024px) {
    .mission-grid {
        gap: 20px;
    }
}

@media(max-width: 991px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-text-col {
        padding: 0px 20px 20px 20px;
    }

    .mission-quote-box {
        flex-direction: column;
    }
}

@media(max-width: 767px) {
    .mission-section {
        margin: 20px 0 0;
    }
}

/* --- TESTIMONIAL SECTION --- */

.testimonial-section {
    background-color: #111111;
    color: #ffffff;
    padding: 40px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section .testimonial-container {
    max-width: 950px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: -10px;
}


.testimonial-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: #e2e8f0;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.avatar-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.customer-avatar.active,
.customer-avatar:hover {
    border-color: var(--primary-yellow);
    opacity: 1;
    transform: scale(1.15);
}


.testimonial-section .splide__pagination {
    margin-top: 30px;
}

.testimonial-section .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: #666;
    opacity: 1;
}

.testimonial-section .splide__pagination__page.is-active {
    background: var(--primary-yellow);
    transform: scale(1.3);
}

.testimonial-section .avatar-slider {
    width: 260px;
    margin: 30px auto 0;
}

.testimonial-section .avatar-slider .splide__track {
    padding: 10px;
}

.avatar-slider .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none !important;
}

.testimonial-section .customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: all .3s ease;
    transform: scale(.8);
    opacity: .5;
}

.testimonial-section .splide__slide.is-active .customer-avatar {
    transform: scale(1.15);
    opacity: 1;
    border: 3px solid #ffd400;
}

@media(max-width: 767px) {
    .testimonial-section {
        padding: 20px 0px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-section .avatar-slider {
        margin: 15px auto 0;
    }
}

/* ............... Lifestyle Banners Section START.......... */
.lifestyle-banners-section {
    padding: 40px 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* gap: 24px; */
}

.lifestyle-card {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 400px;
}

.lifestyle-img-holder {
    width: 100%;
    height: 100%;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lifestyle-card:hover .lifestyle-img {
    transform: scale(1.1);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgb(0 0 0 / 35%) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
}

.lifestyle-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.lifestyle-overlay p {
    font-size: 0.85rem;
    color: #dddddd;
    margin-bottom: 14px;
}

@media(max-width: 1199px) {
    .lifestyle-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 1024px) {
    .lifestyle-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .lifestyle-card:first-child {
        grid-column: 1 / -1;
    }
}

@media(max-width: 767px) {
    .lifestyle-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lifestyle-card {
        height: 280px;
    }

    .lifestyle-banners-section {
        padding: 20px 0;
    }
}

/* ............... Lifestyle Banners Section END........... */




/* .............. Brand Tabs START........... */


.brand-showcase {
    margin: 0 0 40px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.brand-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    overflow: hidden;
    cursor: pointer;
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.brand-card:last-child {
    border-right: none;
}

.brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-yellow);
    transform: translateY(100%);
    transition: .4s ease;
    z-index: 1;
}

.brand-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #000;
    transform: translateX(-50%);
    transition: .35s;
}

.brand-card span {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    transition: var(--transition-normal);
}

.brand-card:hover::before {
    transform: translateY(0);
}

.brand-card:hover::after {
    width: 100%;
}

.brand-card:hover span {
    color: #000;
    transform: scale(1.08);
}

.brand-card:hover {
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media(max-width:767px) {
    .brand-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-card {
        height: 90px;
        border-bottom: 1px solid var(--border-color);
    }

    .brand-card:nth-child(2) {
        border-right: none;
    }
}

@media(max-width:575px) {
    .brand-showcase {
        grid-template-columns: 1fr;
    }

    .brand-card {
        height: 75px;
        border-right: none;
    }
}

/* ............. Brand Tabs END........... */


/*==========================================
 HERO SLIDER
==========================================*/

.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: var(--header-bg);
    margin-bottom: 40px;
}

.hero-slide {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 10s linear infinite alternate;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(90deg,
            rgba(13, 13, 13, .92) 0%,
            rgba(13, 13, 13, .78) 35%,
            rgba(13, 13, 13, .35) 65%,
            rgba(13, 13, 13, .15) 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 219, 0, .35),
            transparent 70%);

    filter: blur(30px);
    z-index: 2;
}

.hero-slide .section-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-left {
    max-width: 650px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 219, 0, .15);
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 219, 0, .4);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
    backdrop-filter: blur(8px);
    margin-bottom: 22px;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 78px;
    line-height: 1;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: var(--primary-yellow);
}

.hero-left p {
    max-width: 550px;
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-slider-section .splide__arrows {
    display: none;
}

.splide__pagination {
    bottom: 35px;
    gap: 10px;
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    background: rgb(217 217 217 / 85%);
    opacity: 1;
    transition: .35s;
}

.splide__pagination__page.is-active {
    width: 20px;
    border-radius: 20px;
    background: var(--primary-yellow);
    transform: none;
}

.hero-left>* {
    animation: fadeUp .8s ease both;
}

.hero-left h1 {
    animation-delay: .15s;
}

.hero-left p {
    animation-delay: .3s;
}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes heroZoom {

    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }

}

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

@media (max-width:991px) {
    .hero-slide {
        min-height: 600px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 56px;
    }

    .hero-left p {
        font-size: 17px;
    }
}

/*==========================================
 Mobile
==========================================*/
@media (max-width:767px) {
    .hero-slider-section {
        margin-bottom: 20px;
    }

    .hero-slide {
        min-height: 520px;
    }

    .hero-slide::before {
        background: rgba(13, 13, 13, .72);
    }

    .hero-slide::after {
        display: none;
    }

    .hero-left {
        text-align: center;
        margin: auto;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}



/* ............... Bank Offers Section START.......... */

.bank-offers-section {
    padding: 40px 0;
}

.bank-offers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
}

.bank-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary-yellow);
    letter-spacing: 1px;
}

.bank-logos-row {
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
}

.bank-card {
    background: #1a1a1a;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.bank-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.bank-logo-img {
    height: 18px;
    object-fit: contain;
}

.emi-badge {
    background: var(--primary-yellow);
    color: #000000;
    border: none;
}

.bank-offers-section .section-title {
    text-align: center;
    margin: 0;
}

@media(max-width: 767px) {
    .bank-offers-section {
        padding: 20px 0;
    }
}


/* FAQ Section Start */
.faq-section {
    padding: 80px 0;
}

.faq-section .faq-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
}

.faq-section .faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 120px;
    height: max-content;
}

.faq-section .faq-tab {
    border: none;
    background: none;
    text-align: left;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 12px 18px;
    cursor: pointer;
    transition: .3s;
    line-height: 1.2;
}

.faq-section .faq-tab.active {
    background: #ffd500;
}

.faq-section .faq-content {
    display: flex;
    flex-direction: column;
}

.faq-section .faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-section .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    padding: 28px 0;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
}

.faq-section .faq-question span:first-child {
    flex: 1;
}

.faq-section .icon {
    width: 35px;
    height: 35px;
    border: 2px solid #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    transition: .3s;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

.faq-section .faq-answer p {
    padding-bottom: 30px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-section .faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-section .faq-panel {
    display: none;
}

.faq-section .faq-panel.active {
    display: block;
}

/* Tablet */

@media(max-width:991px) {
    .faq-section .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-section .faq-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow: auto;
        white-space: nowrap;
    }

    .faq-section .faq-tab {
        font-size: 18px;
        flex: 0 0 auto;
    }

    .faq-section .faq-question {
        font-size: 20px;
    }
}

/* Mobile */

@media(max-width:767px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-section .faq-sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .faq-section .faq-tab {
        font-size: 18px;
        padding: 14px;
    }

    .faq-section .faq-question {
        font-size: 18px;
        padding: 20px 0;
    }

    .faq-section .icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .faq-section .faq-answer p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* FAQ Section End */



/* ................... Promo Banners Section START ............. */

.promo-banners-section {
    padding: 40px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 320px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    /* padding: 45px; */
    transition: .4s ease;
    isolation: isolate;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.promo-info {
    max-width: 55%;
    color: #fff;
    z-index: 9;
    position: absolute;
    padding: 20px;
}

.promo-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.promo-bike-img {
    transition: .45s ease;
    z-index: 2;
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Responsive */

@media(max-width:767px) {
    .promo-banners-section {
        padding: 20px 0;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        min-height: auto;
    }

    .promo-info {
        max-width: 100%;
        order: 2;
    }
}

/* ................... Promo Banners Section END ............. */




/* ............... Products Section START........... */
.products-section {
    padding: 40px 0;
    background: #fff;
}

.section-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px !important;
}

.section-header-bar .section-title {
    margin: 0;
}

.title-dash {
    width: 6px;
    height: 24px;
    background: var(--primary-yellow);
    border-radius: 3px;
}

.view-all-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #000;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 3px;
}

.view-all-link:hover {
    color: var(--accent-red);
}

.most-loved-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 24px; */
    align-items: start;
}

.featured-product-card,
.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    /* border-radius: 16px; */
    box-shadow: var(--shadow-sm);
    transition: .35s;
    position: relative;
}

.featured-product-card {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.featured-product-card:hover,
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-lg);
}

.hot-badge,
.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 100%;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}

.hot-badge,
.badge-red {
    background: var(--accent-red);
}

.badge-green {
    background: var(--accent-green);
}

.badge-blue {
    background: var(--accent-blue);
}

.badge-yellow {
    background: var(--primary-yellow);
    color: #000;
}

.wishlist-btn-overlay .woosw-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    z-index: 3;
}

.wishlist-btn-overlay:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
}

.wishlist-btn-overlay i {
    font-size: 1.1rem;
}

.featured-img-box {
    /* aspect-ratio: 1/1; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 600px;
    height: 100%;
    width: 100%;
}

.featured-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .4s;
}

.featured-product-card:hover .featured-product-img {
    transform: scale(1.05);
}

.featured-card-body {
    margin-top: 20px;
}

.product-category {
    font-size: 12px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 100%;
    font-weight: 800;
    margin: 8px 0;
}

.featured-product-card .price-row {
    margin: 10px 0 20px;
}

.product-rating {
    color: #f7b500;
    margin-bottom: 15px;
}

.rating-count {
    color: var(--text-muted);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 100%;
    line-height: 100%;
    font-weight: 900;
}

.old-price {
    color: #999;
    text-decoration: line-through;
}

.card-action-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-action-btns .btn {
    flex: 1;
}

.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 22px; */
}

.product-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.product-img-box {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .4s;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 16px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 100%;
    font-weight: 800;
    margin: 6px 0 0;
}

.product-card-info .btn {
    margin-top: auto;
    width: 100%;
}

/* Responsive */
@media(max-width:1199px) {
    .most-loved-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .products-section {
        padding: 20px 0;
    }

    .section-header-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .card-action-btns {
        flex-direction: column;
    }

    .current-price {
        font-size: 16px;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .hot-badge,
    .card-badge {
        top: 10px;
        left: 10px;
        padding: 5px;
        border-radius: 4px;
        font-size: 10px;
        line-height: 100%;
    }

    .product-category {
        font-size: 10px;
        line-height: 100%;
    }

    .price-row {
        gap: 5px;
        margin: 5px 0;
    }

    .old-price {
        font-size: .95rem;
    }

    .product-name {
        font-size: 16px;
    }

    .featured-product-card,
    .product-card {
        padding: 20px 10px 10px;
    }

    .wishlist-btn-overlay {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
    }

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

    .featured-product-card .price-row {
        margin: 5px 0 10px;
    }
}

/* ............... Products Section END........... */





/* .............. Top Sellers Section START ............. */


.top-sellers-section {
    padding: 40px 0;
    background: #fff;
}

.top-sellers-section .ts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    gap: 20px;
}

.top-sellers-section .ts-heading-bar {
    width: 6px;
    height: 26px;
    border-radius: 4px;
    background: var(--primary-yellow);
}

.top-sellers-section .ts-view-all {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: #000;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 4px;
    transition: .3s;
}

.top-sellers-section .ts-view-all:hover {
    color: var(--accent-red);
}

#top-sellers-slider .splide__track{
    overflow:hidden;
}

#top-sellers-slider .splide__slide{
    display:flex;
    height:auto;
}

#top-sellers-slider .ts-card{
    width:100%;
    height:100%;
}

#top-sellers-slider .splide__arrow{
    width:48px;
    height:48px;
    background:#fff;
    border:1px solid #ddd;
    opacity:1;
}

#top-sellers-slider .splide__arrow svg{
    fill:#000;
}

#top-sellers-slider .splide__pagination{
    bottom:-35px;
}

.top-sellers-section .ts-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.top-sellers-section .ts-card:hover {
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.ts-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    line-height: 100%;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
    background: #000;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.top-sellers-section .ts-badge-dark {
    background: #000;
}

.ts-badge-red {
    background: var(--accent-red);
}

.top-sellers-section .ts-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: .3s;
}

.top-sellers-section .ts-wishlist:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}

.top-sellers-section .ts-image-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #fafafa;
}

.top-sellers-section .ts-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .45s;
}

.top-sellers-section .ts-card:hover .ts-image {
    transform: scale(1.08);
}

.top-sellers-section .ts-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.top-sellers-section .ts-category {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-sellers-section .ts-title {
    margin: 8px 0;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 100%;
    color: var(--text-main);
}

.top-sellers-section .ts-price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.top-sellers-section .ts-price {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 100%;
    /* font-weight: 900; */
    color: #000;
}

.top-sellers-section .ts-old-price {
    color: #999;
    font-size: 18px;
    line-height: 100%;
    text-decoration: line-through;
}

.top-sellers-section .ts-content .btn {
    margin-top: auto;
    width: max-content;
}

.top-sellers-section .ts-header .section-title{
    margin: 0;
}

@media(max-width:767px) {
    .top-sellers-section {
        padding: 20px 0 50px;
    }

    .top-sellers-section .ts-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-sellers-section .ts-title {
        font-size: 1.3rem;
    }

    .top-sellers-section .ts-price {
        font-size: 1.6rem;
    }

    .top-sellers-section .ts-content .btn {
        width: 100%;
    }
}

@media(max-width:575px) {
    .top-sellers-section .ts-heading-bar {
        height: 22px;
    }

    .top-sellers-section .ts-content {
        padding: 18px;
    }

    .top-sellers-section .ts-title {
        font-size: 1.15rem;
    }

    .top-sellers-section .ts-price {
        font-size: 1.4rem;
    }

    .top-sellers-section .ts-old-price {
        font-size: 1rem;
    }

    .top-sellers-section .ts-wishlist {
        width: 38px;
        height: 38px;
    }

    .top-sellers-section .ts-badge {
        font-size: .65rem;
        padding: 4px 8px;
    }
}

.top-sellers-section .ts-wishlist i{
    font-size: 1.1rem;
}


/* .................. Top Sellers Section END .................. */
@media(max-width: 767px){
	.btn{
		padding: 10px 20px !important;
		font-size : 14px;
		line-height: 100%;
	}
}



/* .................. sale Banner Start .................. */

.sale-banner {
    position: relative;
    color: #ffffff;
    max-height: 379px;
    height: 100%;
}

.sale-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sale-banner::before{
    position: absolute;
    content: '';
    background-color: #b1b1b1;
    opacity: 0.28;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.sale-banner img{
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}
.sale-smal {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.sale-disc {
    color: #ffdb00;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: -2px;
}

.sale-disc i{
    color: #ffffff;
}

.sale-price {
    font-size: 24px;
    line-height: 100%;
    color: #EB3030;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sale-price del{
    color: #fff;
    font-size: 18px;
    line-height: 100%;
}

@media(max-width: 767px){
    .sale-disc{
        font-size: 28px;
        line-height: 100%;
    }
}


/* .................. sale Banner End .................. */


.products-section .single_variation_wrap .woocommerce-variation.single_variation,
.products-section table.variations,
.products-section .quantity,
.top-sellers-section table.variations,
.top-sellers-section .single_variation_wrap .woocommerce-variation.single_variation,
.top-sellers-section .quantity{
    display: none !important;
}




.single_add_to_cart_button{
    vertical-align: middle;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    width: fit-content;
}






/*================= wishlist css Start=================*/

.woosw-list .woosw-items{
	width: 100% !important;
    max-width: 900px !important;
    margin: auto !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid #eaeaea !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: var(--light-bg) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 0 !important;
    padding-top: 10px !important;
}

.woosw-list table.variations{
	display: none;
}

.woosw-list .quantity {
  display: none !important;
}

@media(max-width: 767px){
	.woosw-list .woosw-item {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgb(234, 234, 234);
	}
	.woosw-list .woosw-item--remove{
		text-align: end;
		width: 100% !important;
	}
	.woosw-list .woosw-items {
		padding: 0 !important;
	}
}

.woosw-list table.woosw-items tr td{
	background: none !important;
}

.woosw-list .woosw-item {
    background: var(--light-bg) !important;
}
.woosw-list .woosw-item .woosw-item--actions .woosw-item--stock{
	display: none;
}
.woosw-list .woosw-item .woosw-item--actions{
	text-align: center;
}

.woosw-list .woosw-item--remove span{
    background: #fff1f2 !important;
    color: #a00 !important;
    width: 25px !important;
    border-radius: 50%;
}

.woosw-list .woosw-item--remove span::before{
    font-weight: 900 !important;
}

.woosw-list .woosw-item--image{
	  display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    background: #fafafa !important;
    text-decoration: none;
}

/* Hide wishlist table when it is empty */
.woosw-list .woosw-items:has(tbody:empty) {
    display: none !important;
}

/* Empty wishlist message */
.woosw-list:has(.woosw-items tbody:empty)::after {
    content: "Your Wishlist is Empty\A\A You haven't added any products to your wishlist yet.";
    white-space: pre-wrap;
    display: block;
    text-align: center;
    padding: 70px 20px;
    margin: 20px auto 50px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    width: 100%;
}

.woosw-list .woosw-popup-content-mid-message {
    text-align: center;
}


/* // ================= wishlist css End ================= */
.woosw-popup .woosw-popup-inner .woosw-popup-content{
	max-width: 570px !important;
	height: 448px !important;
}
#woosw_wishlist .woosw-item--name a{
	font-size: 16px;
	color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#woosw_wishlist .woosw-item--price{
	color: var(--text-muted);
}
#woosw_wishlist .woosw-items .add_to_cart_button,
#woosw_wishlist .product_type_variation,
#woosw_wishlist .single_add_to_cart_button{
	padding: 10px !important;
  font-size: 12px !important;
  width: 115px !important;
  text-align: center;
}

#woosw_wishlist .variations,
#woosw_wishlist .single_variation,
#woosw_wishlist .quantity,
#woosw_wishlist .woosw-item--time,
#woosw_wishlist .stock.out-of-stock{
	display: none !important;
}




nav.woocommerce-MyAccount-navigation ul li{
	    padding: 10px 20px !important;
	        background: #f5f5f5;
    border-radius: 10px;
    transition: all 0.2s;
        border: 1px solid #eaeaea !important;
}
nav.woocommerce-MyAccount-navigation ul{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
nav.woocommerce-MyAccount-navigation ul li.is-active{
	        background: #000000;
    color: white;
}
nav.woocommerce-MyAccount-navigation ul li:hover{
	  background: #000000;
    color: white;
}
.entry-content {
	padding: 40px 0 !important;
}
.woocommerce-Addresses{
	display: flex;
	gap: 10px;
	margin-top: 20px !important;
	    flex-wrap: wrap;
}
.woocommerce-Address {
    padding: 10px 20px !important;
    background: #f5f5f5;
    border-radius: 10px;
    border: 1px solid #eaeaea !important;
}
@media(max-width: 768px){
	nav.woocommerce-MyAccount-navigation ul{
	   padding-bottom: 15px !important;
}
	.entry-content {
    padding: 20px 0 !important;
}
}

form.woocommerce-EditAccountForm.edit-account input{
		border: 1px solid transparent !important;
    background: #F6F6F6 !important;
    color: var(--text-main) !important;
    font-size: 15px !important;
    height: 58px !important;
    padding: 0 20px !important;
}

.woocommerce-MyAccount-content fieldset {
    padding: 15px !important;
}



#woosw_wishlist .woosw-page{
	color: var(--accent-blue);
}
#woosw_wishlist .woosw-continue{
	color: #7a00df;
}