@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');

:root {
    --primary-color: #5d675b;
    --text-main: #1a0a0a;
    --text-light: #737373;
    --bg-light: #f7f6f2;
    --border-color: #e5e5e5;
}

body {
    color: var(--text-main);
}

.ctnr {
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography Utilities */
.section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    /* Or similar elegant serif */
    margin-bottom: 20px;
    color: var(--text-main);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.section-link:hover {
    opacity: 0.7;
}

/* 1. Hero Section */
.home-hero {
    padding: 0;
    position: relative;
    max-width: 1366px;
    margin: auto;
    background: #f5f2ed;
    border-radius: 20px;
    margin-top: 0;
    margin-bottom: 25px;
}

.home-hero__container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 0 0 40px;
    position: relative;
}

.home-hero__content {
    flex: 0 0 38%;
}

.home-hero__subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 20px;
    display: block;
}

.home-hero__title {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--text-main);
}

.home-hero__desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 90%;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #3f462d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.home-hero__btn:hover {
    background-color: #4a5248;
    color: #fff;
}

.home-hero__controls-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.home-hero__controls {
    display: flex;
    align-items: center;
    gap: 60px;
    pointer-events: auto;
    margin-left: 22px;
    position: relative;
    z-index: 1;
    width: 300px;
}

.home-hero__pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-light);
}

.home-hero__pagination .custom-dot {
    cursor: pointer;
    transition: color 0.3s;
}

.home-hero__pagination .custom-dot:hover {
    color: var(--text-main);
}

.home-hero__pagination .active {
    color: var(--text-main);
    font-weight: 600;
    font-size: 20px;
}

.home-hero__pagination .line {
    width: 30px;
    height: 1px;
    background-color: #ccc;
}

.home-hero__arrows {
    display: flex;
    gap: 10px;
}

.home-hero__arrows .arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.3s;
    position: static !important;
    transform: none !important;
}

.home-hero__arrows .arrow-btn:hover {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

.home-hero__image-wrapper {
    flex: 1;
}

.home-hero__main-img {
    width: 100%;
    height: 608px;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.home-hero__card {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.home-hero__card-img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.home-hero__card-content h4 {
    font-size: 16px;
    margin: 0 0 5px 0;
}

.home-hero__card-content p {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.home-hero__card-content span {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.home-hero__card-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--text-main);
}

.home-hero__floating-text {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: right;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.8;
    text-transform: uppercase;
    opacity: 0.8;
}

/* 2. About Section */
.home-about {
    padding: 30px 0 0;
    position: relative;
}

.home-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
}

.home-about__grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.home-about__image {
    flex: 0 0 55%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.home-about__img {
    width: 100%;
    height: 351px;
    object-fit: cover;
    display: block;
}

.home-about__play-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: transform 0.3s;
    text-align: left;
    padding: 0;
}

.home-about__play-btn .play-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5c4e3b;
    /* Dark brown for the icon */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.home-about__play-btn .play-text {
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.home-about__play-btn:hover {
    transform: scale(1.05);
}

.home-about__content {
    flex: 1;
    position: relative;
}

.home-about__subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.home-about__title {
    color: var(--text-main);
    font-size: 38px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.home-about__desc {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 75%;
}

.home-about__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
}

.home-about__signature {
    position: absolute;
    top: -50px;
    width: 170px;
    right: 0;
    font-family: "Sacramento", cursive;
    /* Use a handwriting font */
    font-size: 29px;
    color: #000;
    /* Soft gold/brown color */
    transform: rotate(-5deg);
    /* opacity: 0.6; */
}

/* 3. Features Section */
.home-features {
    padding: 30px 0;
    /* border-top: 1px solid var(--border-color); */
    /* border-bottom: 1px solid var(--border-color); */
}

.home-features__grid {
    display: flex;
    justify-content: space-between;
    background: #f3f0ec;
    padding: 30px 20px;
    border-radius: 20px;
}

.home-features__item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding: 0 40px;
}

.home-features__item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.home-features__icon {
    color: var(--primary-color);
    width: 50px;
}

.home-features__text h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.home-features__text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* 4. Collections Section */
.home-collections {
    padding: 0px 0 30px 0;
}

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

.home-collections__subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.home-collections__title {
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.home-collections__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
}

.home-collections__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-collections__card {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    border-radius: 15px;
    overflow: hidden;
    background: #f4f0e9;
    transition: transform 0.3s;
}

.home-collections__card:hover {
    transform: translateY(-5px);
}

.home-collections__card img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
    aspect-ratio: 1.77 / 1;
}

.home-collections__card-info {
    padding: 10px 17px 20px 17px;
    background: #f4f0e9;
}

.home-collections__card-info h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.home-collections__card-info span {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
}

/* 5. Products Section */
.home-products {
    padding: 0;
}

.home-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.home-products__title {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0;
}

.home-products__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
}

.home-products__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}


/* 6. Spaces Section */
.home-spaces {
    padding: 30px 0 30px 0;
}

.home-spaces__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: #f4f0e9;
    border-radius: 20px;
    padding: 20px;
}

.home-spaces__intro {
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-spaces__subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.home-spaces__title {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.home-spaces__desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.home-spaces__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
    width: fit-content;
}

.home-spaces__card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    height: 350px;
}

.home-spaces__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.home-spaces__card:hover img {
    transform: scale(1.05);
}

.home-spaces__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.home-spaces__card-overlay h3 {
    font-size: 18px;
    font-family: ;
    margin: 0 0 5px 0;
}

.home-spaces__card-overlay p {
    font-size: 13px;
    margin: 0;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .home-hero__container {
        flex-direction: column;
        padding: 40px 20px 80px 20px;
        gap: 30px;
    }

    .home-hero__content {
        text-align: center;
        max-width: 100%;
    }

    .home-hero__desc {
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .home-hero__card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px;
        width: 90%;
        max-width: 450px;
    }

    .home-hero__main-img {
        border-radius: 20px;
        height: 500px;
    }

    .home-hero__controls-wrapper {
        bottom: 20px;
    }

    .home-hero__controls {
        justify-content: center;
        margin-left: 0;
    }

    .home-about__grid {
        gap: 65px;
    }

    .home-features__item {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .home-features__grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .home-features__item {
        flex: 0 0 100%;
        padding: 0;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
    }

    .home-features__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

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

    .home-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-spaces__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-spaces__intro {
        grid-column: span 3;
        padding-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .home-spaces__link {
        margin: 0 auto;
    }

    .home-about__grid {
        flex-direction: column;
        position: relative;
    }

    .home-about__grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.6);
    }

    .home-about__image {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .home-hero__title {
        font-size: 36px;
    }

    .home-hero__card {
        display: none;
        /* Hide card on very small screens */
    }

    .home-hero__main-img {
        height: 350px;
    }

    .home-about {
        padding: 30px 0;
        position: relative;
    }

    .home-about__desc {
        color: #333;
        font-size: 15px;
        max-width: 100%;
    }

    .home-about__content {
        padding-bottom: 15px;
    }

    .home-about__title {
        font-size: 28px;
    }

    .home-collections__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .home-collections__grid {
        grid-template-columns: 1fr;
    }

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

    .home-products__card h3 {
        font-size: 14px;
    }

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

    .home-spaces__intro {
        grid-column: span 2;
    }

    .home-spaces__card {
        height: 250px;
    }

    .section-title {
        font-size: 28px;
    }

    .home-collections__title {
        font-size: 28px;
    }

    .home-products__title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .home-products__grid {
        gap: 12px;
    }

    .home-spaces__grid {
        grid-template-columns: 1fr;
    }

    .home-spaces__intro {
        grid-column: span 1;
    }

    .home-hero__title {
        font-size: 28px;
    }

    .home-about__play-btn {
        width: auto;
        padding: 5px 15px;
        right: 15px;
        bottom: 15px;
    }

    .home-about__play-btn .play-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 380px) {
    .home-products__grid {
        grid-template-columns: 1fr;
    }
}

/* 7. Stories Section */
.home-stories {
    padding: 30px 0;
}

.home-stories__container {
    display: flex;
    background: #faf8f5;
    border-radius: 20px;
    overflow: hidden;
}

.home-stories__left {
    flex: 0 0 60%;
    padding: 40px;
    background: #faf8f5;
}

.home-stories__subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a8947b;
    display: block;
    margin-bottom: 25px;
    font-weight: 600;
}

.home-stories__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-stories__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.home-stories__card:hover {
    transform: translateY(-5px);
}

.home-stories__card-img {
    height: 150px;
    overflow: hidden;
}

.home-stories__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-stories__card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-stories__card-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.home-stories__card-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 15px 0;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.home-stories__card-info span {
    font-size: 12px;
    color: #999;
}

.home-stories__right {
    flex: 0 0 40%;
    position: relative;
    background-color: #e9e6e0;
    background-image: url('../images/banghe.png');
    background-size: cover;
    background-position: center;
    border-left: 1px solid #e5e5e5;
    padding: 40px;
    display: flex;
    align-items: center;
}

.home-stories__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #faf8f5 0%, rgba(250, 248, 245, 0.7) 100%);
    pointer-events: none;
}

.home-stories__right-content {
    position: relative;
    z-index: 1;
    max-width: 400px;
}

.home-stories__subtitle-right {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3f462d;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.home-stories__title {
    font-size: 34px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--text-main);
}

.home-stories__desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.home-stories__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #3f462d;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.home-stories__btn:hover {
    background-color: #383e36;
}

.box-price {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.box-price .price-old {
    color: #abaaaa
}

.home-hero__card-content {
    flex: 0 0 67%;
}




/* Responsive adjustments */
@media (max-width: 1200px) {
    .home-stories__container {
        flex-direction: column;
    }

    .home-stories__left {
        flex: auto;
        border-right: none;
    }

    .home-stories__right {
        flex: auto;
        border-left: none;
        border-top: 1px solid #e5e5e5;
    }
}

@media (max-width: 991px) {
    .home-stories__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


.category-banner-section {
    /* padding: 0 0 10px; */
    /* margin-bottom: 15px; */
}

.product-concern-section .product-concern-img-wrapper image-element {
    text-align: center
}

.category-banner {
    position: relative;
    width: 100%;
    min-height: 230px;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    overflow: hidden
}


.category-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.category-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0);
    z-index: 1;
    pointer-events: none;
}

.category-banner__content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 35px 40px;
    max-width: 600px;
    /* margin-left: 50px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05)
}

.category-banner__title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 12px
}

.category-banner__desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0
}

@media (max-width:991px) {
    .category-banner {
        min-height: 300px
    }

    .category-banner__content {
        margin-left: 30px;
        padding: 25px
    }
}

@media (max-width:768px) {
    .category-banner-section {
        padding: 0
    }

    .category-banner {
        /* flex-direction: column; */
        align-items: stretch;
        min-height: auto;
        /* background-color: #e8eef3 */
    }

    .category-banner__bg {
        position: relative;
        width: 100%;
        height: 280px;
        object-fit: cover
    }

    .category-banner__content {
        position: relative;
        margin: 0;
        margin-top: -20px;
        margin: 0 15px 15px 15px;
        max-width: 100%;
        padding: 14px 20px;
        text-align: center;
        box-shadow: none
    }

    .category-banner__title {
        font-size: 19px;
        margin-bottom: 0
    }

    .category-banner__desc {
        font-size: 14px
    }
}