

/* Start:/local/templates/sasharossi/components/bitrix/news/blog/bitrix/news.detail/.default/style.css?17800481104607*/
color: #fff;.blog-detail__wrapper {
	display: flex;
	max-width: 1200px;
	gap: 20px;
}
.blog-detail__element {
	max-width: 800px;
	flex: 1 0 0;
}
@media (min-width: 992px) {
.catalog-listing__element {
	width: 33% !important;
}
}
.blog-detail__similar {
	flex: 1 1 0;
	max-width: 380px;
	position: relative;
}
.blog-detail__element img {
    max-width: 100%;
}
ul.styled>li {
    margin-bottom: 10px;
    position: relative;
}
.blog-items__date {
    color: #bebebe;
    font-size: 13px;
}

/* Стили попапа */
.sr-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
	opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sr-popup-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sr-popup-window {
    background: linear-gradient(135deg, #fff7f2 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 45px 35px 35px 35px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 12px 40px rgba(230, 54, 121, 0.12);
    text-align: center;
    box-sizing: border-box;
    border: 1px solid rgba(255, 233, 214, 0.4);
}

.sr-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #b0b0b0;
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s ease;
}
.sr-popup-close:hover {
    color: #e63679;
}

.sr-popup-header-illustration {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    display: block;
    animation: illustrationFloat 4s ease-in-out infinite;
}
.sr-popup-header-illustration svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.sr-heart-element {
    transform-origin: 110px 45px;
    animation: heartPulse 1.8s ease-in-out infinite;
}

.sr-cdek-tag {
    transform-origin: 101px 75px;
    animation: cdekBounce 3s ease-in-out infinite;
}

.sr-ozon-tag {
    transform-origin: 19px 65px;
    animation: ozonBounce 3.5s ease-in-out infinite;
}

.sr-popup-title {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 15px 0;
}

.sr-popup-text {
    font-size: 15px;
    line-height: 1.5;
    color: #444444;
    margin: 0 0 25px 0;
}
.sr-popup-text .brand-name {
    font-weight: 700;
    color: #e63679;
}
.sr-popup-text span {
    font-weight: 700;
    color: #222222;
}

.sr-popup-actions {
    display: flex;
    gap: 12px;
}

.sr-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.sr-btn-primary {
    background-color: #e63679;
    color: #ffffff;
}
.sr-btn-primary:hover {
    background-color: #cb2664;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.sr-btn-secondary {
    background-color: #ffffff;
    color: #e63679;
    border: 2px solid #ffe9d6;
}
.sr-btn-secondary:hover {
    background-color: #ffe9d6;
    transform: translateY(-1px);
    cursor: pointer;
}

@keyframes illustrationFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes cdekBounce {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(1.5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes ozonBounce {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 992px) {
	.blog-detail__similar {
		display: none;
	}
        .sr-popup-window {
        padding: 40px 25px 25px 25px;
    }
    .sr-popup-header-illustration {
        width: 100px;
        height: 100px;
    }
    .sr-popup-title {
        font-size: 19px;
    }
    .sr-popup-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .sr-popup-actions {
        flex-direction: column;
        gap: 10px;
    }
    .sr-btn {
        width: 100%;
        height: 46px;
        flex: none;
    }

}
/* End */


/* Start:/local/templates/sasharossi/components/bitrix/news/blog/bitrix/news.list/list/style.css?1768545307393*/
.blog-items__wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	position: sticky;
	top: 10px;
	padding: 10px;
	border-radius: 16px;
	overflow: hidden;
}
.blog-items__element {
	padding: 10px 20px;
	background: #FFF;
	flex: 1 0 100%;
}
.blog-items__name {
	display: block;
	font-size: 16px;
	margin-bottom: 5px;
	color: #333;
	transition: all 200ms ease;
	font-weight: 400;
}
/* End */
/* /local/templates/sasharossi/components/bitrix/news/blog/bitrix/news.detail/.default/style.css?17800481104607 */
/* /local/templates/sasharossi/components/bitrix/news/blog/bitrix/news.list/list/style.css?1768545307393 */
