

/* Start:/bitrix/templates/FRESH/components/bitrix/breadcrumb/bread/style.css?1777290682673*/
.breadcrumbs {
    margin: 32px 0 16px;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.breadcrumbs__link,
.breadcrumbs__current {
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs__link {
    color: var(--text-secondary-light);
}

.breadcrumbs__link:hover {
    color: #111111;
}

.breadcrumbs__current {
    color: #111111;
}

.breadcrumbs__sep {
    margin: 0 10px;
    color: #c3c8cd;
    user-select: none;
}
/* End */


/* Start:/bitrix/templates/FRESH/components/bitrix/news.list/promotions/style.css?17791149124346*/
.promotions-page {
	padding: 32px 0;
}

.promotions-hero {
	position: relative;
	margin-bottom: 40px;
	padding: 32px;
    background: var(--milk);
}

.promotions-hero__eyebrow {
	position: relative;
	z-index: 1;
	margin-bottom: 14px;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}

.promotions-hero__title {
	position: relative;
	z-index: 1;
	max-width: 780px;
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 50px;
	font-weight: 300;
	line-height: 1.05;
}

.promotions-hero__text {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin-top: 18px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--grey2);
}

.promotions-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.promotion-card {
	min-width: 0;
	height: 100%;
}

.promotion-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.promotion-card__link:hover {
	border-color: rgba(120, 194, 102, 0.38);
}

.promotion-card__image-wrap {
	position: relative;
	aspect-ratio: 1.38 / 1;
	background: #f5f1ea;
	overflow: hidden;
}

.promotion-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.promotion-card__link:hover .promotion-card__image {
	transform: scale(1.045);
}

.promotion-card__image--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 30% 20%, rgba(194, 164, 102, 0.22), transparent 32%),
		linear-gradient(135deg, #f7f2e9, #ece4d7);
	color: #9b8356;
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
}

.promotion-card__badge {
	position: absolute;
	left: 18px;
	top: 18px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #2a2a2a;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.promotion-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px 24px 22px;
}

.promotion-card__label {
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
}

.promotion-card__title {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.12;
	color: #1f1f1f;
}

.promotion-card__text {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.65;
	color: #666;
}

.promotion-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 22px;
}

.promotion-card__period {
	font-size: 13px;
	line-height: 1.4;
	color: #8a8a8a;
}

.promotion-card__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	color: #1f1f1f;
}

.promotion-card__more span {
	color: var(--accent);
	transition: transform 0.2s ease;
}

.promotion-card__link:hover .promotion-card__more span {
	transform: translateX(4px);
}

.promotions-pagination {
	margin-top: 42px;
}

.promotions-empty {
	margin: 56px 0;
	padding: 42px;
	border-radius: 24px;
	background: #f8f4ee;
	text-align: center;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

@media (max-width: 1199px) {
	.promotions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.promotions-page {
		padding: 24px 0 40px;
	}

	.promotions-hero {
		margin-bottom: 24px;
		padding: 36px 24px;
	}

	.promotions-hero__title {
		font-size: 36px;
	}

	.promotions-hero__text {
		font-size: 15px;
	}

	.promotions-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.promotion-card__content {
		padding: 22px 20px;
	}

	.promotion-card__title {
		font-size: 25px;
	}

	.promotion-card__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
}
/* End */
/* /bitrix/templates/FRESH/components/bitrix/breadcrumb/bread/style.css?1777290682673 */
/* /bitrix/templates/FRESH/components/bitrix/news.list/promotions/style.css?17791149124346 */
