
.cat-single-hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #fff 100%);
    padding: 34px 0 56px;
    border-bottom: 1px solid #ede9fe;
    overflow: hidden;
}

.cat-single-breadcrumb {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 34px;
}

.cat-single-breadcrumb a {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
}

.cat-single-breadcrumb span {
    margin: 0 8px;
}

.cat-single-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.cat-single-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-single-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cat-single-heading h1 {
    color: #111827;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0;
}

.cat-single-subtitle {
    color: #374151;
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 16px;
}

.cat-single-desc {
    max-width: 900px;
    color: #374151;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 34px;
}

.cat-brand-slider {
    padding: 0 0 42px;
    position: relative;
}

.cat-brand-slider .swiper-slide {
    width: 132px;
}

.cat-brand-card {
    min-height: 130px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 12px;
    color: #111827;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: center;
    transition: 0.25s ease;
}

.cat-brand-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.12);
    transform: translateY(-3px);
}

.cat-brand-logo {
    height: 52px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cat-brand-card span {
    font-size: 15px;
    font-weight: 800;
}

.cat-brand-slider .swiper-button-prev,
.cat-brand-slider .swiper-button-next {
    color: #7c3aed;
}

.cat-brand-slider .swiper-button-prev:after,
.cat-brand-slider .swiper-button-next:after {
    font-size: 28px;
}

.cat-brand-slider .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
}

.cat-brand-slider .swiper-pagination-bullet-active {
    background: #7c3aed;
}

.cat-brand-slider .swiper-pagination {
    position: static !important;
  
}

/*after banner section*/


.cat-coupons-section {
    background: #fff;
    padding: 50px 0;
}

.cat-coupons-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.cat-brand-sidebar {
    position: sticky;
    top: 95px;
    height: fit-content;
}

.cat-sidebar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.cat-sidebar-brand {
    min-height: 128px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 8px;
    color: #111827;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    transition: .25s ease;
}

.cat-sidebar-brand:hover {
    border-color: #7c3aed;
    box-shadow: 0 12px 28px rgba(124,58,237,.12);
    transform: translateY(-2px);
}

.cat-sidebar-brand img {
    width: 100%;
    height: 48px;
    object-fit: contain;
}

.cat-sidebar-brand span {
    font-size: 13px;
    font-weight: 800;
}

.cat-coupons-main {
    display: grid;
    gap: 18px;
}



@media (max-width: 1024px) {
    .cat-coupons-layout {
        grid-template-columns: 1fr;
    }

    .cat-sidebar-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cat-coupon-card {
        grid-template-columns: 110px 1fr;
    }

    .cat-coupon-meta,
    .cat-coupon-btn {
        grid-column: 2;
    }
}

@media (max-width: 767px) {
    .cat-sidebar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-coupon-card {
        grid-template-columns: 1fr;
    }

    .cat-coupon-meta,
    .cat-coupon-btn {
        grid-column: auto;
    }
}


@media (max-width: 767px) {
    .cat-single-hero {
        padding: 26px 0 44px;
    }

    .cat-single-heading {
        align-items: flex-start;
    }

    .cat-single-heading h1 {
        font-size: 25px;
    }

    .cat-single-subtitle {
        font-size: 18px;
    }

    .cat-single-desc {
        font-size: 15px;
    }
    
 
}