/*home carousel css start */
.home-hero-coupons {
    padding: 28px 0 52px;
    overflow: hidden;
    background: #fff;
}



.home-coupon-slider {
    width: 100%;
    padding-bottom: 34px;
    overflow: visible;
}

.home-coupon-slider .swiper-wrapper {
    align-items: stretch;
}

.home-coupon-slider .swiper-slide {
    width: 1180px;
    max-width: calc(100vw - 34px);
    height: 320px;
}

.home-deal-slide {
    height: 100%;
}

.home-deal-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #454545;
    text-decoration: none;
    color: #fff;
}

.home-deal-content {
    width: calc(100% - 385px);
    padding: 24px 48px;
    background: #454545;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.home-deal-logo {
    width: 160px;
    height: 86px;
    padding: 8px;
    background: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-deal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-deal-content h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 800;
    max-width: 620px;
    margin: 0;
}

.home-deal-btn {
    width: 220px;
    height: 44px;
    background: #2492f4;
    color: #000;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-deal-image {
    width: 385px;
    height: 100%;
    flex: 0 0 385px;
    background: #fff;
}

.home-deal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* arrows */
.home-coupon-slider .swiper-button-prev,
.home-coupon-slider .swiper-button-next {
    color: #168cff;
    width: 42px;
    height: 42px;
}

.home-coupon-slider .swiper-button-prev:after,
.home-coupon-slider .swiper-button-next:after {
    font-size: 34px;
}

/* dots */
.home-coupon-slider .swiper-pagination {
    bottom: 6px;
}

.home-coupon-slider .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #bfbfbf;
    opacity: 1;
}

.home-coupon-slider .swiper-pagination-bullet-active {
    background: #168cff;
}

/* tablet */
@media (max-width: 1024px) {
    .home-coupon-slider .swiper-slide {
        width: 900px;
        height: 300px;
    }

    .home-deal-content {
        width: calc(100% - 330px);
        padding: 24px 34px;
    }

    .home-deal-image {
        width: 330px;
        flex-basis: 330px;
    }

    .home-deal-content h3 {
        font-size: 24px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .home-hero-coupons {
        padding: 24px 0 42px;
    }

    .home-coupon-slider {
        padding: 0 14px 34px;
        overflow: hidden;
    }

    .home-coupon-slider .swiper-slide {
        width: 100%;
        max-width: 356px;
        height: auto;
    }

    .home-deal-card {
        flex-direction: column-reverse;
        min-height: 430px;
    }

    .home-deal-content {
        width: 100%;
        min-height: 210px;
        padding: 18px;
        align-items: center;
        text-align: center;
    }

    .home-deal-logo {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 90px;
        height: 55px;
        z-index: 2;
    }

    .home-deal-content h3 {
        font-size: 20px;
        max-width: 100%;
    }

    .home-deal-btn {
        width: 100%;
        max-width: 220px;
    }

    .home-deal-image {
        width: 100%;
        flex: none;
        height: 250px;
    }
}

/*home carousel css end */

/*Feature Brands css Start */
.home-featured-brands {
    padding: 40px 0 50px;
}


.home-featured-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.home-brand-item {
    min-height: 182px;
    padding: 16px 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    color: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: 0.25s ease;
}

.home-brand-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.12);
    transform: translateY(-3px);
}

.home-brand-logo {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-brand-item h3 {
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    margin: 10px 0;
    line-height: 1.4em;
}

.home-brand-item span {
    color: #6b7280;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .home-featured-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .home-featured-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-brand-item {
        min-height: 160px;
    }
}
/*Feature Brands css end */

/*deals of the week section css start */

.home-deals-week {
    padding: 40px 0 50px;
}

.deals-week-slider {
    padding-bottom: 55px;
}

.week-deal-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #111827;
    transition: 0.25s ease;
}

.week-deal-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.14);
    transform: translateY(-3px);
}

.week-deal-image {
    height: 245px;
    background: #f3f4f6;
}

.week-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.week-deal-logo {
    position: absolute;
    right: 18px;
    top: 205px;
    width: 82px;
    height: 52px;
    background: #fff;
    border-radius: 8px;
    padding: 7px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.week-deal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.week-deal-content {
    padding: 22px 18px 30px;
}

.week-deal-content h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
}

.week-deal-content p {
    color: #374151;
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 24px;
    min-height: 44px;
}

.week-deal-btn {
    width: 100%;
    height: 44px;
    background: #7c3aed;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deals-week-slider .swiper-button-prev,
.deals-week-slider .swiper-button-next {
    color: #7c3aed;
    top: 45%;
}

.deals-week-slider .swiper-button-prev:after,
.deals-week-slider .swiper-button-next:after {
    font-size: 30px;
}

.deals-week-slider .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
}

.deals-week-slider .swiper-pagination-bullet-active {
    background: #7c3aed;
}

.deals-week-slider .swiper-pagination {
    bottom: 5px !important;
}
/*deals of the week section css end */

/*top cffers section css start */
.home-top-offers {
    padding: 40px 0 50px;
}

.top-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.top-offer-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: 0.25s ease;
}

.top-offer-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.12);
}

.top-offer-main {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 24px 18px 14px;
}

.top-offer-logo {
    width: 115px;
    height: 64px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.top-offer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.top-offer-content h3 {
    color: #111827;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 12px;
}

.top-offer-links {
    display: flex;
    gap: 28px;
    margin-bottom: 18px;
}

.top-offer-links a {
    color: #7c3aed;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.top-offer-btn {
    height: 44px;
    width: 100%;
    background: #7c3aed;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
}

.top-offer-meta {
    background: #f9fafb;
    padding: 11px 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #374151;
    font-size: 13px;
}

@media (max-width: 900px) {
    .top-offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .top-offer-main {
        grid-template-columns: 1fr;
    }

    .top-offer-logo {
        width: 120px;
    }

    .top-offer-links {
        flex-direction: column;
        gap: 8px;
    }
}

/*top cffers section css end */

/*home category section css start */
.home-categories-section {
    padding: 40px 0 50px;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-category-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    padding: 22px 18px;
    transition: 0.25s ease;
}

.home-category-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.12);
}

.home-category-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.home-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}

.home-category-top h3 {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.home-category-brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.home-category-brand-logo {
    height: 38px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-category-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-category-link {
    color: #7c3aed;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-category-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .home-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .home-categories-grid {
        grid-template-columns: 1fr;
    }
}

/*home category section css end */

/*home Text section css Start */
.home-text-section {
    padding: 40px 0 50px;
}

.home-text-content {
    max-width: 1120px;
    margin: 0 auto;
    color: #111827;
    font-size: 16px;
    line-height: 1.7;
}

.home-text-content h1,
.home-text-content h2,
.home-text-content h3 {
    color: #111827;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 18px;
}

.home-text-content h2 {
    font-size: 24px;
    margin-top: 28px;
}

.home-text-content h3 {
    font-size: 20px;
    margin-top: 24px;
}

.home-text-content p {
    margin: 0 0 18px;
}

.home-text-content a {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
}

.home-text-content a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .home-text-section {
        padding: 34px 0 42px;
    }

    .home-text-content {
        font-size: 15px;
    }
}
/*home Text section css end */

/*home Special Events section css Start */

.home-special-events {
    background: #fff;
    padding: 40px 0 50px;
}

.home-special-events-box {
    background: #f5f5f5;
    border: 1px solid #ede9fe;
    border-radius: 16px;
    padding: 42px 40px;
}

.home-special-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-special-event-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: 0.25s ease;
}

.home-special-event-card:hover {
    transform: translateY(-3px);
    border-color: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.14);
}

.home-special-event-image {
    height: 232px;
    background: #f3f4f6;
}

.home-special-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-special-event-title {
    background: #fff;
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    padding: 16px 12px;
}

.home-special-event-card:hover .home-special-event-title {
    color: #7c3aed;
}

@media (max-width: 900px) {
    .home-special-events-grid {
        grid-template-columns: 1fr;
    }

    .home-special-events-box {
        padding: 30px 18px;
    }
}

/*home Special Events  css end */


/*home Blogs  css Start */
.home-blog-section {
    padding: 40px 0 50px;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.home-blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.25s ease;
}

.home-blog-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.12);
    transform: translateY(-3px);
}

.home-blog-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.home-blog-image {
    height: 175px;
    background: #f3f4f6;
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-blog-content {
    padding: 20px 22px 24px;
}

.home-blog-date {
    display: block;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.home-blog-content h3 {
    color: #111827;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 20px;
}

.home-blog-readmore {
    color: #7c3aed;
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .home-blog-grid {
        grid-template-columns: 1fr;
    }
}
/*home Blogs  css end */



