.main-small-categories-section .container.main-category {
    width: 100%;
    max-width: 1250px;
    margin: 25px auto 0;
}
.main-small-categories-section span.section-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
}
.main-small-categories-section .categories-line {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}
.main-small-categories-section .category-block {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 15px;
	margin-left: 0;
}
.main-small-categories-section .category-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    background: none;
}
.main-small-categories-section .category-name {
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: inherit;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
	margin-right: 15px;
}
.main-small-categories-section .category-name:hover {
    color: #93191A;
	text-shadow: 1px 1px 5px #161515c7;
}
.main-small-categories-section .separator {
    font-size: 40px;
    color: inherit;
    margin: 0 5px;
    position: relative;
    z-index: 10;
}
.main-small-categories-section .category-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.main-small-categories-section .category-image img {
    max-height: 200px;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.main-small-categories-section .category-block:hover {
    z-index: 20;
}
.main-small-categories-section .category-block:hover .category-image {
    opacity: 1;
}
.main-small-categories-section .desktop-view {
    display: block;
}
.main-small-categories-section .mobile-view {
    display: none;
}

@media (max-width: 767px) {
    .main-small-categories-section .container.main-category {
        padding: 0 15px;
		margin-top: 10px;
    }
    .main-small-categories-section .desktop-view {
        display: none;
    }
    .main-small-categories-section .mobile-view {
        display: block;
    }
    .main-small-categories-section .categories-line {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
    }
    .main-small-categories-section .category-item {
        margin: 0 5px 5px;
        box-sizing: border-box;
        margin-left: 0;
    }
    .main-small-categories-section .category-link {
        font-size: 16px;
        text-align: center;
        white-space: normal;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
        color: #D5D5D5;
    }
    .main-small-categories-section .separator {
        font-size: 18px;
        margin: 0 2px;
    }
    .main-small-categories-section .category-image {
        display: none;
    }
	.main-small-categories-section span.section-title {
		font-size: 18px;
		font-weight: 500;
		line-height: 20px;
		margin-left: 10px;
	}
	
}