#stickySection {
    position: fixed;
    transition: top 0.3s ease;
    z-index: 30;
    top: 156px;
}

.brand-category-title {
    background: url('../../img/bg-product-category.jpg') center center / cover no-repeat;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 285px 0px 80px 0px;
}

.brand-category-title.sticky-padding {
    padding: 180px 0px 80px 0px;
}

.brand-category-title .partnership-logo {
    border: 1px solid var(--bs-light);
    border-radius: 2px;
    background-color: var(--bs-white);
}

.brand-category-title img {
    height: 60px;
    object-fit: contain;
    margin: auto;
    transition: transform 0.3s ease;
}

.subcategory-section .read-more-link {
    position: relative;
    padding-left: 1rem;
    border: 2px solid var(--bs-black);
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    color: var(--bs-black);
}

.subcategory-section .hover-icon {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    padding-top: 7px;
}

.subcategory-section .hover-icon i {
    position: relative;
    z-index: 1;
    color: var(--bs-black);
    line-height: 32px;
    text-align: center;
    width: 100%;
    height: 100%;
    transition: color 0.3s ease;
}

.subcategory-section .hover-icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bs-black);
    transition: width 0.4s ease;
    z-index: 0;
}

.subcategory-section .read-more-link:hover .hover-icon::before {
    width: 100%;
    left: 0;
    right: auto;
}

.subcategory-section .read-more-link:hover .hover-icon i {
    color: #fff;
}

.subcategory-section .card img {
    height: 250px;
    object-fit: contain;
}

.subcategory-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    transition: all 0.3s ease;
    padding-top: 30px;
    /*background-color: var(--bs-grey);*/
    background: url('../../img/bg-brand-category-product.jpg') center center / cover no-repeat;
    border: 1px solid var(--bs-secondary);
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.2);
}

.subcategory-product-card img {
    transition: transform 0.35s ease;
    padding-bottom: 70px;
}

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

.subcategory-product-desc {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    padding: 18px;
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
}

.subcategory-product-card:hover .subcategory-product-desc {
    bottom: 0;
}

.subcategory-product-title {
    position: absolute;
    bottom: 0px;
    font-weight: 600;
    color: var(--bs-black);
    z-index: 5;
    background-color: var(--bs-white);
    padding: 10px;
}

.subcategory-product-card:hover .subcategory-product-title {
    opacity: 0;
}

.subcategory-product-desc a,
.subcategory-product-desc button {
    pointer-events: auto !important;
    position: relative;
    z-index: 20;
}

.subcategory-product-desc {
    z-index: 5;
    pointer-events: none;
}

.subcategory-product-desc .d-flex {
    pointer-events: auto;
    z-index: 30;
}

@media (min-width: 992px) {
    .w-lg-35 {
        width: 35% !important;
    }

    .w-lg-65 {
        width: 65% !important;
    }
}