

.category.style-10 .category-section-head-10 {
    margin-bottom: 40px;
    text-align: center;
}

/* Eyebrow: icon in front of small uppercase label, centered */
.category.style-10 .cat-eyebrow-10 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--title-color, #1a1a1a);
}

.category.style-10 .cat-eyebrow-logo-10 {
    width: auto;
    height: 16px;
    object-fit: contain;
}

.category.style-10 .category-section-head-10 h3 {
    font-weight: 500;
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 0;
    color: var(--title-color, #1a1a1a);
}
.category.style-10 .category-section-head-10 p {
    text-align: center;
    margin: 0;
}

.category.style-10 .category-slider-10 {
    overflow: hidden;
}

/* Card */
.category.style-10 .category-card-10 {
    display: block;
    text-decoration: none;
}

/* Image wrapper holds the overlay name */
.category.style-10 .category-img-10 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.category.style-10 .category-img-10 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.category.style-10 .swiper-slide:hover .category-img-10 img {
    transform: scale(1.02);
}

/* Slight darken so translucent text reads on light photos */
.category.style-10 .category-img-10::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    pointer-events: none;
}

/* Category name — transparent text centered over the image */
.category.style-10 .category-overlay-name-10 {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    pointer-events: none;

    /* slightly transparent so the image shows through the letters */
    color: rgba(255, 255, 255, .42);
    font-size: clamp(34px, 4vw, 73px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;

    -webkit-text-stroke: 1px rgba(255, 255, 255, .4);
    text-shadow: 0 2px 14px rgba(0, 0, 0, .3);
    transition: color .3s ease;
}

/* Whiter text on hover */
.category.style-10 .category-card-10:hover .category-overlay-name-10 {
    color: rgba(255, 255, 255, .95);
}

/* Organized alternating pattern: even letters raised, odd letters lowered,
   with a consistent skew on each so the row reads as a tidy zigzag. */
.category.style-10 .cat-letter-10 {
    display: inline-block;
    transform-origin: center center;
}

.category.style-10 .cat-letter-10.is-up {
    transform: translateY(-0.05em) skewX(-4deg);
}

.category.style-10 .cat-letter-10.is-down {
    transform: translateY(0.05em) skewX(4deg);
}

/* Force each word onto its own line */
.category.style-10 .cat-space-10 {
    display: block;
    width: 100%;
    height: 0;
}


@media only screen and (max-width: 767px) {
    .category.style-10 .category-section-head-10 {
        margin-bottom: 24px;
    }
    .category.style-10 .category-section-head-10 h3 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .category.style-10 .cat-eyebrow-10 {
        font-size: 12px;
    }
    .category.style-10 .category-img-10 {
        border-radius: 6px;
    }
}

