@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	min-width: 320px;
	overflow-x: hidden;
}

body {
	font-family: "Inter", "Segoe UI", sans-serif;
	line-height: 1.6;
	color: #1c1c1e;
	background-color: #fafaf7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}

main {
	flex: 1;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
	font-size: inherit;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	border: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
}

.parentdeco {
	position: relative;
}
.page_deco {
	position: absolute;
	inset: 0;
	/* z-index: -1; */
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
}

.deco_circle {
	z-index: -1;
	position: absolute;
	border-radius: 50%;
	will-change: transform;
	/* background: radial-gradient(circle at 38% 18%, #ff6523 0%, #ff4d00 98%); */
	/* background: #ff6523; */
	/* background: #ff6523; */
	background: radial-gradient(circle at 35% 20%, #ff8a57 0%, #ff6a3d 28%, #f25c2a 62%, #d94a1e 100%);
}
.deco_circle--1 {
	width: 340px;
	height: 340px;
	top: 4vh;
	left: -200px;
	/* filter: blur(5px); */
}
.deco_circle--2 {
	width: 200px;
	height: 200px;
	top: 4%;
	left: -115px;
	/* filter: blur(3px); */
}
.deco_circle--3 {
	width: 140px;
	height: 140px;
	top: 82%;
	left: -75px;
	/* filter: blur(2px); */
}

.deco_circle--4 {
	width: 270px;
	height: 270px;
	top: 20vh;
	right: -160px;
	/* filter: blur(5px); */
}
.deco_circle--5 {
	width: 270px;
	height: 270px;
	bottom: 15%;
	right: -155px;
	/* filter: blur(3px); */
}
.deco_circle--6 {
	width: 110px;
	height: 110px;
	top: 90%;
	right: -55px;
	/* filter: blur(2px); */
}

.main {
	position: relative;
	z-index: 2;
}
[class$="_inner"] {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.section_title {
	font-size: clamp(22px, 3.5vw, 36px);
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
}
.section_title span {
	color: #ff6523;
}

.section_subtitle {
	font-size: 15px;
	color: #6b7280;
	max-width: 540px;
	line-height: 1.6;
}

.section_header {
	margin-bottom: 20px;
}
.section_header .section_subtitle {
	margin-top: 14px;
}
.section_header--center {
	text-align: center;
}
.section_header--center .section_subtitle {
	margin: 14px auto 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1px;
	transition: all 0.15s ease;
	white-space: nowrap;
	cursor: pointer;
}
.btn > * + * {
	margin-left: 8px;
}
.btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.btn--primary {
	background: #ff6523;
	color: #ffffff;
}
.btn--primary:hover {
	background: #e0501a;
	/* transform: translateY(-1px); */
	box-shadow: 0 8px 24px rgba(255, 101, 35, 0.35);
}
.btn--primary:active {
	transform: translateY(0);
}
.btn--outline {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.06);
}
.btn--dark {
	background: #1c1c1e;
	color: #ffffff;
}
.btn--dark:hover {
	background: #3d3d3d;
	/* transform: translateY(-1px); */
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn--sm {
	padding: 10px 20px;
	font-size: 14px;
}
.btn--lg {
	padding: 13px 28px;
	font-size: 15px;
}
.btn--full {
	width: 100%;
}
@media (max-width: 399px) {
	.btn {
		padding: 12px 20px;
		font-size: 14px;
	}
	.btn--lg {
		padding: 14px 24px;
		font-size: 15px;
	}
}

section[id] {
	scroll-margin-top: 60px;
}
@media (min-width: 850px) {
	section[id] {
		scroll-margin-top: 114px;
	}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #ffffff;
	transition: box-shadow 0.25s ease;
}
.header.scrolled {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.header_main {
	border-bottom: 1px solid #e5e7eb;
}

.header_main_inner {
	display: flex;
	align-items: center;
	height: 60px;
}
@media (min-width: 850px) {
	.header_main_inner {
		height: 70px;
	}
}

.header_main_inner > * + * {
	margin-left: 14px;
}
.header_logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.header_logo img {
	height: 28px;
	width: auto;
}
@media (min-width: 850px) {
	.header_logo img {
		height: 36px;
	}
}

.header_search {
	display: none !important;
	flex: 1;
	max-width: 480px;
	position: relative;
	margin: 0 20px;
}
@media (min-width: 850px) {
	.header_search {
		display: flex;
	}
}

.header_search_input {
	width: 100%;
	height: 40px;
	padding: 0 44px 0 14px;
	background: #fafaf7;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	color: #1c1c1e;
	font-size: 14px;
	font-family: "Inter", "Segoe UI", sans-serif;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
}
.header_search_input::placeholder {
	color: #6b7280;
}
.header_search_input:focus {
	outline: none;
	background: #ffffff;
	border-color: #1c1c1e;
}

.header_search_btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	transition: color 0.15s ease;
}
.header_search_btn:hover {
	color: #1c1c1e;
}
.header_search_btn svg {
	width: 18px;
	height: 18px;
}

.header_actions {
	display: flex;
	align-items: center;
	margin-left: auto;
}
.header_actions > * + * {
	margin-left: 8px;
}

.header_phone {
	display: none;
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1e;
	transition: color 0.15s ease;
	white-space: nowrap;
	margin-right: 4px;
}
@media (min-width: 1024px) {
	.header_phone {
		display: block;
	}
}
.header_phone:hover {
	color: #ff6523;
}

.wishlist_btn,
.cart_btn {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 9999px;
	background: #fafaf7;
	border: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1c1c1e;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
	flex-shrink: 0;
}
.wishlist_btn:hover,
.cart_btn:hover {
	background: #e5e7eb;
	border-color: transparent;
}
.wishlist_btn svg,
.cart_btn svg {
	width: 20px;
	height: 20px;
}

.wishlist_btn {
	display: none !important;
}

.wishlist_badge,
.cart_badge {
	position: absolute;
	top: 6px;
	right: 6px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: #ff6523;
	border-radius: 9999px;
	font-size: 11px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: transform 0.15s ease;
}
.wishlist_badge.visible,
.cart_badge.visible {
	transform: scale(1);
}

.burger_btn {
	display: flex;
	flex-direction: column;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	color: #1c1c1e;
}
@media (min-width: 850px) {
	.burger_btn {
		display: none;
	}
}
.burger_btn span + span {
	margin-top: 5px;
}
.burger_btn span {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 9999px;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}
.burger_btn.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.burger_btn.open span:nth-child(2) {
	opacity: 0;
}
.burger_btn.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.header_nav {
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	background: #1c1c1e;
	padding: 20px 20px 32px;
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
	z-index: 99;
	max-height: calc(100dvh - 60px);
	overflow-y: auto;
}
.header_nav.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}
@media (min-width: 850px) {
	.header_nav {
		position: static;
		background: #ffffff;
		border-bottom: 1px solid #e5e7eb;
		padding: 0;
		transform: none;
		opacity: 1;
		pointer-events: all;
		max-height: none;
		overflow-y: visible;
		z-index: auto;
	}
}


.menu {
	display: flex;
	flex-direction: column;
	list-style: none;
}
@media (min-width: 850px) {
	.menu {
		flex-direction: row;
		align-items: stretch;
	}
}

.menu-item {
	position: relative;
}

.nav_link {
	display: flex;
	align-items: center;
	height: auto;
	padding: 8px 0;
	font-size: 17px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition:
		color 0.15s ease,
		background 0.15s ease;
}
.nav_link:hover,
.nav_link.active {
	color: #ff6523;
	background: transparent;
}
@media (min-width: 850px) {
	.nav_link {
		height: 44px;
		padding: 0 14px;
		font-size: 14px;
		color: #6b7280;
		border-bottom: none;
		white-space: nowrap;
	}
	.nav_link:hover,
	.nav_link.active {
		color: #1c1c1e;
		background: rgba(28, 28, 30, 0.05);
	}
}

@media (min-width: 850px) {
	.menu-item-has-children > .nav_link::after {
		content: "";
		display: inline-block;
		width: 7px;
		height: 7px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 0.15s ease;
		flex-shrink: 0;
		margin-left: 6px;
	}
}

@media (min-width: 850px) {
	.menu-item-has-children:hover > .nav_link::after {
		transform: rotate(-135deg) translateY(2px);
	}
}

.sub-menu {
	list-style: none;
	display: block;
	position: static;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	border-top: none;
	min-width: 0;
	overflow: visible;
}
.sub-menu .menu-item a {
	display: block;
	padding: 8px 0 8px 14px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	transition: color 0.15s ease;
}
.sub-menu .menu-item a:hover {
	color: #ff6523;
	background: transparent;
}
@media (min-width: 850px) {
	.sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 200px;
		background: #ffffff;
		border-radius: 0 0 12px 12px;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
		overflow: hidden;
		border-top: 2px solid #ff6523;
	}
	.sub-menu .menu-item a {
		padding: 10px 14px;
		font-size: 14px;
		color: #1c1c1e;
		white-space: nowrap;
	}
	.sub-menu .menu-item a:hover {
		background: rgba(28, 28, 30, 0.05);
		color: #1c1c1e;
	}
}

@media (min-width: 850px) {
	.menu-item-has-children:hover .sub-menu {
		display: block;
	}
}

.modal_overlay {
	position: fixed;
	inset: 0;
	background: rgba(28, 28, 30, 0.55);
	backdrop-filter: blur(4px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.modal_overlay.open {
	opacity: 1;
	pointer-events: all;
}

.modal {
	background: #ffffff;
	border-radius: 20px;
	padding: 48px;
	max-width: 480px;
	width: 100%;
	text-align: center;
	transform: translateY(20px) scale(0.97);
	transition: transform 0.25s ease;
	position: relative;
}
.modal_overlay.open .modal {
	transform: translateY(0) scale(1);
}

.modal_close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	background: #fafaf7;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	transition: background 0.15s ease;
}
.modal_close:hover {
	background: #e5e7eb;
	color: #1c1c1e;
}
.modal_close svg {
	width: 18px;
	height: 18px;
}

.modal_icon {
	width: 72px;
	height: 72px;
	border-radius: 9999px;
	background: rgba(255, 101, 35, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.modal_icon svg {
	width: 36px;
	height: 36px;
	color: #ff6523;
}

.modal_title {
	font-size: 22px;
	font-weight: 800;
	color: #1c1c1e;
	margin-bottom: 8px;
}

.modal_text {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.6;
}

.cart_overlay {
	position: fixed;
	inset: 0;
	background: rgba(28, 28, 30, 0.5);
	z-index: 300;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.cart_overlay.open {
	opacity: 1;
	pointer-events: all;
}

.cart_panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 420px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.25s ease;
}
.cart_overlay.open .cart_panel {
	transform: translateX(0);
}
@media (max-width: 399px) {
	.cart_panel {
		max-width: 100%;
	}
}

.cart_panel_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.cart_panel_title {
	font-size: 20px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.2px;
}

.cart_panel_count {
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
}

.cart_loader {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #e5e7eb;
	border-top-color: #ff6523;
	border-radius: 50%;
	flex-shrink: 0;
	opacity: 0;
	animation: cart_spin 0.65s linear infinite;
	transition: opacity 0.15s ease;
}
.cart_loader.active {
	opacity: 1;
}
@keyframes cart_spin {
	to {
		transform: rotate(360deg);
	}
}

.cart_panel_close {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: #fafaf7;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	transition:
		background 0.15s ease,
		color 0.15s ease;
}
.cart_panel_close:hover {
	background: #e5e7eb;
	color: #1c1c1e;
}
.cart_panel_close svg {
	width: 18px;
	height: 18px;
}

.cart_panel_body {
	flex: 1;
	overflow-y: auto;
	padding: 14px 20px;
	-webkit-overflow-scrolling: touch;
}

.cart_empty_state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 48px 0;
	color: #6b7280;
	text-align: center;
}

.cart_empty_state > * + * {
	margin-top: 14px;
}
.cart_empty_icon {
	font-size: 64px;
	opacity: 0.5;
}

.cart_empty_text {
	font-size: 16px;
	font-weight: 600;
	color: #1c1c1e;
}

.cart_empty_sub {
	font-size: 14px;
}

.cart_items {
	display: flex;
	flex-direction: column;
}
.cart_items > * + * {
	margin-top: 14px;
}

.cart_item {
	display: flex;
	align-items: center;
	padding: 14px;
	background: #fafaf7;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.cart_item > * + * {
	margin-left: 14px;
}
.cart_item_image {
	width: 60px;
	height: 60px;
	border-radius: 6px;
	background: linear-gradient(135deg, #f0f0ea, #e8e8e0);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}
.cart_item_image img {
	position: absolute;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.cart_item_info {
	flex: 1;
	min-width: 0;
}

.cart_item_name {
	font-size: 14px;
	font-weight: 700;
	color: #1c1c1e;
	line-height: 1.3;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cart_item_price {
	font-size: 13px;
	font-weight: 600;
	color: #1c1c1e;
}

.cart_item_controls {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.cart_item_controls > * + * {
	margin-left: 6px;
}

.cart_qty_btn {
	width: 30px;
	height: 30px;
	border-radius: 9999px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1c1c1e;
	font-size: 16px;
	font-weight: 700;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
	line-height: 1;
}
.cart_qty_btn:hover {
	background: #1c1c1e;
	border-color: #1c1c1e;
	color: #ffffff;
}
.cart_qty_btn--minus:hover {
	background: #ef4444;
	border-color: #ef4444;
	color: #ffffff;
}

.cart_item_qty {
	font-size: 15px;
	font-weight: 700;
	color: #1c1c1e;
	min-width: 20px;
	text-align: center;
}

.cart_item_delete {
	width: 30px;
	height: 30px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	transition:
		color 0.15s ease,
		background 0.15s ease;
	margin-left: 4px;
}
.cart_item_delete svg {
	width: 15px;
	height: 15px;
}
.cart_item_delete:hover {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.08);
}

.cart_panel_footer {
	padding: 20px;
	border-top: 1px solid #e5e7eb;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}
.cart_panel_footer > * + * {
	margin-top: 14px;
}

.cart_total_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cart_total_label {
	font-size: 15px;
	color: #6b7280;
}

.cart_total_value {
	font-size: 20px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
}

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: #ffffff;
	overflow: hidden;
	padding-top: 60px;
}
@media (min-width: 850px) {
	.hero {
		padding-top: 114px;
	}
}
@media (max-width: 850px) {
	.hero .page_deco {
		display: none;
	}
}

.hero_bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 75% 50%, rgba(255, 101, 35, 0.07) 0%, transparent 70%),
		radial-gradient(ellipse 40% 40% at 20% 80%, rgba(28, 28, 30, 0.04) 0%, transparent 60%);
}

.hero_inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
	padding-top: 36px;
	padding-bottom: 36px;
	width: 100%;
}
@media (min-width: 1024px) {
	.hero_inner {
		grid-template-columns: 1fr 1fr;
		min-height: calc(100vh - 114px);
		padding-top: 48px;
		padding-bottom: 48px;
	}
}

.hero_content {
	color: #1c1c1e;
	min-width: 0;
}

.hero_visual {
	position: relative;
	min-width: 0;
	overflow: hidden;
	height: 260px;
}
@media (min-width: 1024px) {
	.hero_visual {
		height: auto;
		align-self: stretch;
	}
}

.hero_glow {
	position: absolute;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255, 101, 35, 0.18) 0%, rgba(255, 101, 35, 0.05) 50%, transparent 72%);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: blur(48px);
	pointer-events: none;
}

.hero_swiper {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.hero_swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.hero_bottles {
	max-width: 100%;
	max-height: 220px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.12));
}
@media (min-width: 1024px) {
	.hero_bottles {
		max-height: 480px;
	}
}

.hero_badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 101, 35, 0.1);
	border: 1px solid rgba(255, 101, 35, 0.25);
	border-radius: 9999px;
	padding: 6px 16px;
	margin-bottom: 20px;
}
.hero_badge > * + * {
	margin-left: 8px;
}
.hero_badge span {
	font-size: 13px;
	font-weight: 600;
	color: #e0501a;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.hero_badge .badge_dot {
	width: 6px;
	height: 6px;
	background: #ff6523;
	border-radius: 9999px;
	animation: pulse 2s infinite;
	flex-shrink: 0;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(0.8);
	}
}
.hero_title {
	font-size: clamp(28px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.5px;
	color: #1c1c1e;
	margin-bottom: 14px;
}
.hero_title .accent {
	color: #ff6523;
	display: block;
}

.hero_desc {
	font-size: 15px;
	line-height: 1.6;
	color: #6b7280;
	max-width: 460px;
	margin-bottom: 20px;
}

.hero_actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -14px 0 0 -14px;
}
.hero_actions > * {
	margin: 14px 0 0 14px;
}

.hero .btn--outline {
	color: #1c1c1e;
	border-color: rgba(28, 28, 30, 0.3);
}
.hero .btn--outline:hover {
	border-color: rgba(28, 28, 30, 0.65);
	background: rgba(28, 28, 30, 0.05);
}

.hero_stats {
	display: flex;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}
.hero_stats > * + * {
	margin-left: 20px;
}
@media (max-width: 399px) {
	.hero_stats {
		margin-top: 14px;
		padding-top: 14px;
	}
	.hero_stats > * + * {
		margin-left: 14px;
	}
}

.hero_stat {
	display: flex;
	flex-direction: column;
}
.hero_stat > * + * {
	margin-top: 2px;
}

.stat_value {
	font-size: 22px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
}
@media (min-width: 480px) {
	.stat_value {
		font-size: 24px;
	}
}

.stat_label {
	font-size: 12px;
	color: #6b7280;
	font-weight: 500;
}

.categories {
	padding: 48px 0;
	background: #ffffff;
}
@media (max-width: 399px) {
	.categories {
		padding: 32px 0;
	}
}


.categories_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}
@media (min-width: 480px) {
	.categories_grid {
		gap: 14px;
	}
}
@media (min-width: 850px) {
	.categories_grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

.category_card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 3/4;
	cursor: pointer;
}
@media (min-width: 850px) {
	.category_card {
		aspect-ratio: 2/3;
		border-radius: 20px;
	}
}
.category_card:hover .category_card_image {
	transform: scale(1.06);
}
.category_card:hover .category_card_overlay {
	opacity: 1;
}
.category_card:hover .category_card_btn {
	opacity: 1;
	transform: translateY(0);
}

.category_card_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.category_card_placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease;
}
.category_card_placeholder--syrups {
	background: linear-gradient(135deg, #3d3d3d, #1c1c1e);
}
.category_card_placeholder--toppings {
	background: linear-gradient(135deg, #8b1a1a, #c0392b);
}
.category_card_placeholder--concentrates {
	background: linear-gradient(135deg, #1a4b7a, #2980b9);
}
.category_card_placeholder--coffee {
	background: linear-gradient(135deg, #3e1f00, #7b4f1f);
}
.category_card_placeholder .category_icon {
	font-size: 56px;
	opacity: 0.85;
}

.category_card_gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(28, 28, 30, 0.8) 0%, rgba(28, 28, 30, 0.15) 50%, transparent 100%);
}

.category_card_overlay {
	position: absolute;
	inset: 0;
	background: rgba(28, 28, 30, 0.3);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.category_card_body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 14px;
	color: #ffffff;
}
@media (min-width: 850px) {
	.category_card_body {
		padding: 20px;
	}
}

.category_card_title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 3px;
}
@media (min-width: 850px) {
	.category_card_title {
		font-size: 22px;
	}
}

.category_card_count {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.category_card_btn {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #ff6523;
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}
.category_card_btn > * + * {
	margin-left: 6px;
}
.category_card_btn svg {
	width: 14px;
	height: 14px;
}

.featured {
	padding: 48px 0;
	background: #fafaf7;
}
@media (max-width: 399px) {
	.featured {
		padding: 32px 0;
	}
}


.featured_header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
	flex-wrap: wrap;
	margin-top: -14px;
	margin-left: -14px;
}
.featured_header > * {
	margin-top: 14px;
	margin-left: 14px;
}

.products_grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}
@media (min-width: 400px) {
	.products_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 850px) {
	.products_grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}
}

.catalog_section_inner ul.products,
#price_filter_results ul.products {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 400px) {
	.catalog_section_inner ul.products,
	#price_filter_results ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 850px) {
	.catalog_section_inner ul.products,
	#price_filter_results ul.products {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
}
.catalog_section_inner ul.products li.product,
#price_filter_results ul.products li.product {
	margin: 0;
}

.product_card {
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	transition:
		box-shadow 0.25s ease,
		transform 0.25s ease;
	border: 1px solid #e5e7eb;
}
.product_card_title a::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
.product_card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}
.product_card:hover .product_card_image_wrap img {
	transform: scale(1.04);
}
.product_card:hover .product_card_overlay {
	opacity: 1;
}

.product_card_image_wrap {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #fafaf7;
}
.product_card_image_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.4s ease;
}

.product_card_placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0f0ea, #e8e8e0);
	font-size: 48px;
}
@media (min-width: 480px) {
	.product_card_placeholder {
		font-size: 56px;
	}
}

.product_card_overlay {
	position: absolute;
	inset: 0;
	background: rgba(28, 28, 30, 0.12);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.product_card_badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #cdcdcd;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 9999px;
	letter-spacing: 0.2px;
	/* text-transform: uppercase; */
	text-align: center;
}

.product_card_badges {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.product_card_badges > * + * {
	margin-top: 4px;
}
.product_card_badges .product_card_badge {
	position: static;
}

.product_card_body {
	padding: 12px;
}
@media (min-width: 480px) {
	.product_card_body {
		padding: 14px;
	}
}

.product_card_category {
	font-size: 11px;
	font-weight: 600;
	color: #3d3d3d;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 3px;
}

.product_card_title {
	font-size: 14px;
	font-weight: 700;
	color: #1c1c1e;
	margin-bottom: 2px;
	line-height: 1.3;
}
@media (min-width: 480px) {
	.product_card_title {
		font-size: 15px;
	}
}

.product_card_volume {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 10px;
}

.product_card_footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product_card_footer > * + * {
	margin-left: 8px;
}

.product_card_price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 15px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.2px;
}
.product_card_price span {
	font-size: 12px;
	font-weight: 500;
	color: #6b7280;
}

.add_to_cart_btn {
	position: relative;
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	background: #ff6523;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition:
		background 0.15s ease,
		transform 0.15s ease;
}
.add_to_cart_btn svg {
	width: 16px;
	height: 16px;
}
.add_to_cart_btn:hover {
	background: #ff6523;
	color: #ffffff;
	transform: scale(1.08);
}
.add_to_cart_btn.added {
	background: #ff6523;
	color: #ffffff;
}

.advantages {
	padding: 48px 0;
	background: #1c1c1e;
	position: relative;
	overflow: hidden;
}
@media (max-width: 399px) {
	.advantages {
		padding: 32px 0;
	}
}
.advantages::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 101, 35, 0.07) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.advantages_inner {
	position: relative;
	z-index: 1;
}

.advantages_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
@media (min-width: 850px) {
	.advantages_grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1280px) {
	.advantages_grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

.advantage_item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition:
		background 0.25s ease,
		border-color 0.25s ease;
}
.advantage_item > * + * {
	margin-top: 8px;
}
@media (min-width: 480px) {
	.advantage_item {
		padding: 20px;
	}
	.advantage_item > * + * {
		margin-top: 14px;
	}
}
.advantage_item:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 101, 35, 0.25);
}

.advantage_icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 101, 35, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.advantage_icon svg {
	width: 22px;
	height: 22px;
	color: #ff6523;
}
.advantage_icon img {
	width: 22px;
	height: 22px;
}

.advantage_title {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

.advantage_desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.5;
}

.about {
	padding: 48px 0;
	background: #ffffff;
}
@media (max-width: 399px) {
	.about {
		padding: 32px 0;
	}
}

.about_inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}
@media (min-width: 1024px) {
	.about_inner {
		grid-template-columns: 1fr 1fr;
	}
}

.about_image_wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.about_image_wrap {
		order: -1;
	}
}

.about_image_placeholder {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #1c1c1e, #3d3d3d);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	border-radius: 20px;
}

.about_image_card {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: #ffffff;
	border-radius: 12px;
	padding: 14px 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
}
.about_image_card > * + * {
	margin-left: 14px;
}

.about_card_value {
	font-size: 28px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
}

.about_card_label {
	font-size: 13px;
	color: #6b7280;
	max-width: 80px;
	line-height: 1.3;
}

.about_content {
	display: flex;
	flex-direction: column;
}
.about_content > * + * {
	margin-top: 20px;
}

.about_list {
	display: flex;
	flex-direction: column;
}
.about_list > * + * {
	margin-top: 8px;
}

.about_list_item {
	display: flex;
	align-items: flex-start;
	font-size: 15px;
	color: #6b7280;
	line-height: 1.5;
}
.about_list_item::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background: #ff6523;
	flex-shrink: 0;
	margin-top: 7px;
	margin-right: 14px;
}

.cta {
	padding: 48px 0;
	background: #fafaf7;
}
@media (max-width: 399px) {
	.cta {
		padding: 32px 0;
	}
}

.cta_inner {
	max-width: 680px;
	text-align: center;
}

.cart_summary_block {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 14px;
	margin-bottom: 14px;
	text-align: left;
	display: none;
}
.cart_summary_block.visible {
	display: block;
}

.cart_summary_title {
	font-size: 13px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 8px;
}

.cart_summary_list {
	display: flex;
	flex-direction: column;
}
.cart_summary_list > * + * {
	margin-top: 6px;
}

.cart_summary_item {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #1c1c1e;
}

.cart_summary_total {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 700;
	color: #1c1c1e;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #e5e7eb;
}

.cta_form {
	display: flex;
	flex-direction: column;
	margin-top: 32px;
}
.cta_form > * + * {
	margin-top: 14px;
}
@media (min-width: 480px) {
	.cta_form {
		flex-direction: row;
	}
	.cta_form > * + * {
		margin-top: 0;
		margin-left: 14px;
	}
}

.form_group {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}
.form_group > * + * {
	margin-top: 4px;
}

.form_input {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e5e7eb;
	border-radius: 9999px;
	font-size: 15px;
	color: #1c1c1e;
	background: #ffffff;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}
.form_input::placeholder {
	color: #6b7280;
}
.form_input:focus {
	border-color: #1c1c1e;
	box-shadow: 0 0 0 3px rgba(28, 28, 30, 0.08);
}
.form_input.error {
	border-color: #ef4444;
}

.form_error {
	font-size: 12px;
	color: #ef4444;
	padding-left: 16px;
	display: none;
	position: absolute;
	bottom: 0;
	transform: translate(0, 100%);
}
.form_error.visible {
	display: block;
}

.cta_note {
	margin-top: 14px;
	font-size: 13px;
	color: #6b7280;
}
.cta_note a {
	color: #1c1c1e;
	text-decoration: underline;
	text-underline-offset: 2px;
}

fieldset.hidden-fields-container {
	display: none;
}

.cta .wpcf7-form {
	display: flex;
	flex-direction: column;
	margin-top: 32px;
	position: relative;
}
.cta .wpcf7-form > * + * {
	margin-top: 14px;
}
@media (min-width: 480px) {
	.cta .wpcf7-form {
		flex-direction: row;
	}
	.cta .wpcf7-form > * + * {
		margin-top: 0;
		margin-left: 14px;
	}
}

.cta .boxforinp {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}
.cta .boxforsubmit {
	flex: none;
	position: relative;
}

.cta .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	position: relative;
}

.cta .wpcf7-not-valid-tip {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 100%);
	font-size: 11px;
	color: #ef4444;
	white-space: nowrap;
	pointer-events: none;
}

.cta .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e5e7eb;
	border-radius: 9999px;
	font-size: 15px;
	color: #1c1c1e;
	background: #ffffff;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}
.cta .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
	color: #6b7280;
}
.cta .wpcf7-form-control:not(.wpcf7-submit):focus {
	border-color: #1c1c1e;
	box-shadow: 0 0 0 3px rgba(28, 28, 30, 0.08);
	outline: none;
}
.cta .wpcf7-not-valid {
	border-color: #ef4444;
}

.cta .wpcf7-submit {
	padding: 14px 24px;
	border: 2px solid transparent;
	font-size: 15px;
}

.cta .wpcf7-spinner {
	position: absolute;
	right: -28px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
}

.cta .wpcf7-form .wpcf7-response-output {
	position: absolute;
	top: -5px;
	transform: translateY(-100%);
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
	border: none;
	font-size: 13px;
	color: #ef4444;
	text-align: center;
}
.cta .wpcf7-form.sent .wpcf7-response-output {
	color: #398f14;
}

.footer {
	position: relative;
	z-index: 2;
	margin-top: 100px;
	background: #1c1c1e;
	color: rgba(255, 255, 255, 0.75);
	padding: 40px 0 14px;
}
@media (max-width: 399px) {
	.footer {
		padding: 32px 0 14px;
	}
}


.footer_top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 480px) {
	.footer_top {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}
@media (min-width: 1024px) {
	.footer_top {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
	}
}

.footer_brand {
	display: flex;
	flex-direction: column;
}
.footer_brand > * + * {
	margin-top: 14px;
}

.footer_logo {
	display: flex;
	align-items: center;
}
.footer_logo > * + * {
	margin-left: 8px;
}
.footer_logo span {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.3px;
}

.footer_desc {
	font-size: 14px;
	line-height: 1.65;
	max-width: 280px;
}

.footer_socials {
	display: flex;
}
.footer_socials > * + * {
	margin-left: 8px;
}

.social_link {
	width: 38px;
	height: 38px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.65);
	transition:
		background 0.15s ease,
		color 0.15s ease;
}
.social_link svg {
	width: 18px;
	height: 18px;
}
.social_link:hover {
	background: #e4e4e4;
	color: #ffffff;
}

.footer_col_title {
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin-bottom: 14px;
}

.footer_nav_list {
	display: flex;
	flex-direction: column;
}
.footer_nav_list > * + * {
	margin-top: 8px;
}

.footer_nav_link {
	font-size: 14px;
	transition: color 0.15s ease;
}
.footer_nav_link:hover {
	color: #ffffff;
}

.footer_contacts {
	display: flex;
	flex-direction: column;
}
.footer_contacts > * + * {
	margin-top: 14px;
}

.footer_contact_item {
	display: flex;
	flex-direction: column;
}
.footer_contact_item > * + * {
	margin-top: 2px;
}

.footer_contact_label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 600;
}

.footer_contact_value {
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	transition: color 0.15s ease;
}
.footer_contact_value:hover {
	color: #ff6523;
}

.footer_bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	font-size: 13px;
	margin-top: -14px;
	margin-left: -14px;
}
.footer_bottom > * {
	margin-top: 14px;
	margin-left: 14px;
}

.footer_copy {
	color: rgba(255, 255, 255, 0.35);
}

.footer_bottom_links {
	display: flex;
}
.footer_bottom_links > * + * {
	margin-left: 20px;
}

.footer_bottom_link {
	color: rgba(255, 255, 255, 0.4);
	transition: color 0.15s ease;
}
.footer_bottom_link:hover {
	color: rgba(255, 255, 255, 0.75);
}

.fade_in {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}
.fade_in.visible {
	opacity: 1;
	transform: translateY(0);
}

main[class$="_main"] {
	padding-top: 60px;
}

@media (min-width: 850px) {
	main[class$="_main"] {
		padding-top: 116px;
	}
}
/* ---- Catalog / Category page ---- */

.catalog_main {
	padding-top: 60px;
}
@media (min-width: 850px) {
	.catalog_main {
		padding-top: 116px;
	}
}

.catalog_hero {
	padding: 32px 0 24px;
	background: #fafaf7;
}

.catalog_hero_inner {
	display: flex;
	flex-direction: column;
}
.catalog_hero_inner > * + * {
	margin-top: 8px;
}

.catalog_title {
	font-size: 28px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
	line-height: 1.2;
}
@media (min-width: 850px) {
	.catalog_title {
		font-size: 36px;
	}
}

.cat_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 6px 0 0 -6px;
}
.cat_nav_link {
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 14px;
	margin: 6px 0 0 6px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
	color: #1c1c1e;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	white-space: nowrap;
	transition:
		background 0.15s ease,
		color 0.15s ease,
		border-color 0.15s ease;
}
.cat_nav_link:hover {
	background: #f3f4f6;
	border-color: #d1d5db;
}
.cat_nav_link--active {
	background: #1c1c1e;
	color: #ffffff;
	border-color: #1c1c1e;
	font-weight: 600;
}
.cat_nav_link--active:hover {
	background: #1c1c1e;
	border-color: #1c1c1e;
}
.cat_nav--tags {
	margin-top: 4px;
}
span.cat_nav_link {
	cursor: default;
}
.cat_nav_count {
	opacity: 0.6;
	margin-left: 3px;
	font-size: 13px;
}
.cat_nav_link--active .cat_nav_count {
	opacity: 0.75;
}
@media (min-width: 850px) {
	.cat_nav {
		justify-content: flex-start;
		margin-top: 8px;
	}
}

.woocommerce-breadcrumb {
	font-size: 13px;
	color: #6b7280;
}
.woocommerce-breadcrumb a {
	color: #6b7280;
	transition: color 0.15s ease;
}
.woocommerce-breadcrumb a:hover {
	color: #1c1c1e;
}

.catalog_section {
	padding: 100px 0 70px;
	background: #fafaf7;
}
@media (max-width: 849px) {
	.catalog_section {
		padding-top: 0;
	}
}
@media (max-width: 399px) {
	.catalog_section {
		padding: 0 0 32px;
	}
}


/* Лейаут: сайдбар с фильтрами + контент с товарами */
.catalog_sidebar {
	padding-top: 30px;
}
@media (max-width: 849px) {
	.catalog_sidebar {
		margin-bottom: 20px;
	}
}
@media (min-width: 850px) {
	.catalog_layout {
		display: grid;
		grid-template-columns: 1fr 3fr;
		gap: 24px;
		align-items: start;
	}
}

.catalog_content {
	position: relative;
}

/* WooCommerce price inside product card */
.product_card_price .woocommerce-Price-amount {
	font-size: 15px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.2px;
}
.product_card_price .woocommerce-Price-currencySymbol {
	font-size: 12px;
	font-weight: 500;
	color: #6b7280;
}
.product_card_price del {
	font-size: 12px;
	font-weight: 400;
	color: #9ca3af;
	margin-right: 4px;
}
.product_card_price del .woocommerce-Price-amount {
	font-size: 12px;
	font-weight: 400;
	color: #9ca3af;
	opacity: 0.7;
	letter-spacing: 0;
}
.product_card_price ins {
	text-decoration: none;
}

/* Pagination */
.woocommerce-pagination {
	margin-top: 32px;
}
.woocommerce-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.woocommerce-pagination ul.page-numbers > li + li {
	margin-left: 6px;
}
.woocommerce-pagination li .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1e;
	background: #ffffff;
	text-decoration: none;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}
.woocommerce-pagination li a.page-numbers:hover {
	background: #f3f4f6;
}
.woocommerce-pagination li .page-numbers.current {
	background: #1c1c1e;
	color: #ffffff;
}

.catalog_txt{
	margin-bottom: 60px;
}

/* ---- Прочие WooCommerce страницы (checkout, my-account, etc.) ---- */
.woo_main {
	padding-top: 60px;
	min-height: 60vh;
}
@media (min-width: 850px) {
	.woo_main {
		padding-top: 116px;
	}
}

/* ---- Cart page ---- */
.cart_main {
	padding-top: 60px;
}
@media (min-width: 850px) {
	.cart_main {
		padding-top: 116px;
	}
}

.cart_hero {
	padding: 32px 0 24px;
	background: #fafaf7;
}

.cart_hero_inner {
	display: flex;
	flex-direction: column;
}
.cart_hero_inner > * + * {
	margin-top: 8px;
}

.cart_section {
	padding: 24px 0 48px;
	background: #fafaf7;
}


/* WooCommerce content wrappers reset inside cart */
.cart_section_inner .woocommerce,
.cart_section_inner article,
.cart_section_inner .entry-content {
	margin: 0;
	padding: 0;
}

/* Two-column layout: items | sidebar */
.cart_layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}
@media (min-width: 900px) {
	.cart_layout {
		grid-template-columns: 1fr 320px;
	}
}

/* Cart form / items block */
.cart_items_wrap {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
}

/* Desktop column header */
.cart_items_header {
	display: none;
}
@media (min-width: 700px) {
	.cart_items_header {
		display: grid;
		grid-template-columns: 88px 1fr 100px 130px 100px 40px;
		gap: 16px;
		padding: 12px 20px;
		background: #fafaf7;
		font-size: 11px;
		font-weight: 600;
		color: #6b7280;
		text-transform: uppercase;
		letter-spacing: 0.8px;
	}
}

/* Cart item row */
@media (max-width: 699px) {
	.wc_cart_item {
		display: grid;
		grid-template-columns: 80px 1fr 1fr;
		gap: 6px 10px;
		padding: 10px;
		position: relative;
	}
	.wc_cart_item_thumb {
		grid-column: 1;
		grid-row: 1 / 3;
		align-self: center;
	}
	.wc_cart_item_info {
		grid-column: 2 / 4;
		grid-row: 1;
		padding-right: 28px;
	}
	.wc_cart_item_qty {
		grid-column: 2;
		grid-row: 2;
		align-self: center;
	}
	.wc_cart_item_subtotal {
		grid-column: 3;
		grid-row: 2;
		align-self: center;
		text-align: right;
	}
	.wc_cart_item_remove {
		position: absolute;
		top: 10px;
		right: 10px;
	}
}
/* border-bottom: 1px solid #e5e7eb; */
/* } */
.wc_cart_item:last-child {
	border-bottom: none;
}
@media (min-width: 700px) {
	.wc_cart_item {
		display: grid;
		grid-template-columns: 88px 1fr 100px 130px 100px 40px;
		align-items: center;
		gap: 16px;
		padding: 16px 20px;
	}
}

/* Thumbnail */
.wc_cart_item_thumb {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	background: #fafaf7;
	flex-shrink: 0;
}
.wc_cart_item_thumb a {
	display: block;
	width: 100%;
	height: 100%;
}
.wc_cart_item_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 700px) {
	.wc_cart_item_thumb {
		width: 88px;
		height: 88px;
	}
}

/* Info (name + mobile price) */
.wc_cart_item_info {
	flex: 1;
	min-width: 0;
}

.wc_cart_item_name {
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1e;
	line-height: 1.3;
}
.wc_cart_item_name a {
	color: inherit;
	transition: color 0.15s ease;
}
.wc_cart_item_name a:hover {
	color: #ff6523;
}

.wc_cart_item_price_mobile {
	font-size: 13px;
	color: #6b7280;
	margin-top: 4px;
}
@media (min-width: 700px) {
	.wc_cart_item_price_mobile {
		display: none;
	}
}

/* Unit price (desktop only) */
.wc_cart_item_price {
	display: none;
	font-size: 14px;
	color: #6b7280;
}
@media (min-width: 700px) {
	.wc_cart_item_price {
		display: block;
	}
}

/* Quantity input */
.wc_cart_item_qty {
	flex: none;
	width: fit-content;
}
.wc_cart_item_qty .qty_stepper {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	border: 2px solid #e5e7eb;
	border-radius: 9999px;
	background: #ffffff;
	overflow: hidden;
	transition: border-color 0.15s ease;
}
.wc_cart_item_qty .qty_stepper:focus-within {
	border-color: #1c1c1e;
}
.wc_cart_item_qty .qty_btn {
	width: 36px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	color: #6b7280;
	background: transparent;
	border: none;
	cursor: pointer;
	transition:
		color 0.15s ease,
		background 0.15s ease;
	flex-shrink: 0;
	line-height: 1;
	font-family: inherit;
}
.wc_cart_item_qty .qty_btn:hover {
	color: #ff6523;
	background: #fff5f0;
}
.wc_cart_item_qty .qty_btn:disabled {
	opacity: 0.35;
	cursor: default;
}
.wc_cart_item_qty input.qty {
	width: 44px;
	height: 38px;
	padding: 0;
	border: none;
	border-left: 1px solid #e5e7eb;
	border-right: 1px solid #e5e7eb;
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1e;
	text-align: center;
	background: #ffffff;
	font-family: inherit;
	outline: none;
	-moz-appearance: textfield;
}
.wc_cart_item_qty input.qty::-webkit-inner-spin-button,
.wc_cart_item_qty input.qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
@media (max-width: 699px) {
	.wc_cart_item_qty .qty_btn {
		width: 26px;
		height: 28px;
		font-size: 16px;
	}
	.wc_cart_item_qty input.qty {
		width: 32px;
		height: 28px;
		font-size: 12px;
	}
}

/* Subtotal */
.wc_cart_item_subtotal {
	font-size: 15px;
	font-weight: 700;
	color: #1c1c1e;
	letter-spacing: -0.2px;
}

/* Remove button */
.wc_cart_item_remove {
	flex: none;
}
.wc_cart_item_remove .remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 9999px;
	font-size: 20px;
	line-height: 1;
	color: #9ca3af;
	transition:
		color 0.15s ease,
		background 0.15s ease;
}
.wc_cart_item_remove .remove:hover {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.08);
}

/* Coupon + Update row */
.cart_form_actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 14px 20px;
	border-top: 1px solid #e5e7eb;
	background: #fafaf7;
	margin-top: -12px;
	margin-left: -12px;
}
.cart_form_actions > * {
	margin-top: 12px;
	margin-left: 12px;
}

.cart_coupon {
	display: flex;
	align-items: center;
}
.cart_coupon > * + * {
	margin-left: 8px;
}

.cart_coupon_input {
	height: 38px;
	width: 150px;
	padding: 0 14px;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	font-size: 14px;
	color: #1c1c1e;
	background: #ffffff;
	transition: border-color 0.15s ease;
}
.cart_coupon_input:focus {
	border-color: #1c1c1e;
	outline: none;
}

.cart_update_btn {
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.15s ease;
	font-family: inherit;
}
.cart_update_btn:hover {
	color: #1c1c1e;
}

/* Sidebar */
.cart_sidebar {
	position: sticky;
	top: 120px;
}

/* Totals box */
.cart_totals_box {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	padding: 24px;
}

.cart_totals_title {
	font-size: 18px;
	font-weight: 800;
	color: #1c1c1e;
	margin-bottom: 16px;
	letter-spacing: -0.2px;
}

.cart_totals_rows {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}
.cart_totals_rows > * + * {
	margin-top: 10px;
}

.cart_totals_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #6b7280;
}
.cart_totals_row span:last-child {
	color: #1c1c1e;
	font-weight: 600;
}

.cart_totals_total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
}

.cart_totals_total_price {
	font-size: 22px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
}
.cart_totals_total_price .woocommerce-Price-amount {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

/* Checkout button */
.wc-proceed-to-checkout .checkout-button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 13px 24px !important;
	border-radius: 9999px !important;
	background: #ff6523 !important;
	color: #ffffff !important;
	font-size: 15px !important;
	font-weight: 700;
	letter-spacing: 0.1px;
	transition:
		background 0.15s ease,
		box-shadow 0.15s ease;
	text-decoration: none;
	border: none !important;
	cursor: pointer;
}
.wc-proceed-to-checkout .checkout-button:hover {
	background: #e0501a !important;
	box-shadow: 0 8px 24px rgba(255, 101, 35, 0.35);
}

/* Empty cart */
.cart_empty_page {
	text-align: center;
	padding: 60px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.cart_empty_page > * + * {
	margin-top: 12px;
}
.cart_empty_page .cart_empty_icon {
	font-size: 56px;
	line-height: 1;
	margin-bottom: 8px;
}
.cart_empty_page .cart_empty_text {
	font-size: 22px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
}
.cart_empty_page .cart_empty_sub {
	font-size: 14px;
	color: #6b7280;
	max-width: 280px;
	margin-bottom: 8px;
}

/* WooCommerce notices on cart page */
.woocommerce-notices-wrapper {
	/* margin-bottom: 20px; */
}
.woocommerce-result-count {
	display: none !important;
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error li,
.woocommerce-notices-wrapper .woocommerce-info {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 10px;
	/* border-left: 3px solid; */
	list-style: none;
}
.woocommerce-notices-wrapper .woocommerce-message {
	background: rgba(34, 197, 94, 0.08);
	border-color: #22c55e;
	color: #166534;
}
.woocommerce-notices-wrapper .woocommerce-message::before {
	display: none;
}
.woocommerce-notices-wrapper .woocommerce-error {
	padding: 0;
	background: none;
	border: none;
}
.woocommerce-notices-wrapper .woocommerce-error li {
	background: rgba(239, 68, 68, 0.08);
	border-color: #ef4444;
	color: #991b1b;
}
.woocommerce-notices-wrapper .woocommerce-info {
	background: rgba(59, 130, 246, 0.08);
	border-color: #3b82f6;
	color: #1e40af;
}
.wcapf-filter-title-inner {
	font-size: 16px;
	text-transform: none;
}

/* ===== Страница оформления заказа ===== */

.checkout_main {
	padding-top: 60px;
}
@media (min-width: 850px) {
	.checkout_main {
		padding-top: 116px;
	}
}

.checkout_hero {
	padding: 32px 0 24px;
	background: #fafaf7;
}
.checkout_hero_inner {
	display: flex;
	flex-direction: column;
}
.checkout_hero_inner > * + * {
	margin-top: 8px;
}

.checkout_section {
	padding: 24px 0 48px;
	background: #fafaf7;
}
.checkout_section_inner .woocommerce,
.checkout_section_inner article,
.checkout_section_inner .entry-content {
	margin: 0;
	padding: 0;
}

/* Двухколоночная сетка: форма | обзор заказа */
.checkout_layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}
@media (min-width: 900px) {
	.checkout_layout {
		grid-template-columns: 1fr 380px;
	}
}

/* Левая колонка — поля формы */
.checkout_col_form {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 28px;
}

/* Правая колонка — обзор заказа */
.checkout_col_review {
	position: sticky;
	top: 120px;
}
.checkout_review_title {
	font-size: 18px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
	margin-bottom: 16px;
}

/* Сброс WC float-сетки внутри .col2-set */
.checkout_col_form .col2-set .col-1,
.checkout_col_form .col2-set .col-2 {
	float: none;
	width: 100%;
}
.checkout_col_form .col2-set .col-2 {
	margin-top: 24px;
}

/* Заголовки секций формы */
.checkout_col_form .woocommerce-billing-fields > h3,
.checkout_col_form .woocommerce-additional-fields > h3,
.checkout_col_form .woocommerce-shipping-fields > h3:not(#ship-to-different-address) {
	font-size: 17px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.2px;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e5e7eb;
}

/* Грид полей */
.checkout_col_form .woocommerce-billing-fields__field-wrapper,
.checkout_col_form .woocommerce-shipping-fields__field-wrapper,
.checkout_col_form .woocommerce-additional-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.checkout_col_form .form-row {
	float: none !important;
	clear: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* ---- Single Product Page ---- */

.product_main {
	padding-top: 60px;
}
@media (min-width: 850px) {
	.product_main {
		padding-top: 116px;
	}
}

.product_hero {
	padding: 40px 0 20px;
	background: #fafaf7;
}
@media (min-width: 850px) {
	.product_hero {
		padding-top: 50px;
	}
}


.product_section {
	padding: 20px 0 60px;
	background: #fafaf7;
}


.product_layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}
@media (min-width: 850px) {
	.product_layout {
		grid-template-columns: 44% 1fr;
		gap: 48px;
	}
}

/* Gallery column */
.product_gallery_col {
	position: relative;
}

.product_gallery_col .woocommerce-product-gallery {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
}

.product_gallery_col .woocommerce-product-gallery .flex-viewport {
	height: 480px;
}

.product_gallery_col .woocommerce-product-gallery__image {
	position: relative;
	overflow: hidden;
	background: #ffffff;
}
.product_gallery_col .woocommerce-product-gallery__image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--bg-img);
	background-size: cover;
	background-position: center;
	filter: blur(30px);
	transform: scale(1.2);
	z-index: 0;
}
.product_gallery_col .woocommerce-product-gallery__image > * {
	position: relative;
	z-index: 1;
}

.product_gallery_col .woocommerce-product-gallery__image img {
	width: 100%;
	height: 480px;
	object-fit: contain;
	display: block;
}

.product_gallery_col .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
}
.product_gallery_col .woocommerce-product-gallery__trigger:hover {
	background: #ffffff;
}
.product_gallery_col .woocommerce-product-gallery__trigger img {
	width: 20px;
	height: 20px;
}

.product_gallery_col .flex-control-thumbs {
	display: flex;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
	margin: calc(10px - 8px) 0 0 -8px;
}
.product_gallery_col .flex-control-thumbs li {
	margin-top: 8px;
	margin-left: 8px;
	width: 72px;
	height: 72px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	background: #ffffff;
	transition: border-color 0.15s ease;
	flex-shrink: 0;
}
.product_gallery_col .flex-control-thumbs li.flex-active-slide {
	border-color: #ff6523;
}
.product_gallery_col .flex-control-thumbs li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
	transition: opacity 0.15s ease;
	display: block;
}
.product_gallery_col .flex-control-thumbs li.flex-active-slide img,
.product_gallery_col .flex-control-thumbs li img:hover {
	opacity: 1;
}

.product_gallery_col .flex-direction-nav {
	display: none;
}

.product_gallery_col > .onsale {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 10;
	background: #ff6523;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	padding: 5px 12px;
	border-radius: 9999px;
	text-transform: uppercase;
	pointer-events: none;
}

/* Info column */
.product_info_col {
	display: flex;
	flex-direction: column;
}
.product_info_col > * {
	margin: 0;
}
.product_info_col > * + * {
	margin-top: 20px;
}

.product_info_col .product_title {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
	line-height: 1.2;
}

.product_info_col .woocommerce-product-rating {
	display: flex;
	align-items: center;
}
.product_info_col .woocommerce-product-rating > * + * {
	margin-left: 10px;
}
.product_info_col .woocommerce-review-link {
	font-size: 13px;
	color: #6b7280;
	transition: color 0.15s ease;
}
.product_info_col .woocommerce-review-link:hover {
	color: #1c1c1e;
}

.product_info_col .price {
	font-size: 28px;
	font-weight: 800;
	color: #ff6523;
	letter-spacing: -0.3px;
	margin-bottom: 20px;
}
.product_info_col .price .woocommerce-Price-amount {
	font-size: 28px;
	font-weight: 800;
	color: #ff6523;
	letter-spacing: -0.3px;
}
.product_info_col .price del {
	font-size: 18px;
	font-weight: 400;
	color: #9ca3af;
	margin-right: 8px;
	opacity: 1;
}
.product_info_col .price del .woocommerce-Price-amount {
	font-size: 18px;
	font-weight: 400;
	color: #9ca3af;
}
.product_info_col .price ins {
	text-decoration: none;
}

.product_info_col .woocommerce-product-details__short-description {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.6;
}
.product_info_col .woocommerce-product-details__short-description p {
	margin: 0;
}
.product_info_col .woocommerce-product-details__short-description p + p {
	margin-top: 8px;
}

.product_info_col .product_full_desc {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.7;
	padding-top: 16px;
	padding-bottom: 16px;
	border-top: 1px solid #e5e7eb;
}
.product_info_col .product_full_desc p {
	margin: 0 0 10px;
}
.product_info_col .product_full_desc p:last-child {
	margin-bottom: 0;
}
.product_info_col .product_full_desc ul,
.product_info_col .product_full_desc ol {
	margin: 0 0 10px;
	padding-left: 20px;
}
.product_info_col .product_full_desc li {
	margin-bottom: 4px;
}
.product_info_col .product_full_desc h2,
.product_info_col .product_full_desc h3 {
	font-size: 15px;
	font-weight: 700;
	color: #1c1c1e;
	margin: 0 0 8px;
}

.product_info_col .stock {
	margin: 0 0 16px;
}
.product_info_col .stock.out-of-stock {
	font-size: 14px;
	font-weight: 600;
	color: #ef4444;
}
.product_info_col .stock.in-stock {
	font-size: 14px;
	font-weight: 600;
	color: #22c55e;
}

.product_info_col form.cart {
	display: flex;
	flex-direction: row;
	/* align-items: center; */
	flex-wrap: wrap;
	margin-top: -12px;
	margin-left: -12px;
}
.product_info_col form.cart > * {
	margin-top: 12px;
	margin-left: 12px;
}

.product_info_col .qty_stepper {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	border: 2px solid #e5e7eb;
	border-radius: 9999px;
	background: #ffffff;
	overflow: hidden;
	transition: border-color 0.15s ease;
}
.product_info_col .qty_stepper:focus-within {
	border-color: #1c1c1e;
}

.product_info_col .qty_btn {
	width: 44px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 400;
	color: #6b7280;
	background: transparent;
	border: none;
	cursor: pointer;
	transition:
		color 0.15s ease,
		background 0.15s ease;
	flex-shrink: 0;
	line-height: 1;
	font-family: inherit;
}
.product_info_col .qty_btn:hover {
	color: #ff6523;
	background: #fff5f0;
}
.product_info_col .qty_btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.product_info_col input.qty {
	width: 52px;
	height: 46px;
	padding: 0;
	border: none;
	border-left: 1px solid #e5e7eb;
	border-right: 1px solid #e5e7eb;
	border-radius: 0;
	font-size: 16px;
	font-weight: 600;
	color: #1c1c1e;
	text-align: center;
	background: #ffffff;
	font-family: inherit;
	outline: none;
	-moz-appearance: textfield;
}
.product_info_col input.qty::-webkit-inner-spin-button,
.product_info_col input.qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.product_info_col .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 32px;
	border-radius: 9999px;
	font-size: 15px;
	font-weight: 600;
	background: #ff6523;
	color: #ffffff;
	border: none;
	cursor: pointer;
	transition:
		background 0.15s ease,
		box-shadow 0.15s ease;
	font-family: inherit;
	line-height: 1;
	white-space: nowrap;
}
.product_info_col .single_add_to_cart_button:hover {
	background: #e0501a;
	box-shadow: 0 8px 24px rgba(255, 101, 35, 0.35);
}
.product_info_col .single_add_to_cart_button.loading::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-top-color: #ffffff;
	border-radius: 50%;
	margin-left: 8px;
	animation: cart_spin 0.65s linear infinite;
}

.product_info_col .product_meta {
	display: flex;
	flex-direction: column;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
}
.product_info_col .product_meta .sku_wrapper {
	display: none;
}
.product_info_col .product_meta > * + * {
	margin-top: 8px;
}
.product_info_col .product_meta span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 13px;
	color: #9ca3af;
}
.product_info_col .product_meta span > * {
	margin-left: 6px;
}
.product_info_col .product_meta a {
	display: inline-block;
	background: #f3f4f6;
	color: #1c1c1e;
	font-size: 12px;
	font-weight: 500;
	padding: 3px 10px;
	border-radius: 9999px;
	transition:
		background 0.15s ease,
		color 0.15s ease;
}
.product_info_col .product_meta a:hover {
	background: #ff6523;
	color: #ffffff;
}

/* Notices */
.product_section_inner .woocommerce-notices-wrapper {
	margin-bottom: 20px;
}

/* Related & Upsell products */
.product_section_inner .related.products,
.product_section_inner .upsells.products {
	margin-top: 48px;
}
.product_section_inner .related.products > h2,
.product_section_inner .upsells.products > h2 {
	font-size: 22px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.3px;
	margin-bottom: 20px;
}
.product_section_inner .related.products ul.products,
.product_section_inner .upsells.products ul.products {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
@media (min-width: 480px) {
	.product_section_inner .related.products ul.products,
	.product_section_inner .upsells.products ul.products {
		gap: 14px;
	}
}
@media (min-width: 850px) {
	.product_section_inner .related.products ul.products,
	.product_section_inner .upsells.products ul.products {
		grid-template-columns: repeat(4, 1fr);
	}
}
.product_section_inner .related.products ul.products li,
.product_section_inner .upsells.products ul.products li {
	list-style: none;
}

/* Лейблы */
.checkout_col_form .form-row label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	margin-bottom: 6px;
}
.checkout_col_form .required {
	color: #ff6523;
}

/* Поля ввода */
.checkout_col_form .form-row input[type="text"],
.checkout_col_form .form-row input[type="email"],
.checkout_col_form .form-row input[type="tel"],
.checkout_col_form .form-row input[type="number"],
.checkout_col_form .form-row input[type="password"],
.checkout_col_form .form-row textarea {
	display: block;
	width: 100%;
	height: 46px;
	padding: 0 18px;
	border: 1.5px solid #e5e7eb;
	border-radius: 100px;
	font-size: 14px;
	font-family: inherit;
	color: #1c1c1e;
	background: #fafaf7;
	outline: none;
	transition:
		border-color 0.15s ease,
		background 0.15s ease;
}
.checkout_col_form .form-row textarea {
	height: auto;
	padding: 12px 18px;
	resize: vertical;
	border-radius: 16px;
}
.checkout_col_form .form-row input:focus,
.checkout_col_form .form-row textarea:focus {
	border-color: #ff6523;
	background: #ffffff;
}
.checkout_col_form .form-row.woocommerce-invalid input,
.checkout_col_form .form-row.woocommerce-invalid .select2-selection {
	border-color: #ef4444 !important;
}

/* Select2 */
.checkout_col_form .select2-container {
	display: block;
	width: 100% !important;
}
.checkout_col_form .select2-container .select2-selection--single {
	height: 46px;
	border: 1.5px solid #e5e7eb;
	border-radius: 100px;
	background: #fafaf7;
	outline: none;
	transition: border-color 0.15s ease;
}
.checkout_col_form .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 46px;
	padding: 0 18px;
	font-size: 14px;
	color: #1c1c1e;
}
.checkout_col_form .select2-container .select2-selection--single .select2-selection__arrow {
	height: 44px;
	right: 10px;
}
.checkout_col_form .select2-container--open .select2-selection--single {
	border-color: #ff6523;
	background: #ffffff;
}
.select2-dropdown {
	border: 1.5px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
.select2-results__option--highlighted,
.select2-results__option--selected {
	background: #ff6523 !important;
	color: #ffffff !important;
}
.select2-search--dropdown .select2-search__field {
	border: 1.5px solid #e5e7eb;
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 13px;
	outline: none;
}

/* Карточка обзора заказа */
.woocommerce-checkout-review-order {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

/* Таблица товаров */
.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
}
.woocommerce-checkout-review-order-table thead {
	background: #fafaf7;
	border-bottom: 1px solid #e5e7eb;
}
.woocommerce-checkout-review-order-table thead th {
	padding: 10px 20px;
	font-size: 11px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	text-align: left;
}
.woocommerce-checkout-review-order-table thead .product-total {
	text-align: right;
}
.woocommerce-checkout-review-order-table tbody tr {
	border-bottom: 1px solid #f0f0f0;
}
.woocommerce-checkout-review-order-table tbody td {
	padding: 14px 20px;
	font-size: 14px;
	vertical-align: middle;
}
.woocommerce-checkout-review-order-table .product-quantity {
	color: #6b7280;
	font-size: 13px;
}
.woocommerce-checkout-review-order-table .product-total {
	text-align: right;
	font-weight: 600;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
	padding: 10px 20px;
	font-size: 14px;
	border-top: 1px solid #f0f0f0;
}
.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	padding-top: 14px;
	font-size: 16px;
	font-weight: 800;
	color: #1c1c1e;
	background: #fafaf7;
	border-top: 2px solid #e5e7eb;
}

/* Секция оплаты */
#payment.woocommerce-checkout-payment {
	padding: 20px;
	border-top: 1px solid #e5e7eb;
}
.wc_payment_methods {
	list-style: none;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
}
.wc_payment_methods > * + * {
	margin-top: 8px;
}
.wc_payment_methods .wc_payment_method > label {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 12px 14px;
	border: 1.5px solid #e5e7eb;
	border-radius: 8px;
	transition: border-color 0.15s ease;
}
.wc_payment_methods .wc_payment_method > label > * + * {
	margin-left: 10px;
}
.wc_payment_methods .wc_payment_method > label:hover {
	border-color: #ff6523;
}
.wc_payment_methods .wc_payment_method input[type="radio"]:checked + label {
	border-color: #ff6523;
	background: rgba(255, 101, 35, 0.04);
}
.payment_box {
	padding: 10px 14px;
	font-size: 13px;
	color: #6b7280;
	background: #fafaf7;
	border-radius: 6px;
	margin-top: 6px;
}
.form-row.place-order {
	margin: 20px 0 0;
	padding: 0;
}
#place_order {
	display: block;
	width: 100%;
	padding: 14px 24px;
	background: #ff6523;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	text-align: center;
	transition:
		background 0.2s ease,
		transform 0.1s ease;
	letter-spacing: 0.2px;
}
#place_order:hover {
	background: #e5541a;
}
#place_order:active {
	transform: scale(0.98);
}

/* Тогл "Доставить на другой адрес?" */
.checkout_col_form .woocommerce-shipping-fields > h3#ship-to-different-address {
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1e;
	letter-spacing: 0;
	margin-bottom: 16px;
	padding-bottom: 0;
	border-bottom: none;
}
.checkout_col_form #ship-to-different-address label {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.checkout_col_form #ship-to-different-address label > * + * {
	margin-left: 8px;
}
.checkout_col_form #ship-to-different-address input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: #ff6523;
	flex-shrink: 0;
	cursor: pointer;
}

/* Раздел "Дополнительная информация" */
.checkout_col_form .woocommerce-additional-fields {
	margin-top: 24px;
	/* padding-left: 10px!important; */
}

/* Условия и политика конфиденциальности */
.woocommerce-checkout .woocommerce-privacy-policy-text,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
	font-size: 12px;
	color: #6b7280;
	line-height: 1.5;
	margin-top: 12px;
}
.woocommerce-checkout .woocommerce-privacy-policy-text a,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
	text-decoration: underline;
	text-decoration-color: rgba(107, 114, 128, 0.4);
}
.woocommerce-checkout .woocommerce-privacy-policy-text a:hover,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a:hover {
	color: #1c1c1e;
}

/* Уведомления внутри checkout (логин, заметки) */
.checkout_section_inner .woocommerce-info {
	font-size: 14px;
}

/* ============================================================
   Thank You Page
   ============================================================ */

/* Hero */
.thankyou_hero {
	background: linear-gradient(150deg, #1c1c1e 0%, #2b1a12 60%, #3a1f0d 100%);
	padding: 60px 0 52px;
	text-align: center;
	border-radius: 50px;
}
.thankyou_hero_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.thankyou_hero_inner > * + * {
	margin-top: 16px;
}

.thankyou_check {
	width: 72px;
	height: 72px;
	background: #ff6523;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px;
}

.thankyou_title {
	font-size: 38px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.8px;
	line-height: 1.1;
}
@media (max-width: 600px) {
	.thankyou_title {
		font-size: 28px;
	}
}

.thankyou_sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
	max-width: 380px;
}

/* Body */
.thankyou_body {
	background: #fafaf7;
	padding: 40px 0 64px;
}
.thankyou_body_inner {
	display: flex;
	flex-direction: column;
}

/* Order overview cards */
.woocommerce-order-overview.order_details {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: -10px 0 32px -10px;
}
.woocommerce-order-overview.order_details > li {
	margin: 10px 0 0 10px;
	flex: 1 1 160px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 16px 20px 16px 10px!important;
	display: flex;
	flex-direction: column;
}
.woocommerce-order-overview.order_details .overview_label {
	font-size: 11px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-bottom: 6px;
}
.woocommerce-order-overview.order_details strong {
	font-size: 15px;
	font-weight: 700;
	color: #1c1c1e;
}
.woocommerce-order-overview.order_details .woocommerce-order-overview__total strong {
	font-size: 17px;
	color: #ff6523;
}

/* Order details section */
.woocommerce-order-details {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 24px;
}
.woocommerce-order-details__title {
	font-size: 17px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.2px;
	margin: 0;
	padding: 20px 24px 16px;
	border-bottom: 1px solid #e5e7eb;
}

/* Order items table */
.woocommerce-table.woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.woocommerce-table--order-details thead th {
	padding: 10px 24px;
	font-size: 11px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	text-align: left;
	background: #fafaf7;
	border-bottom: 1px solid #e5e7eb;
}
.woocommerce-table--order-details thead .product-total {
	text-align: right;
}
.woocommerce-table--order-details tbody tr {
	border-bottom: 1px solid #f0f0f0;
}
.woocommerce-table--order-details tbody td {
	padding: 14px 24px;
	vertical-align: middle;
	color: #1c1c1e;
}
.woocommerce-table--order-details tbody .product-name {
	font-weight: 500;
}
.woocommerce-table--order-details tbody .product-name .quantity {
	color: #6b7280;
	font-size: 13px;
}
.woocommerce-table--order-details tbody .product-total {
	text-align: right;
	font-weight: 600;
}
.woocommerce-table--order-details tfoot th,
.woocommerce-table--order-details tfoot td {
	padding: 10px 24px;
	color: #6b7280;
	border-top: 1px solid #f0f0f0;
}
.woocommerce-table--order-details tfoot td {
	text-align: right;
}
.woocommerce-table--order-details tfoot .order-total th,
.woocommerce-table--order-details tfoot .order-total td {
	font-size: 16px;
	font-weight: 800;
	color: #1c1c1e;
	background: #fafaf7;
	border-top: 2px solid #e5e7eb;
	padding-top: 14px;
	padding-bottom: 14px;
}

/* Customer details */
.woocommerce-customer-details {
	margin-bottom: 0;
}
.woocommerce-columns--addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 600px) {
	.woocommerce-columns--addresses {
		grid-template-columns: 1fr;
	}
}
.woocommerce-column__title {
	font-size: 17px;
	font-weight: 800;
	color: #1c1c1e;
	letter-spacing: -0.2px;
	margin: 0 0 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e5e7eb;
}
.woocommerce-customer-details address {
	font-style: normal;
	font-size: 14px;
	color: #1c1c1e;
	line-height: 1.8;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px 24px;
}

/* ============================================================
   WCAPF — Форма фильтров
   ============================================================ */

.wcapf-form > p {
	display: none;
}
.wcapf-form .wcapf-filter + .wcapf-filter {
	margin-top: 8px;
}

/* Карточка каждого фильтра */
.wcapf-form .wcapf-filter {
	background: #ffffff;
	border: 1px solid #ebebeb;
	border-radius: 10px;
	padding: 10px 12px;
}
@media (max-width: 849px) {
	.wcapf-form .wcapf-filter {
		background: none;
		border: none;
		border-radius: 0;
		padding: 0;
	}
}

.wcapf-form .wcapf-filter-title {
	margin: 0 0 8px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #b0b7c3;
}

/* Цена: инпуты */
.wcapf-range-wrapper .range-values {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
}
.wcapf-range-wrapper .wcapf-range-separator {
	margin: 0 6px;
	font-size: 13px;
	color: #9ca3af;
	flex-shrink: 0;
}
.wcapf-range-wrapper input.min-value,
.wcapf-range-wrapper input.max-value {
	width: 90px;
	padding: 5px 8px;
	background: #fafaf7;
	border: 1px solid #e5e7eb;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 600;
	color: #1c1c1e;
	text-align: center;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s ease;
}
.wcapf-range-wrapper input.min-value:focus,
.wcapf-range-wrapper input.max-value:focus {
	border-color: #1c1c1e;
}

/* Цена: ползунок — цвет берётся из настроек плагина */
.wcapf-noui-slider {
	height: 4px !important;
	background: #ebebeb !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 9999px !important;
}
.wcapf-noui-handle {
	width: 18px !important;
	height: 18px !important;
	top: -7px !important;
	right: -9px !important;
	background: #ffffff !important;
	border: 2px solid var(--wcapf-primary-color) !important;
	border-radius: 50% !important;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12) !important;
	cursor: pointer;
}
.wcapf-noui-handle::before,
.wcapf-noui-handle::after {
	display: none !important;
}

/* Чекбоксы */
.wcapf-filter-options {
	display: flex;
	flex-direction: column;
}
.wcapf-filter-options > * + * {
	margin-top: 8px;
}
.wcapf-filter-item label {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.wcapf-filter-item input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	border: 1.5px solid #d1d5db;
	border-radius: 4px;
	background: #ffffff;
	cursor: pointer;
	position: relative;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
}
.wcapf-filter-item input[type="checkbox"]:checked {
	background: #1c1c1e;
	border-color: #1c1c1e;
}
.wcapf-filter-item input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 4px;
	width: 4px;
	height: 7px;
	border: 1.5px solid #ffffff;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
}
.wcapf-filter-item-label {
	display: flex;
	align-items: center;
	margin-left: 7px;
}
.wcapf-filter-item-label .wcapf-nav-item-count {
	margin-left: 4px;
}
.wcapf-filter-item .wcapf-nav-item-text {
	font-size: 13px;
	font-weight: 600;
	color: #1c1c1e;
}
.wcapf-filter-item.empty-item .wcapf-nav-item-text {
	color: #9ca3af;
}
.wcapf-filter-item .wcapf-nav-item-count {
	font-size: 11px;
	color: #9ca3af;
	font-weight: 500;
}

/* ============================================================
   WCAPF — Активные фильтры
   ============================================================ */

@media (min-width: 850px) {
	.wcapf-active-filters-before-shop-loop {
		position: absolute;
		top: 0;
		transform: translate(0px, -100%);
	}
}
@media (max-width: 849px) {
	.wcapf-active-filters-before-shop-loop {
		margin-bottom: 12px;
	}
}

/* Сброс плагинных стилей на вложенных контейнерах */
.wcapf-active-filters-before-shop-loop .wcapf-active-filters,
.wcapf-active-filters-before-shop-loop .wcapf-filter,
.wcapf-active-filters-before-shop-loop .wcapf-filter-inner,
.wcapf-active-filters-before-shop-loop .wcapf-active-filter-items-wrapper {
	background: none !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.wcapf-active-filters-before-shop-loop .wcapf-active-filter-items {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap;
}
.wcapf-active-filters-before-shop-loop .wcapf-active-filter-items > * + * {
	margin-left: 6px;
}

/* Чип активного фильтра */
.wcapf-active-filters-before-shop-loop .wcapf-active-filter-item {
	display: inline-flex !important;
	align-items: center !important;
	padding: 5px 10px 5px 12px !important;
	background: #1c1c1e !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 9999px !important;
	font-size: 12px !important;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	box-shadow: none !important;
	text-decoration: none !important;
	transition: background 0.15s ease;
}
.wcapf-active-filters-before-shop-loop .wcapf-active-filter-item:hover {
	background: #333333 !important;
}
.wcapf-active-filters-before-shop-loop .wcapf-active-filter-item .wcapf-nav-item-text {
	font-size: 12px !important;
	color: #ffffff !important;
	font-weight: 600;
}
.wcapf-active-filters-before-shop-loop .wcapf-active-filter-item .wcapf-cross-sign {
	margin-left: 6px;
	font-size: 14px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.55) !important;
	display: none;
}

/* Кнопка сброса — иконка clear.svg */
.wcapf-active-filters-before-shop-loop .wcapf-reset-filters-btn-wrapper {
	display: inline-flex !important;
	align-items: center !important;
}
.wcapf-active-filters-before-shop-loop .wcapf-reset-filters-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 30px !important;
	height: 30px !important;
	padding: 0 !important;
	background-color: transparent !important;
	background-image: url("../img/clear.svg") !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	border: none !important;
	border-radius: 8px !important;
	overflow: hidden;
	box-shadow: none !important;
	cursor: pointer;
	font-size: 0 !important;
	color: transparent !important;
	text-decoration: none !important;
	transition: opacity 0.15s ease;
}
.wcapf-active-filters-before-shop-loop .wcapf-reset-filters-btn:hover {
	opacity: 0.75;
}

/* ============================================================
   wcapf-before-products — строка над товарами
   ============================================================ */

.wcapf-before-products {
	display: flex;
	flex-direction: column;
}
@media (min-width: 850px) {
	.wcapf-before-products {
		padding-top: 30px;
	}
}

@media (min-width: 850px) {
	.catalog_content .woocommerce-ordering {
		position: absolute;
		top: 0;
		right: 0;
		transform: translate(0px, -100%);
		z-index: 50;
	}
	.catalog_section_inner > .woocommerce-ordering {
		display: flex;
		justify-content: flex-end;
		margin-bottom: 24px;
	}
}
@media (max-width: 849px) {
	.woocommerce-ordering {
		margin-bottom: 12px;
		padding: 0;
	}
}

.woocommerce-ordering select.orderby {
	-webkit-appearance: none;
	appearance: none;
	padding: 7px 38px 7px 16px;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 14px;
	border: 1.5px solid #e5e7eb;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 600;
	color: #1c1c1e;
	font-family: inherit;
	cursor: pointer;
	outline: none;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease;
}
.woocommerce-ordering select.orderby:hover {
	border-color: #d1d5db;
	background-color: #f9f9f7;
}
.woocommerce-ordering select.orderby:focus {
	border-color: #1c1c1e;
}
.woocommerce-ordering select.orderby option {
	border-radius: 8px;
	font-weight: 500;
	color: #1c1c1e;
	background: #ffffff;
	padding: 6px 12px;
}

/* ============================================================
   Кастомный select — woocommerce-ordering
   ============================================================ */

.custom_select {
	position: relative;
	display: inline-block;
}

.custom_select_trigger {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px 7px 16px;
	background: #ffffff;
	border: 1.5px solid #e5e7eb;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 600;
	color: #1c1c1e;
	font-family: inherit;
	cursor: pointer;
	transition:
		border-color 0.2px ease,
		background-color 0.2s ease;
	white-space: nowrap;
}
.custom_select_trigger:hover {
	border-color: #d1d5db;
	background: #f9f9f7;
}
.custom_select.is_open .custom_select_trigger {
	border-color: #1c1c1e;
}

.custom_select_chevron {
	width: 14px;
	height: 14px;
	margin-left: 8px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.custom_select.is_open .custom_select_chevron {
	transform: rotate(180deg);
}

.custom_select_dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 210px;
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.1),
		0 2px 8px rgba(0, 0, 0, 0.06);
	list-style: none;
	margin: 0;
	padding: 6px;
	z-index: 500;
	overflow: hidden;
}
@media (max-width: 849px) {
	.custom_select_dropdown {
		right: auto;
		left: 0;
	}
}
.custom_select.is_open .custom_select_dropdown {
	display: block;
	animation: cs_fadeIn 0.15s ease;
}

@keyframes cs_fadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.custom_select_option {
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 500;
	color: #1c1c1e;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.12s ease;
}
.custom_select_option:hover {
	background: #f3f4f6;
}
.custom_select_option.is_selected {
	background: #1c1c1e;
	color: #ffffff;
	font-weight: 600;
}

/* ============================================================
   Страницы — заголовок h1
   ============================================================ */

.page .entry-header {
	padding: 48px 20px 40px;
	text-align: center;
}

.page .entry-title {
	margin: 0 auto;
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #1c1c1e;
}

.page .entry-title::after {
	content: "";
	display: block;
	width: 48px;
	height: 4px;
	background: #ff6523;
	border-radius: 9999px;
	margin: 16px auto 0;
}

@media (max-width: 849px) {
	.page .entry-header {
		padding: 32px 20px 28px;
	}
	.page .entry-title {
		font-size: 34px;
		letter-spacing: -0.5px;
	}
}

/* ============================================================
   page_hero — универсальный герой-блок страниц
   ============================================================ */

.page_hero {
	background: linear-gradient(150deg, #1c1c1e 0%, #2b1a12 60%, #3a1f0d 100%);
	padding: 52px 0 44px;
}

.page_hero .catalog_hero_inner,
.page_hero .cart_hero_inner,
.page_hero .checkout_hero_inner,
.page_hero .delivery_hero_inner,
.page_hero .contacts_hero_inner,
.page_hero .articles_hero_inner,
.page_hero .article_hero_inner,
.page_hero .faq_hero_inner,
.page_hero .about_page_hero_inner {
	align-items: center;
	text-align: center;
}

/* Breadcrumb */
.page_hero .woocommerce-breadcrumb,
.page_hero .woocommerce-breadcrumb a {
	color: rgba(255, 255, 255, 0.45);
}
.page_hero .woocommerce-breadcrumb a:hover {
	color: rgba(255, 255, 255, 0.75);
}

/* H1 */
.page_hero .catalog_title {
	max-width: 800px;
	margin: 0 auto;
	color: #ffffff;
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1.05;
}
.page_hero .catalog_title::after {
	content: "";
	display: block;
	width: 44px;
	height: 4px;
	background: #ff6523;
	border-radius: 9999px;
	margin: 14px auto 0;
}

/* Категориальная навигация */
.page_hero .cat_nav_link {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
}
.page_hero .cat_nav_link:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}
.page_hero .cat_nav_link--active {
	background: #ff6523;
	border-color: #ff6523;
	color: #ffffff;
}
.page_hero .cat_nav_link--active:hover {
	background: #e8561d;
	border-color: #e8561d;
}

@media (max-width: 849px) {
	.page_hero {
		padding: 36px 0 30px;
	}
	.page_hero .catalog_title {
		font-size: 34px;
		letter-spacing: -0.8px;
	}
}

/* ─── Catalog Dropdown ─── */

@media (min-width: 850px) {
	.header_nav_inner {
		display: flex;
		align-items: stretch;
	}
	.catalog_dropdown {
		display: flex;
		align-items: center;
		padding-right: 6px;
	}
}

.catalog_dropdown {
	position: relative;
}

@media (max-width: 849px) {
	.catalog_dropdown {
		margin-bottom: 10px;
	}
}

.catalog_btn {
	display: flex;
	align-items: center;
	background: #ff6523;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.15s ease;
}
.catalog_btn > * + * {
	margin-left: 6px;
}
.catalog_btn:hover {
	background: #e55a1f;
}

@media (min-width: 850px) {
	.catalog_btn {
		height: 36px;
		/* padding: 0 14px 0 12px; */
		padding: 0 5px 0 12px;
	}
}
@media (max-width: 849px) {
	.catalog_btn {
		width: 100%;
		justify-content: space-between;
		height: 48px;
		padding: 0 16px;
	}
}

.catalog_btn_icon,
.catalog_btn_arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
.catalog_btn_icon {
	margin-right: 4px;
}
.catalog_btn_arrow {
	transition: transform 0.2s ease;
	pointer-events: bounding-box;
}
@media (max-width: 849px) {
	.catalog_btn_arrow {
		width: 28px;
		height: 28px;
		padding: 6px;
		box-sizing: content-box;
		margin-right: -6px;
	}
}
.catalog_btn[aria-expanded="true"] .catalog_btn_arrow {
	transform: rotate(180deg);
}

.catalog_panel {
	display: none;
	z-index: 110;
}
.catalog_panel.open {
	display: block;
}

@media (min-width: 850px) {
	.catalog_panel {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 480px;
		background: #1c1c1e;
		border-radius: 0 12px 12px 12px;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
		padding: 12px;
		border-top: 3px solid #ff6523;
	}
}
@media (max-width: 849px) {
	.catalog_panel {
		background: rgba(255, 255, 255, 0.06);
		border-radius: 8px;
		padding: 8px;
		margin-top: 6px;
		border-left: 3px solid rgba(255, 101, 35, 0.5);
	}
}

.catalog_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
}
@media (max-width: 849px) {
	.catalog_list {
		grid-template-columns: 1fr;
	}
}

.catalog_cat_link {
	display: flex;
	align-items: center;
	padding: 8px 10px;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	transition:
		background 0.15s ease,
		color 0.15s ease;
}
.catalog_cat_link > * + * {
	margin-left: 10px;
}
.catalog_cat_link:hover {
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
}

.catalog_cat_img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	display: block;
}
.catalog_cat_placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 101, 35, 0.18);
	flex-shrink: 0;
	color: rgba(255, 101, 35, 0.7);
}
.catalog_cat_name {
	flex: 1;
}
.catalog_cat_count {
	margin-left: 4px;
	font-size: 12px;
	opacity: 0.5;
	font-weight: 400;
}


.delivery_section{
	margin: 60px 0;
}


.contacts_section {
	margin: 60px 0;
}

.contacts_section_inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.contacts_card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px 24px;
}
.contacts_card > * + * {
	margin-top: 10px;
}

.contacts_card_label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #9ca3af;
	font-weight: 600;
}

.contacts_card_value {
	font-size: 18px;
	font-weight: 700;
	color: #1c1c1e;
	transition: color 0.15s ease;
}
.contacts_card_value:hover {
	color: #ff6523;
}
.contacts_card_value_text {
	cursor: default;
}
.contacts_card_value_text:hover {
	color: #1c1c1e;
}

.contacts_socials {
	display: flex;
}
.contacts_socials > * + * {
	margin-left: 8px;
}

@media (max-width: 849px) {
	.contacts_section_inner {
		grid-template-columns: 1fr;
		max-width: 480px;
	}
}

/* 404 */
.not_found_main {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	min-height: 60vh;
}

.not_found_inner {
	text-align: center;
	max-width: 520px;
	width: 100%;
}

.not_found_code {
	font-size: 120px;
	font-weight: 800;
	line-height: 1;
	color: #ff6523;
	letter-spacing: -4px;
}

.not_found_title {
	font-size: 28px;
	font-weight: 700;
	color: #1c1c1e;
	margin-top: 16px;
}

.not_found_text {
	font-size: 16px;
	color: #6b7280;
	margin-top: 12px;
	line-height: 1.6;
}

.not_found_actions {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}
.not_found_actions > * + * {
	margin-left: 12px;
}

@media (max-width: 849px) {
	.not_found_code {
		font-size: 80px;
	}
	.not_found_title {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.not_found_actions {
		flex-direction: column;
		align-items: center;
	}
	.not_found_actions > * + * {
		margin-left: 0;
		margin-top: 12px;
	}
}

/* ============================================================
   Pay Page (промежуточная страница оплаты онлайн-шлюза:
   Payme/Click/etc — WC шаблон order-pay.php)
   ============================================================ */

.checkout_section_inner > .woocommerce > .order_details {
	list-style: none;
	margin: 0 0 24px -10px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.checkout_section_inner > .woocommerce > .order_details > li {
	margin: 10px 0 0 10px;
	flex: 1 1 180px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 14px 18px;
	display: flex;
	flex-direction: column;
	font-size: 11px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}
.checkout_section_inner > .woocommerce > .order_details > li strong {
	margin-top: 6px;
	font-size: 15px;
	font-weight: 700;
	color: #1c1c1e;
	text-transform: none;
	letter-spacing: 0;
}
.checkout_section_inner > .woocommerce > .order_details > li.total strong {
	font-size: 17px;
	color: #ff6523;
}

.checkout_section_inner > .woocommerce > .order_details + p {
	font-size: 15px;
	color: #1c1c1e;
	line-height: 1.5;
	margin: 0 0 20px;
}

.checkout_section_inner > .woocommerce form[id$="_form"] {
	display: flex;
	flex-wrap: wrap;
	margin-top: -12px;
	margin-left: -12px;
	align-items: center;
}
.checkout_section_inner > .woocommerce form[id$="_form"] > .button,
.checkout_section_inner > .woocommerce form[id$="_form"] > input[type="submit"] {
	margin-top: 12px;
	margin-left: 12px;
}

.checkout_section_inner > .woocommerce form[id$="_form"] input[type="submit"].button,
.checkout_section_inner > .woocommerce form[id$="_form"] .button.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 28px;
	border-radius: 9999px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.1px;
	background: #ff6523;
	color: #ffffff;
	border: none;
	cursor: pointer;
	transition: all 0.15s ease;
	white-space: nowrap;
}
.checkout_section_inner > .woocommerce form[id$="_form"] input[type="submit"].button:hover,
.checkout_section_inner > .woocommerce form[id$="_form"] .button.alt:hover {
	background: #e0501a;
	box-shadow: 0 8px 24px rgba(255, 101, 35, 0.35);
}

.checkout_section_inner > .woocommerce form[id$="_form"] .button.cancel,
.checkout_section_inner > .woocommerce form[id$="_form"] a.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1px;
	background: transparent;
	color: #1c1c1e;
	border: 2px solid #e5e7eb;
	transition: all 0.15s ease;
	white-space: nowrap;
	text-decoration: none;
}
.checkout_section_inner > .woocommerce form[id$="_form"] .button.cancel:hover,
.checkout_section_inner > .woocommerce form[id$="_form"] a.button:hover {
	border-color: #1c1c1e;
	background: #1c1c1e;
	color: #ffffff;
}

.checkout_section_inner > .woocommerce > .clear {
	clear: both;
}

@media (max-width: 480px) {
	.checkout_section_inner > .woocommerce form[id$="_form"] {
		flex-direction: column;
		align-items: stretch;
	}
	.checkout_section_inner > .woocommerce form[id$="_form"] > .button,
	.checkout_section_inner > .woocommerce form[id$="_form"] > input[type="submit"] {
		width: 100%;
		margin-left: 0;
	}
}

/* ============================================================
   Articles — архив и одиночная статья
   ============================================================ */

/* Архив: секция */
.articles_section {
	padding: 56px 0 72px;
}

.articles_empty {
	color: #6b7280;
	font-size: 16px;
}

/* Сетка карточек */
.articles_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* Карточка статьи */
.article_card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}
.article_card:hover {
	box-shadow: 0 4px 24px rgba(28, 28, 30, 0.08);
}

.article_card_img_wrap {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.article_card_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.article_card:hover .article_card_img {
	transform: scale(1.03);
}

.article_card_body {
	padding: 20px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.article_card_body > * + * {
	margin-top: 8px;
}

.article_card_date {
	font-size: 13px;
	color: #6b7280;
	font-weight: 500;
}

.article_card_title {
	font-size: 17px;
	font-weight: 700;
	color: #1c1c1e;
	line-height: 1.3;
}
.article_card_title a {
	transition: color 0.15s ease;
}
.article_card_title a:hover {
	color: #ff6523;
}

.article_card_excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.55;
	flex: 1;
}

.article_card_more {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: #ff6523;
	transition: color 0.15s ease;
}
.article_card_more:hover {
	color: #e8561d;
}

/* Пагинация */
.nav-links {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}
.nav-links > * + * {
	margin-left: 8px;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1e;
	transition: background 0.15s ease, color 0.15s ease;
}
.page-numbers.current {
	background: #ff6523;
	border-color: #ff6523;
	color: #ffffff;
}
.page-numbers.prev,
.page-numbers.next {
	width: auto;
	padding: 0 14px;
}

/* Одиночная статья / О компании */
.article_section,
.about_page_section {
	padding: 56px 0 72px;
}

.article_content {
	max-width: 760px;
	/* margin: 0 auto; */
	font-size: 16px;
	line-height: 1.75;
	color: #1c1c1e;
}
.article_content h2,
.article_content h3,
.article_content h4 {
	margin-top: 36px;
	margin-bottom: 12px;
}
.article_content p {
	margin-bottom: 20px;
}
.article_content ul,
.article_content ol {
	list-style: disc;
	padding-left: 24px;
	margin-bottom: 20px;
}
.article_content ol {
	list-style: decimal;
}
.article_content li {
	margin-bottom: 6px;
}
.article_content a {
	color: #ff6523;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.article_content img {
	border-radius: 8px;
	margin: 8px 0 20px;
}
.article_content blockquote {
	border-left: 3px solid #ff6523;
	padding-left: 20px;
	color: #6b7280;
	font-style: italic;
	margin: 28px 0;
}

.article_footer {
	max-width: 760px;
	margin: 40px auto 0;
	padding-top: 32px;
	border-top: 1px solid #e5e7eb;
}

/* Адаптив */
@media (max-width: 1024px) {
	.articles_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 849px) {
	.articles_section,
	.article_section,
	.about_page_section {
		padding: 36px 0 52px;
	}
	.articles_grid {
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.articles_grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   FAQ — аккордеон
   ============================================================ */

.faq_section {
	padding: 56px 0 72px;
}

.faq_empty {
	color: #6b7280;
	font-size: 16px;
}

.faq_list {
	max-width: 800px;
	margin: 0 auto;
}
.faq_list > * + * {
	margin-top: 8px;
}

.faq_item {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.2s ease;
}
.faq_item[open] {
	border-color: #ff6523;
}

.faq_item summary {
	list-style: none;
}
.faq_item summary::-webkit-details-marker {
	display: none;
}

.faq_question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	cursor: pointer;
	user-select: none;
}
.faq_question > span {
	font-size: 16px;
	font-weight: 600;
	color: #1c1c1e;
	line-height: 1.4;
	padding-right: 16px;
}

.faq_arrow {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #6b7280;
	transition: transform 0.25s ease, color 0.2s ease;
}
.faq_item[open] .faq_arrow {
	transform: rotate(180deg);
	color: #ff6523;
}

.faq_answer {
	padding: 0 24px 20px;
	font-size: 15px;
	line-height: 1.7;
	color: #6b7280;
}
.faq_answer > * + * {
	margin-top: 12px;
}

@media (max-width: 849px) {
	.faq_section {
		padding: 36px 0 52px;
	}
	.faq_question {
		padding: 16px 18px;
	}
	.faq_answer {
		padding: 0 18px 16px;
	}
}

/* стили для страницы статья */
.rich_article {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
}

.rich_lead {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
    padding: 18px 20px;
    border-left: 4px solid #ff6523;
    background-color: #fff8f4;
    border-radius: 4px;
}

.rich_h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 35px 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff6523;
    display: inline-block;
}

.rich_text {
    font-size: 16px;
    color: #444;
    margin: 10px 0 15px 0;
}

.rich_ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0;
}

.rich_ul li {
    font-size: 16px;
    color: #444;
    padding: 8px 0 8px 28px;
    position: relative;
    list-style: none !important;
    list-style-type: none !important;
}

.rich_ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 6px;
    color: #ff6523;
    font-size: 22px;
    font-weight: bold;
}

.rich_accent {
    color: #ff6523;
    font-weight: 600;
}

.rich_cta {
    margin-top: 40px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff8f4 0%, #ffeede 100%);
    border-radius: 8px;
    border: 1px solid #ffd5b8;
}

.rich_cta_title {
    font-size: 20px;
    font-weight: 700;
    color: #ff6523;
    margin: 0 0 10px 0;
}

.rich_cta_text {
    font-size: 16px;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

.rich_brand_inline {
    color: #ff6523;
    font-weight: 700;
}
/* конец стили для страницы статья */