.category-offer-section {
    width: 100%;
    background: #fff;
}

.category-offer-main-card {
    padding: 20px;
    background: var(--web-bgcolor);
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .08);
}

/* ===========================
   Category Header
=========================== */

.category-offer-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    margin-bottom: 20px;
}

.category-offer-title {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--web-primary);
    line-height: 1.2;
}

.category-offer-view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    font-weight: 600;
    color: var(--web-primary);
    text-decoration: none;
    transition: all .25s ease;
}

.category-offer-view-all:hover {
    color: var(--web-primary);
    text-decoration: none;
    transform: translateY(-50%) translateX(2px);
}

.category-offer-view-all i {
    font-size: 12px;
}

/* RTL */
html[dir="rtl"] .category-offer-view-all {
    right: auto;
    left: 0;
}

/* Tablet */
@media (max-width: 991px) {

    .category-offer-header {
        margin-bottom: 15px;
    }

    .category-offer-title {
        font-size: 20px;
    }

    .category-offer-view-all {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .category-offer-header {
        min-height: 38px;
        padding: 0 6px;
        margin-bottom: 10px;
    }

    .category-offer-title {
        font-size: 18px;
    }

    .category-offer-view-all {
        font-size: 12px;
        gap: 4px;
    }

    .category-offer-view-all i {
        font-size: 10px;
    }
}

.category-offer-view-all:hover {
    color: var(--web-secondary);
    text-decoration: none;
}

.category-offer-item {
    padding: 8px;
}

.category-offer-link {
    display: block;
    text-decoration: none;
}

.category-offer-link:hover {
    text-decoration: none;
}

.category-offer-image-box {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 4px solid var(--web-secondary);
    border-radius: 22px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    transition: .3s;
}

.category-offer-link:hover .category-offer-image-box {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.category-offer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.category-offer-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--web-secondary);
    padding: 12px 10px;
    text-align: center;
}

.category-offer-name {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-offer-slider .owl-stage {
    display: flex;
}

.category-offer-slider .owl-item {
    display: flex;
}

.category-offer-slider .category-offer-item {
    width: 100%;
}

.category-offer-slider .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.category-offer-slider .owl-prev,
.category-offer-slider .owl-next {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50% !important;
    background: #fff !important;
    color: #333 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.category-offer-slider .owl-prev:hover,
.category-offer-slider .owl-next:hover {
    background: var(--web-secondary) !important;
    color: #fff !important;
}

.category-offer-slider .owl-dots {
    display: none !important;
}

/* Desktop */

@media (min-width:1200px) {

    .category-offer-image {
        height: 250px;
    }

}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {

    .category-offer-image {
        height: 220px;
    }

}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {

    .category-offer-image {
        height: 190px;
    }

    .category-offer-name {
        font-size: 15px;
    }

}

/* Mobile */

@media (max-width:767px) {

    .category-offer-section {
        padding-bottom: 15px !important;
    }

    .category-offer-section .container {
        max-width: 100%;
        padding: 0 6px;
    }

    .category-offer-main-card {
        padding: 12px 4px;
        border-radius: 0;
        box-shadow: none;
    }

    .category-offer-header {
        padding: 0 6px;
        margin-bottom: 10px;
    }

    .category-offer-title {
        font-size: 17px;
    }

    .category-offer-view-all {
        font-size: 12px;
    }

    .category-offer-item {
        padding: 3px;
    }

    .category-offer-image-box {
        border-width: 2px;
        border-radius: 14px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
    }

    .category-offer-image {
        height: 115px;
    }

    .category-offer-bottom {
        padding: 6px 4px;
    }

    .category-offer-name {
        font-size: 11px;
        line-height: 1.2;
    }

    .category-offer-slider .owl-nav {
        display: none;
    }
}

/* Small Mobile */

@media (max-width:480px) {

    .category-offer-item {
        padding: 2px;
    }

    .category-offer-image {
        height: 105px;
    }

    .category-offer-name {
        font-size: 10px;
    }

}