/* Category Shortcuts — studio catalog rows */
.tk-category-shortcuts {
    padding: 4px 0 28px;
    background: #fff;
}

.tk-category-shortcuts .container {
    max-width: 1170px;
}

.tk-cs-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 12px;
    min-height: 148px;
    background: #fff;
    border: 1px solid #ececec;
    overflow: hidden;
}

.tk-cs-row:last-child {
    margin-bottom: 0;
}

.tk-cs-banner {
    position: relative;
    flex: 0 0 250px;
    width: 250px;
    min-height: 148px;
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
}

.tk-cs-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.35) 48%,
        rgba(0, 0, 0, 0.08) 100%
    );
    pointer-events: none;
}

.tk-cs-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    max-width: none !important;
    min-height: 100%;
}

.tk-cs-banner__title {
    position: relative;
    z-index: 2;
    padding: 18px 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    max-width: 90%;
}

a.tk-cs-banner:hover {
    color: #fff;
}

a.tk-cs-banner:hover .tk-cs-banner__bg {
    transform: scale(1.03);
    transition: transform 0.35s ease;
}

.tk-cs-banner__bg {
    transition: transform 0.35s ease;
}

.tk-cs-items {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    background: #fff;
    min-width: 0;
}

.tk-cs-item {
    flex: 1 1 0;
    min-width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px 12px;
    text-align: center;
    text-decoration: none;
    color: #222;
}

.tk-cs-item:hover,
.tk-cs-item:focus {
    background: #fff;
    color: #111;
    text-decoration: none;
}

.tk-cs-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    margin-bottom: 8px;
    background: #f6f6f6;
    border: 1px solid transparent;
}

.tk-cs-item:hover .tk-cs-item__icon,
.tk-cs-item:focus .tk-cs-item__icon {
    border-color: #222;
    background: #fff;
}

.tk-cs-item__icon img {
    max-width: 78px !important;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.tk-cs-item__label {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #333;
}

@supports selector(:has(*)) {
    .tk-cs-items:has(.tk-cs-item:nth-child(9)) .tk-cs-item {
        flex: 0 0 104px;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .tk-cs-row {
        flex-direction: column;
        min-height: 0;
    }

    .tk-cs-banner {
        flex: none;
        width: 100%;
        min-height: 92px;
        align-items: center;
    }

    .tk-cs-banner__title {
        padding: 14px 16px;
        font-size: 18px;
    }

    .tk-cs-item {
        flex: 0 0 108px;
    }

    .tk-cs-item__icon {
        width: 80px;
        height: 80px;
    }
}
