
.product-category__page-title {
    font-size: calc(1.5rem + 0.75vw);
}

.product-categories__slider-action {
    width: 38px;
    height: 38px;
    z-index: 5;
}
.product-categories__slider-action svg {
    width: 20px;
    height: 20px;
}
.product-categories__slider-action--next {
    top: 50%;
    right: 2.5%;
    transform: translate(-2.5%, -50%);
}
.product-categories__slider-action--next svg {
    transform: rotate(-180deg);
}
.product-categories__slider-action--prev {
    top: 50%;
    left: 2.5%;
    transform: translate(-2.5%, -50%);
}
.product-category__box-list {
    overflow: auto;
}
.product-category__box-item {
    background-color: #f0f0f1;
    border-radius: 8px;
    min-width: 125px;
    max-width: 200px;
    height: 150px;
}
.product-category__box-caption {
    font-size: 0.8rem;
}
.product-category__box-thumbnail {
    max-width: 180px;
    aspect-ratio: 16 / 9;
}
.product-category__highlight-box {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .product-category__highlight-box {
        width: 50%;
    }
}
.product-category__highlight-link {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.product-category__seo-content {
    text-align: justify;
    font-size: calc(0.75rem + 0.1vw);
    line-height: 2;
}
.product-category__seo-content img,
.product-category__seo-content video {
    max-width: 100%;
    height: auto;
}
.product-category__content-load-more-box {
    font-size: 1rem;
}
.product-category__content-load-more-box svg {
    width: 16px;
    height: 16px;
}
.fade-gradient {
    position: relative;
}

.fade-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, #f9f9f9);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fade-gradient.expanded::after {
    opacity: 0;
}
.content-text.collapsed {
    overflow: hidden;
    position: relative;
}

.content-text.expanded {
    overflow: visible;
}
.product-category__highlight-tooltip {
    --bs-tooltip-bg: var(--miracel-primary-color);
    --bs-tooltip-color: var(--miracel-primary-white-color);
    --bs-border-radius: 0.25rem;
}