@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/inter/Inter-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/inter/Inter-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/outfit/Outfit-Bold.woff2") format("woff2");
}

:root {
	--cg-font-ui: "Inter", Arial, sans-serif;
	--cg-font-brand: "Outfit", "Inter", Arial, sans-serif;
	--cg-weight-regular: 400;
	--cg-weight-medium: 500;
	--cg-weight-semibold: 600;
	--cg-weight-bold: 700;

	--cg-color-background: #FBF6EE;
	--cg-color-background-alt: #F8F5EE;
	--cg-color-surface: #FFFDF9;
	--cg-color-text: #3B2116;
	--cg-color-text-muted: #7C6354;
	--cg-color-accent: #97591B;
	--cg-color-topbar: #462312;
	--cg-color-border: #E1D5C8;
	--cg-color-on-accent: #FFFFFF;

	--cg-container-max: 1280px;
	--cg-gutter-tablet: 24px;
	--cg-gutter-mobile: 16px;
	--cg-radius-md: 18px;
	--cg-radius-lg: 22px;
	--cg-radius-xl: 26px;
	--cg-radius-pill: 999px;
	--cg-shadow-panel: 0 24px 70px rgba(59, 33, 22, .18);
	--cg-z-header: 1000;
	--cg-z-overlay: 900;
	--cg-z-overlay-modal: 1005;
	--cg-z-panel: 1010;
}

*, *::before, *::after { box-sizing: border-box; }
html { scrollbar-gutter: stable; }
body { background: var(--cg-color-background); color: var(--cg-color-text); font-family: var(--cg-font-ui); }
body.cg-scroll-locked { overflow: hidden; }

/* Figma breadcrumbs */
.breadcrumb {
	display: flex;
	width: min(1240px, calc(100vw - 40px));
	height: 20px;
	align-items: center;
	margin: 32px 0 24px 50%;
	padding: 0;
	transform: translateX(-50%);
	overflow-x: auto;
	overflow-y: hidden;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-family: var(--cg-font-ui);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	list-style: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.breadcrumb::-webkit-scrollbar { display: none; }
.breadcrumb > li {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	padding: 0;
	position: static;
	color: #3B2116;
	font: inherit;
	text-shadow: none;
	white-space: nowrap;
}
.breadcrumb > li + li::before {
	content: "/";
	display: inline-block;
	margin: 0 8px;
	padding: 0;
	color: #7C6354;
}
.breadcrumb > li::after { content: none; display: none; }
.breadcrumb > li > a {
	color: #7C6354;
	text-shadow: none;
	text-decoration: none;
}
.breadcrumb > li > a:hover { color: #974B23; text-decoration: none; }
.breadcrumb > li > a:focus-visible {
	border-radius: 2px;
	outline: 2px solid #D28D47;
	outline-offset: -2px;
}
.breadcrumb > li:last-child { color: #3B2116; }

@media (min-width: 768px) {
	.breadcrumb {
		width: min(1240px, 100%);
		margin: 32px auto 24px;
		transform: none;
	}
}

.cg-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.cg-icon-svg { display: block; flex: 0 0 auto; }
.cg-icon-svg--action { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cg-icon-svg--messenger { width: 16px; height: 16px; }
.cg-shell { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.cg-header { position: sticky; top: 0; z-index: var(--cg-z-header); background: transparent; }
.cg-header__utility { min-height: 37px; background: var(--cg-color-topbar); color: #fff; font-size: 12px; }
.cg-header__utility-inner, .cg-header__main-inner, .cg-header__phones-mobile-inner { display: flex; align-items: center; }
.cg-header__utility-inner { justify-content: space-between; min-height: 37px; }
.cg-header__utility-links, .cg-header__mobile-service-links { display: flex; gap: 24px; }
.cg-header a { color: inherit; text-decoration: none; }
.cg-header__utility a { opacity: .88; }
.cg-header__utility a:hover, .cg-header__utility a:focus { opacity: 1; text-decoration: underline; }
.cg-header__mobile-service-links { display: none; }
.cg-header__main { position: relative; min-height: 81px; border-bottom: 1px solid rgba(225, 213, 200, .6); background: transparent; }
.cg-header__main::before { content: ""; position: absolute; inset: 0; background: rgba(251, 246, 238, .85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); pointer-events: none; }
.cg-header__main-inner { position: relative; min-height: 81px; gap: 20px; }
.cg-header__catalog-toggle, .cg-header__mobile-menu-toggle, .cg-header__icon-button, .cg-cart__trigger { border: 0; background: transparent; color: var(--cg-color-text); }
.cg-header__catalog-toggle { display: inline-flex; align-items: center; gap: 10px; width: 128px; min-height: 40px; padding: 0 16px; border-radius: 12px; background: var(--cg-color-accent); color: #fff; font-size: 16px; font-weight: 500; line-height: 20px; letter-spacing: -.15px; }
.cg-header__desktop-links { display: flex; align-items: center; gap: 24px; font-size: 16px; line-height: 20px; white-space: nowrap; }
.cg-header__desktop-links a:hover, .cg-header__desktop-links a:focus { color: var(--cg-color-accent); }
.cg-header__mobile-menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--cg-color-accent); color: #fff; }
.cg-brand { position: absolute; left: 50%; width: 165px; height: 30px; transform: translateX(-50%); white-space: nowrap; }
.cg-brand__wordmark { display: block; position: relative; width: 165px; height: 30px; font: 700 28px/28px var(--cg-font-brand); letter-spacing: -.45px; color: var(--cg-color-text); }
.cg-brand__wordmark span { color: var(--cg-color-accent); }
.cg-brand__wordmark sup { position: absolute; top: 0; right: 0; width: 14px; height: 14px; color: var(--cg-color-accent); font: 400 14px/14px Arial, sans-serif; vertical-align: top; }
.cg-header__actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.cg-header__action-icons { display: flex; align-items: center; width: 64px; height: 32px; }
.cg-header__icon-button { display: inline-flex; align-items: center; justify-content: center; position: relative; min-width: 32px; width: 32px; height: 32px; border-radius: 8px; color: #190F0A; font-size: 16px; }
.cg-cart__trigger { display: inline-flex; align-items: center; justify-content: center; position: relative; }
.cg-header__icon-button:hover, .cg-header__icon-button:focus, .cg-cart__trigger:hover, .cg-cart__trigger:focus { background: rgba(151, 75, 35, .1); color: var(--cg-color-accent); outline: none; }
.cg-header__phone { position: relative; display: flex; align-items: center; gap: 14px; margin-right: 4px; font-size: 14px; line-height: 20px; font-weight: 600; white-space: nowrap; }
.cg-desktop-phone { display: inline-flex; align-items: center; gap: 6px; }
.cg-desktop-phone .cg-icon-svg--messenger { overflow: visible; }
.cg-phone__primary { display: inline-flex; align-items: center; gap: 5px; }
.cg-phone__messenger { color: #7b9b4b; font-size: 12px; }
.cg-language { position: relative; display: flex; align-items: center; }
.cg-language__desktop { display: inline-flex; align-items: center; min-height: 20px; border: 0; background: transparent; color: #F8F5EE; padding: 0; font-weight: 400; }
.cg-language__label { margin-right: 8px; font-size: 11.7px; line-height: 20px; opacity: .8; }
.cg-language__code { font-size: 12.4px; line-height: 20px; }
.cg-language__desktop i { margin-left: 6px; font-size: 8px; }
.cg-language__desktop-menu { min-width: 100px; padding: 5px; background: var(--cg-color-surface); }
.cg-language__desktop-menu button, .cg-language__desktop-menu a { display: block; width: 100%; border: 0; background: transparent; padding: 7px 8px; color: var(--cg-color-text); text-align: left; text-decoration: none; }
.cg-language__desktop-menu button:hover, .cg-language__desktop-menu button:focus, .cg-language__desktop-menu a:hover, .cg-language__desktop-menu a:focus { background: var(--cg-color-background-alt); }
.cg-language__mobile { display: none; gap: 8px; }
.cg-language__mobile button, .cg-language__mobile a { border: 0; background: transparent; color: #fff; opacity: .65; padding: 0; font-size: 11px; text-decoration: none; }
.cg-language__mobile button.is-active, .cg-language__mobile a.is-active { opacity: 1; font-weight: 700; }
.cg-cart { position: relative; }
.cg-cart__trigger { gap: 8px; min-width: 108px; height: 48px; padding: 0 10px; border: 1px solid rgba(151, 75, 35, .4); border-radius: 18px; background: #FFFDF9; color: var(--cg-color-text); }
.cg-cart__trigger-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: #974B23; }
.cg-icon-svg--cart { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cg-cart__trigger-summary { display: flex; min-width: 52px; flex-direction: column; align-items: flex-start; }
.cg-cart__trigger-summary small { color: var(--cg-color-text-muted); font-size: 12px; font-weight: 400; line-height: 15px; white-space: nowrap; }
.cg-cart__trigger:hover, .cg-cart__trigger:focus { border-color: var(--cg-color-accent); background: #fff; color: var(--cg-color-accent); }
.cg-cart__trigger-total { font-size: 13px; font-weight: 600; line-height: 16px; white-space: nowrap; }
.cg-cart__badge { display: inline-flex; position: absolute; top: 6px; left: 21px; z-index: 1; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 4px; border-radius: 999px; background: #E4BD81; color: #462313; font-size: 10px; font-weight: 700; line-height: 12px; }
.cg-header__phones-mobile { display: none; }
.cg-mobile-phone { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.cg-mobile-phone__number { display: inline-flex; align-items: center; gap: 4px; }
.cg-mobile-phone__messengers { display: inline-flex; align-items: center; gap: 3px; }
.cg-mobile-phone__messengers a { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: transparent; color: #D28D47; }
.cg-mobile-phone__messengers a[aria-label="Telegram"] { background: transparent; color: #D28D47; }
.cg-search-panel { position: absolute; top: 100%; right: max(24px, calc((100% - 1280px) / 2)); width: 360px; padding: 12px; background: var(--cg-color-surface); border: 1px solid var(--cg-color-border); border-radius: 0 0 16px 16px; box-shadow: var(--cg-shadow-panel); z-index: var(--cg-z-panel); }
.cg-search { display: flex; align-items: center; gap: 8px; }
.cg-search input { min-width: 0; flex: 1; height: 42px; border: 1px solid var(--cg-color-border); border-radius: 10px; padding: 0 12px; background: #fff; color: var(--cg-color-text); }
.cg-search button { width: 42px; height: 42px; border: 0; border-radius: 10px; background: var(--cg-color-accent); color: #fff; }
.cg-search__close { background: transparent !important; color: var(--cg-color-text) !important; }
.cg-overlay { position: fixed; inset: 0; z-index: var(--cg-z-overlay-modal); background: rgba(59, 33, 22, .3); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; }
.cg-overlay.is-visible { opacity: 1; pointer-events: auto; }
.cg-overlay--below-header { top: var(--cg-header-height, 124px); z-index: var(--cg-z-overlay); }
.cg-category-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, -10px); width: min(1280px, calc(100% - 48px)); max-height: calc(100vh - 140px); overflow: auto; padding: 24px; background: #fff; border: 1px solid var(--cg-color-border); border-radius: 16px; box-shadow: var(--cg-shadow-panel); z-index: var(--cg-z-panel); opacity: 0; pointer-events: none; }
.cg-category-menu.is-open { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.cg-category-menu__header { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--cg-color-border); text-transform: uppercase; letter-spacing: .04em; }
.cg-category-menu__header span { margin-left: auto; color: var(--cg-color-text-muted); font-size: 12px; text-transform: none; letter-spacing: 0; }
.cg-category-menu__header button { border: 0; background: transparent; color: var(--cg-color-text-muted); padding: 4px 8px; }
.cg-category-menu__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding-top: 18px; }
.cg-category-menu__item { border-radius: 12px; background: #F4E3D4; }
.cg-category-menu__link-row { display: flex; align-items: stretch; }
.cg-header .cg-category-menu__link { display: flex; align-items: center; gap: 10px; flex: 1; min-height: 58px; padding: 9px 12px; border-radius: 12px; color: #311C0F; font-weight: 600; }
.cg-category-menu__link:hover, .cg-category-menu__link:focus { background: #974B23; color: #FFFFFF; box-shadow: 0 4px 10.9px rgba(0, 0, 0, .25); outline: none; }
.cg-category-menu__icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; background: #DFAF7D; color: #311C0F; overflow: hidden; }
.cg-category-menu__link:hover .cg-category-menu__icon, .cg-category-menu__link:focus .cg-category-menu__icon { background: #462312; color: #FFFFFF; }
.cg-category-menu__icon img,
.cg-category-menu__icon svg { width: 26px; height: 26px; object-fit: contain; color: currentColor; }
.cg-category-menu__expand { display: none; border: 0; background: transparent; color: var(--cg-color-text-muted); padding: 0 14px; }
.cg-category-menu__children { display: none; padding: 0 16px 12px 60px; }
.cg-category-menu__children.is-open { display: block; }
.cg-category-menu__children a { display: block; padding: 5px 0; color: var(--cg-color-text-muted); font-size: 13px; }
.cg-cart__panel { position: fixed; top: 0; right: 0; display: flex; flex-direction: column; width: min(500px, 100vw); height: 100vh; height: 100dvh; background: var(--cg-color-background); box-shadow: -18px 0 70px rgba(59, 33, 22, .2); z-index: 1100; transform: translateX(100%); pointer-events: none; }
.cg-cart__panel.is-open { transform: translateX(0); pointer-events: auto; }
.cg-cart__header { display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 0 24px; border-bottom: 1px solid #E6DCD2; }
.cg-cart__header strong { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; line-height: 20px; }
.cg-cart__title-icon { display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; color: #A24512; }
.cg-cart__title-icon-svg { display: block; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cg-cart__header button, .cg-cart__remove { border: 0; background: transparent; color: var(--cg-color-text-muted); }
.cg-cart__header button { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; padding: 0; color: var(--cg-color-text); }
.cg-cart__control-icon { display: block; width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cg-cart__status { padding: 10px 22px; border-bottom: 1px solid var(--cg-color-border); background: #fff8f2; color: var(--cg-color-text-muted); font-size: 13px; }
.cg-cart__status[data-state="error"] { background: #fff0ec; color: #9b2c1f; }
.cg-cart__status i { margin-right: 6px; }
.cg-cart[aria-busy="true"] .cg-cart__items,
.cg-cart[aria-busy="true"] .cg-cart__clear,
.cg-cart[aria-busy="true"] .cg-cart__footer { opacity: .58; }
.cg-cart [data-cg-cart-control]:disabled { cursor: wait; }
.cg-cart__items { flex: 0 1 auto; max-height: calc(100dvh - 264px); overflow: auto; padding: 16px 24px; }
.cg-cart__item { position: relative; display: flex; gap: 12px; padding: 12px; margin-bottom: 12px; border: 1px solid #E6DCD2; border-radius: 16px; background: #fff; }
.cg-cart__item-image { width: 64px; height: 64px; flex: 0 0 64px; border-radius: 12px; overflow: hidden; background: var(--cg-color-background-alt); }
.cg-cart__item-image img { width: 100%; height: 100%; object-fit: contain; }
.cg-cart__item-main { min-width: 0; flex: 1; }
.cg-cart__item-name { display: block; max-width: calc(100% - 24px); margin-bottom: 2px; font-size: 14px; line-height: 20px; font-weight: 600; }
.cg-cart__item-main small { display: block; color: var(--cg-color-text-muted); font-size: 12px; line-height: 16px; }
.cg-cart__item-bottom { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cg-cart__quantity { display: inline-flex; align-items: center; gap: 8px; }
.cg-cart__quantity button { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; padding: 0; border: 1px solid #E6DCD2; border-radius: 50%; background: #fff; color: var(--cg-color-text-muted); }
.cg-cart__quantity input { width: 24px; height: 28px; padding: 0; border: 0; appearance: textfield; -moz-appearance: textfield; text-align: center; background: transparent; color: var(--cg-color-text); }
.cg-cart__quantity input::-webkit-inner-spin-button, .cg-cart__quantity input::-webkit-outer-spin-button { margin: 0; -webkit-appearance: none; }
.cg-cart__item-bottom > strong { margin-left: auto; white-space: nowrap; }
.cg-cart__remove { position: absolute; top: 12px; right: 12px; padding: 0; }
.cg-cart__clear { padding: 0 24px 16px; }
.cg-cart__clear button { border: 0; background: transparent; color: var(--cg-color-text-muted); text-decoration: none; }
.cg-cart__footer { flex: 0 0 152px; margin-top: auto; padding: 20px 24px 24px; border-top: 1px solid #E6DCD2; }
.cg-cart__footer > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: 14px; line-height: 20px; }
.cg-cart__footer > div strong { font-size: 22px; line-height: 28px; }
.cg-cart__checkout { display: flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 18px; border-radius: 12px; background: linear-gradient(135deg, #A24512 0%, #DE781F 100%); color: #fff !important; text-align: center; font-weight: 700; }
.cg-cart__empty { display: flex; flex: 1; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--cg-color-text-muted); }
.cg-cart__empty i { font-size: 34px; color: var(--cg-color-accent); }

@media (max-width: 1199px) {
	.cg-shell { width: min(100% - 32px, 720px); }
	.cg-header__utility { min-height: 32.5px; background: #4C271A; }
	.cg-header__utility-inner { min-height: 32.5px; }
	.cg-header__utility-links { display: none; }
	.cg-header__mobile-service-links, .cg-language__mobile { display: flex; }
	.cg-language__desktop, .cg-language__desktop-menu { display: none; }
	.cg-header__main { border-bottom: 0; }
	.cg-header__main::before { background: #FFF9F1; -webkit-backdrop-filter: none; backdrop-filter: none; }
	.cg-header__main, .cg-header__main-inner { min-height: 60px; }
	.cg-header__main-inner { justify-content: space-between; gap: 4px; }
	.cg-header__catalog-toggle, .cg-header__desktop-links, .cg-header__phone--desktop { display: none; }
	.cg-header__mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: var(--cg-color-accent); }
	.cg-brand { position: static; width: 152px; height: 28px; transform: none; margin-right: auto; margin-left: 0; }
	.cg-brand__wordmark { width: 152px; height: 28px; font-size: 28px; line-height: 28px; }
	.cg-header__actions { gap: 4px; margin-left: 0; }
	.cg-header__action-icons { width: 76px; height: 36px; gap: 4px; }
	.cg-header__icon-button, .cg-cart__trigger { min-width: 36px; width: 36px; height: 36px; border: 1px solid #E6DCD2; border-radius: 8px; }
	.cg-cart__trigger-summary { display: none; }
	.cg-cart__trigger { width: 36px; padding: 0; border-color: var(--cg-color-accent); background: var(--cg-color-accent); color: #fff; }
	.cg-cart__trigger:hover, .cg-cart__trigger:focus { border-color: var(--cg-color-accent); background: var(--cg-color-accent); color: #fff; }
	.cg-cart__trigger-icon { width: 16px; height: 16px; color: #fff; }
	.cg-icon-svg--cart { width: 16px; height: 16px; }
	.cg-cart__badge { top: -4px; right: -4px; left: auto; min-width: 16px; height: 16px; padding: 0 3px; border: 0; }
	.cg-header__phones-mobile { display: block; border-top: 0; border-bottom: 1px solid #E6DCD2; background: #FFF9F1; }
	.cg-header__phones-mobile-inner { justify-content: center; min-height: 31px; gap: 20px; font-size: 14px; line-height: 20px; font-weight: 600; }
	.cg-mobile-phone { gap: 4px; }
	.cg-mobile-phone__messengers { order: -1; gap: 4px; }
	.cg-mobile-phone__messengers a { width: 16px; height: 16px; border-radius: 0; background: transparent; color: #D28D47; }
	.cg-mobile-phone__messengers a[aria-label="Telegram"] { background: transparent; color: #D28D47; }
	.cg-search-panel { position: fixed; top: var(--cg-header-height, 124px); right: 0; width: 100%; border-radius: 0; }
	.cg-category-menu { position: fixed; top: var(--cg-header-height, 124px); left: 0; transform: translateX(-24px); width: min(360px, 92vw); max-height: calc(100vh - var(--cg-header-height, 124px)); height: calc(100vh - var(--cg-header-height, 124px)); border-radius: 0 18px 18px 0; padding: 20px 16px; }
	.cg-category-menu.is-open { transform: translateX(0); }
	.cg-category-menu__grid { display: block; }
	.cg-category-menu__item { margin-bottom: 8px; }
	.cg-category-menu__expand { display: block; }
	.cg-category-menu__children { padding-left: 60px; }
	.cg-cart__panel { inset: 0; width: 100vw; max-width: none; height: 100vh; height: 100dvh; box-shadow: none; }
	.cg-cart__header { padding: 0 20px; }
	.cg-cart__items { padding: 16px 20px; }
	.cg-cart__clear { padding-right: 20px; padding-left: 20px; }
	.cg-cart__footer { padding-right: 20px; padding-left: 20px; }
}

@media (max-width: 520px) {
	.cg-header__phones-mobile-inner { justify-content: center; gap: 20px; }
}

@media (max-width: 360px) {
	.cg-header__phones-mobile-inner { flex-wrap: wrap; justify-content: center; padding-top: 4px; padding-bottom: 4px; }
}

@media (max-width: 360px) {
	.cg-header__main-inner { gap: 4px; }
	.cg-brand { width: 134px; height: 24px; margin-left: 0; }
	.cg-brand__wordmark { width: 134px; height: 24px; font-size: 22px; line-height: 22px; }
	.cg-brand__wordmark sup { width: 12px; height: 12px; font-size: 12px; line-height: 12px; }
	.cg-header__actions { gap: 2px; }
	.cg-header__icon-button, .cg-cart__trigger { min-width: 36px; width: 36px; height: 36px; }
}

@media (max-width: 340px) {
	.cg-header__main-inner { gap: 2px; }
}

@media (min-width: 1200px) {
	.cg-header__mobile-menu-toggle, .cg-header__mobile-service-links, .cg-header__phones-mobile { display: none; }
}

@media (prefers-reduced-motion: no-preference) {
	.cg-overlay { transition: opacity 220ms ease; }
	.cg-category-menu { transition: opacity 220ms cubic-bezier(.22, 1, .36, 1), transform 220ms cubic-bezier(.22, 1, .36, 1); }
	.cg-cart__panel { transition: transform 220ms cubic-bezier(.22, 1, .36, 1); }
}

/* Legacy theme compatibility: the original stylesheet targets these IDs globally. */
header.cg-header { margin: 0; }
#search.cg-search { margin: 0; padding: 0; width: auto; background: transparent; }
#search.cg-search .input-lg, #search.cg-search .btn-lg { height: auto; line-height: inherit; padding: 0; }
#cart.cg-cart { margin: 0; width: auto; background: transparent; }
#cart.cg-cart > .btn, #cart.cg-cart.open > .btn { font-size: inherit; line-height: inherit; color: inherit; background: transparent; border: 0; box-shadow: none; padding: 0; text-shadow: none; }
#cart.cg-cart .dropdown-menu { display: none; }
#cart.cg-cart .cg-cart__panel { display: flex; min-width: 0; padding: 0; background: var(--cg-color-background); }
#cart.cg-cart .cg-cart__panel[hidden] { display: none; }
.cg-phone__messenger-link { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; color: #D28D47 !important; font-size: 12px; }

/* Figma footer */
.prefooter { margin: 0; padding: 0; border: 0; }
.cg-footer { width: 100%; min-height: 342px; margin: 0; padding: 0; overflow: hidden; background: #F7F1E8; color: #3B2116; font-family: var(--cg-font-ui); }
.cg-footer *, .cg-footer *::before, .cg-footer *::after { box-sizing: border-box; }
.cg-footer__main { display: grid; width: min(1266px, calc(100% - 48px)); height: 285px; grid-template-columns: 365px 288px 320px 280px; margin: 0 auto; padding-top: 57px; }
.cg-footer__brand { display: block; width: 164px; height: 24px; }
.cg-footer__brand img { display: block; width: 164px; height: 24px; }
.cg-footer__section h2 { margin: 0 0 16px; color: #3B2116; font-size: 14px; font-weight: 600; line-height: 20px; letter-spacing: .35px; text-align: start; text-transform: uppercase; }
.cg-footer__section ul { margin: 0; padding: 0; list-style: none; }
.cg-footer__section li { color: #7C6354; font-size: 14px; font-weight: 400; line-height: 20px; letter-spacing: -.15px; }
.cg-footer__section a { color: inherit; text-decoration: none; }
.cg-footer__section a:hover, .cg-footer__section a:focus { color: var(--cg-color-accent); outline: none; }
.cg-footer__section a:focus-visible, .cg-footer__brand:focus-visible, .cg-footer__socials a:focus-visible { outline: 2px solid var(--cg-color-accent); outline-offset: 3px; }
.cg-footer__section--catalog li, .cg-footer__section--information li { margin-bottom: 8px; }
.cg-footer__section--catalog li:last-child, .cg-footer__section--information li:last-child { margin-bottom: 0; }
.cg-footer__contacts li { margin-bottom: 12px; }
.cg-footer__contacts li:last-child { margin-bottom: 0; }
.cg-footer__contacts a { display: flex; align-items: center; gap: 8px; }
.cg-footer__contacts img { width: 16px; height: 16px; flex: 0 0 16px; }
.cg-footer__socials { display: flex; gap: 8px; margin-top: 20px; }
.cg-footer__socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 14px; background: #F1E6D8; color: #3B2116; }
.cg-footer__socials img { width: 16px; height: 16px; }
.cg-footer__copyright { display: flex; align-items: center; justify-content: center; height: 57px; border-top: 1px solid #E1D5C8; color: #7C6354; font-size: 12px; font-weight: 400; line-height: 16px; text-align: center; }

@media (min-width: 768px) and (max-width: 1313px) {
	.cg-footer { min-height: 0; }
	.cg-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 48px); height: auto; min-height: 285px; padding: 48px 0; row-gap: 40px; column-gap: 24px; }
	.cg-footer__brand { grid-column: 1; }
	.cg-footer__section--catalog { grid-column: 2; }
	.cg-footer__section--information { grid-column: 1; }
	.cg-footer__section--contact { grid-column: 2; }
}

@media (max-width: 767px) {
	.cg-footer { min-height: 585px; }
	.cg-footer__main { width: 100%; height: auto; min-height: 528px; padding: 50px 16px 18px; grid-template-columns: minmax(0, 169fr) minmax(0, 180fr); column-gap: 9px; grid-template-rows: 35px 57px minmax(168px, auto) 24px minmax(176px, auto); margin: 0; }
	.cg-footer__brand { grid-column: 1 / -1; grid-row: 1; width: 239px; height: 35px; }
	.cg-footer__brand img { width: 239px; height: 35px; }
	.cg-footer__section--catalog { grid-column: 1; grid-row: 3; }
	.cg-footer__section--information { grid-column: 2; grid-row: 3; }
	.cg-footer__section--contact { grid-column: 1 / -1; grid-row: 5; }
	.cg-footer__section li { overflow-wrap: anywhere; }
}

/* Category-page navigation: one semantic module for desktop and mobile. */
.cg-category-nav {
	width: 302px;
	max-width: 100%;
	overflow: hidden;
	border: 1px solid #E1D5C8;
	border-radius: 22px;
	background: #FFFDF9;
	color: #3B2116;
	font-family: var(--cg-font-ui);
}

.cg-category-nav__header {
	display: flex;
	height: 57px;
	align-items: center;
	justify-content: space-between;
	margin: 0 16px;
	border-bottom: 1px solid #E1D5C8;
}

.cg-category-nav__title {
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: -.2px;
	text-transform: uppercase;
}

.cg-category-nav__toggle {
	display: none;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #3B2116;
}

.cg-category-nav__toggle svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 220ms ease;
}

.cg-category-nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.cg-category-nav__panel { padding: 16px; }
.cg-category-nav__list { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; list-style: none; }
.cg-category-nav__item { min-width: 0; margin: 0; padding: 0; }

.cg-category-nav__link {
	display: flex;
	width: 100%;
	min-height: 40px;
	align-items: center;
	padding: 6px 12px;
	border-radius: 14px;
	background: #974B23;
	color: #FCF8F0 !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .35px;
	text-align: left;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background-color 180ms ease, box-shadow 180ms ease;
}

.cg-category-nav__link:hover,
.cg-category-nav__link:focus,
.cg-category-nav__link.is-active {
	background: #462312;
	box-shadow: 0 4px 17.6px rgba(0, 0, 0, .25);
	color: #FCF8F0 !important;
	outline: none;
}

.cg-category-nav__link--child { padding-left: 24px; background: #97591B; }

/* Figma category news */
.cg-category-news {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding: 16px;
	border: 1px solid #DFD6C9;
	border-radius: 14.4px;
	background: #FFFDFA;
	color: #3B2116;
	font-family: var(--cg-font-ui);
}

.cg-category-news *,
.cg-category-news *::before,
.cg-category-news *::after { box-sizing: border-box; }

.cg-category-news__heading {
	min-height: 41px;
	margin: 0 0 16px;
	padding: 0 0 12px;
	border: 0;
	border-bottom: 1px solid #97591B;
	color: #97591B;
	font-family: var(--cg-font-ui);
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: .45px;
	text-align: left;
	text-transform: uppercase;
}

.cg-category-news__intro { margin: 0 0 16px; color: #7C6354; font-size: 14px; line-height: 20px; }
.cg-category-news__list { display: flex; flex-direction: column; gap: 24px; }
.cg-category-news__item { min-width: 0; margin: 0; }

.cg-category-news__date {
	display: block;
	margin: 0 0 6px;
	color: #7C6354;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: -.15px;
}

.cg-category-news__title {
	display: block;
	margin: 0 0 8px;
	color: #3B2116;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: -.32px;
	text-decoration: none;
}

.cg-category-news__title:hover,
.cg-category-news__title:focus { color: #97591B; text-decoration: underline; outline: none; }

.cg-category-news__preview {
	margin: 0;
	color: #7C6354;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.cg-category-news__all {
	display: inline-block;
	min-height: 26px;
	margin-top: 24px;
	color: #6E605A;
	font-size: 13.6px;
	font-weight: 700;
	line-height: 26px;
	text-decoration: underline;
}

.cg-category-news__all:hover,
.cg-category-news__all:focus { color: #97591B; outline: none; }
.cg-category-news-slot { width: 100%; min-width: 0; }
.cg-category-news-slot[hidden] { display: none !important; }
.cg-category-news-slot > .cg-category-column__module { display: block; margin: 0; }

@supports selector(.container:has(.cg-category-nav)) {
	@media (min-width: 768px) {
		.container:not(.cg-category-page):has(> .row > #column-left .cg-category-nav):not(:has(> .row > #column-right)) {
			width: min(1280px, calc(100% - 32px));
			padding-right: 0;
			padding-left: 0;
		}

		.container:not(.cg-category-page):has(> .row > #column-left .cg-category-nav):not(:has(> .row > #column-right)) > .row {
			display: grid;
			grid-template-columns: minmax(260px, 302px) minmax(0, 1fr);
			gap: 24px;
			margin-right: 0;
			margin-left: 0;
		}

		.container:not(.cg-category-page):has(> .row > #column-left .cg-category-nav):not(:has(> .row > #column-right)) > .row::before,
		.container:not(.cg-category-page):has(> .row > #column-left .cg-category-nav):not(:has(> .row > #column-right)) > .row::after {
			display: none;
		}

		.container:not(.cg-category-page):has(> .row > #column-left .cg-category-nav):not(:has(> .row > #column-right)) > .row > #column-left,
		.container:not(.cg-category-page):has(> .row > #column-left .cg-category-nav):not(:has(> .row > #column-right)) > .row > #content {
			float: none;
			width: auto;
			padding: 0;
		}

		.container:not(.cg-category-page):has(> .row > #column-left .cg-category-nav):not(:has(> .row > #column-right)) > .row > #column-left > .cg-category-news {
			margin-top: 24px;
		}
	}
}

@media (min-width: 768px) {
	.cg-category-layout {
		display: grid;
		grid-template-columns: minmax(260px, 302px) minmax(0, 1fr);
		gap: 24px;
	}

	.cg-category-layout::before,
	.cg-category-layout::after { display: none; }
	.cg-category-layout > #column-left,
	.cg-category-layout > #content { float: none; width: auto; padding: 0; }
	.cg-category-column__module + .cg-category-column__module { margin-top: 24px; }
}

@media (max-width: 767px) {
	.cg-category-layout > .cg-category-column {
		display: block !important;
		float: none;
		width: calc(100% - 10px);
		margin: 0 5px 24px;
		padding: 0;
	}

	.cg-category-column > .cg-category-column__module:not(.cg-category-column__module--category):not(.cg-category-column__module--category_hack) { display: none; }
	.cg-category-news-slot { margin: 24px 0 32px; }
	.cg-category-nav { width: 100%; }
	.cg-category-nav__toggle { display: inline-flex; }
	.cg-category-nav__panel { padding: 12px 16px 16px; }
	.cg-category-nav__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.cg-category-nav__link { justify-content: center; padding: 6px 8px; background: #97591B; text-align: center; }
	.cg-category-nav__link--child { padding: 6px 8px; }
	.cg-category-nav__link:hover,
	.cg-category-nav__link:focus,
	.cg-category-nav__link.is-active { background: #462312; }
	.cg-category-nav[data-cg-category-navigation-enhanced="true"][data-cg-category-navigation-open="false"] .cg-category-nav__panel { display: none; }
}

@media (max-width: 359px) {
	.cg-footer { min-height: 0; }
	.cg-footer__main { grid-template-rows: 35px 57px auto 24px auto; }
}

/* Figma homepage newsletter */
.cg-newsletter { position: relative; width: 100%; min-height: 356px; overflow: hidden; background: #462312 url("../image/newsletter-background.jpg") center center / cover no-repeat; color: #F8F5EE; font-family: var(--cg-font-ui); text-align: center; }
.cg-newsletter::before { content: ""; position: absolute; inset: 0; background: rgba(37, 19, 10, .66); pointer-events: none; }
.cg-newsletter__content { position: relative; display: flex; width: 100%; min-height: 356px; box-sizing: border-box; flex-direction: column; align-items: center; margin: 0 auto; padding: 80px 16px 56px; }
.cg-newsletter h2 { width: 654px; max-width: 100%; min-height: 40px; margin: 0; padding: 0; border: 0; color: #F8F5EE; font-family: var(--cg-font-ui); font-size: 32.1px; font-weight: 600; line-height: 40px; letter-spacing: -.9px; text-align: center; }
.cg-newsletter__description { width: 607px; max-width: 100%; min-height: 24px; margin: 16px 0 0; color: rgba(248, 245, 238, .8); font-size: 13.6px; font-weight: 400; line-height: 24px; text-align: center; }
.cg-newsletter__form { display: grid; width: 671px; max-width: 100%; min-height: 48px; grid-template-columns: minmax(0, 492.87px) minmax(0, 161.13px); gap: 17px; margin: 22px 0 0; }
.cg-newsletter__input { width: 100%; min-height: 48px; box-sizing: border-box; padding: 0 16px; border: 1px solid rgba(248, 245, 238, .2); border-radius: 8px; outline: 0; background: #554A45; color: #F8F5EE; font-family: var(--cg-font-ui); font-size: 12.6px; font-weight: 400; line-height: 16px; }
.cg-newsletter__input::placeholder { color: #F8F5EE; opacity: 1; }
.cg-newsletter__input:focus { border-color: #EEE2D7; box-shadow: 0 0 0 2px rgba(238, 226, 215, .18); }
.cg-newsletter__submit { width: 100%; min-height: 46px; box-sizing: border-box; margin-top: 1px; padding: 0 24px; border: 0; border-radius: 8px; background: #EEE2D7; color: #311B11; font-family: var(--cg-font-ui); font-size: 11.8px; font-weight: 500; line-height: 20px; text-align: center; }
.cg-newsletter__submit:hover, .cg-newsletter__submit:focus { background: #F8F5EE; color: #311B11; outline: none; }
.cg-newsletter__submit:focus-visible { box-shadow: 0 0 0 3px rgba(238, 226, 215, .35); }
.cg-newsletter__submit:disabled { cursor: wait; opacity: .72; }
.cg-newsletter__privacy { width: 445px; max-width: 100%; min-height: 20px; margin: 26px 0 0; color: rgba(248, 245, 238, .6); font-size: 12.1px; font-weight: 400; line-height: 20px; text-align: center; }
.cg-newsletter__status { width: 100%; min-height: 16px; margin: 8px 0 0; color: #F8F5EE; font-size: 11px; font-weight: 500; line-height: 16px; overflow-wrap: anywhere; text-align: center; }
.cg-newsletter__status[data-state="error"] { color: #FFD3C7; }

@media (max-width: 767px) {
	.cg-newsletter { min-height: 289px; background-color: #4C271A; }
	.cg-newsletter__content { min-height: 289px; padding: 28px 16px 6px; }
	.cg-newsletter h2 { width: 318px; min-height: 52px; font-size: 20px; line-height: 26px; letter-spacing: -.4px; }
	.cg-newsletter__description { width: 299.1px; height: 32px; min-height: 32px; margin-top: 7.31px; color: rgba(250, 244, 236, .8); font-size: 12px; line-height: 18px; }
	.cg-newsletter__form { width: 318px; min-height: 97px; display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
	.cg-newsletter__input, .cg-newsletter__submit { width: 100%; min-height: 43.5px; flex: 0 0 auto; }
	.cg-newsletter__input { font-size: 13px; line-height: 15px; }
	.cg-newsletter__submit { margin-top: 0; }
	.cg-newsletter__privacy { width: 292.03px; height: 15px; min-height: 15px; margin-top: 12px; color: rgba(250, 244, 236, .6); font-size: 10px; line-height: 15px; letter-spacing: .12px; white-space: nowrap; }
	.cg-newsletter__status { min-height: 15px; margin-top: 6.69px; font-size: 10px; line-height: 15px; }
}

@media (max-width: 359px) {
	.cg-newsletter__description { height: auto; min-height: 36px; }
	.cg-newsletter__form { margin-top: 14px; }
	.cg-newsletter__privacy { height: auto; white-space: normal; }
}

/* Figma homepage hero */
#top-content-slider { margin: 30px 0 0; }
#top-content-slider > .container { width: min(1280px, calc(100% - 32px)); margin: 0 auto; padding: 0; }
#top-content-slider > .container > .row { margin: 0; }
#top-content-slider > .container > .row > [class*="col-"] { padding: 0; }

.cg-hero { position: relative; width: 100%; height: 590px; margin: 0; overflow: hidden; border-radius: 26px; background: #3B2116; box-shadow: 0 16px 40px -20px rgba(103, 59, 38, .35); color: #FBF6EE; font-family: var(--cg-font-ui); }
.cg-hero *, .cg-hero *::before, .cg-hero *::after { box-sizing: border-box; }
.cg-hero__carousel, .cg-hero__carousel .swiper-wrapper, .cg-hero__carousel .swiper-slide, .cg-hero__slide { height: 590px; }
.cg-hero__carousel { display: block !important; width: 100%; margin: 0; background: transparent; }
.cg-hero__slide { position: relative; overflow: hidden; }
.cg-hero__slide::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(16, 9, 6, .85) 0%, rgba(42, 23, 14, .55) 50%, rgba(59, 33, 22, .10) 100%); pointer-events: none; }
.cg-hero__image, #content .cg-hero__image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.cg-hero__content { position: absolute; z-index: 2; top: 156.5px; left: 64px; width: 465px; text-align: left; }
.cg-hero__title { width: 465px; min-height: 138.5px; margin: 0; padding: 0; color: #FBF6EE; font-family: var(--cg-font-ui); font-size: 60px; font-weight: 700; line-height: 63px; letter-spacing: -1.2px; text-align: left; }
.cg-hero__title-line { display: block; white-space: nowrap; }
.cg-hero__title-line--accent { color: #E4BD81; }
.cg-hero__description { width: 452px; min-height: 78px; margin: 17px 0 0; color: rgba(251, 246, 238, .85); font-size: 18px; font-weight: 400; line-height: 28px; letter-spacing: -.45px; }
.cg-hero__cta { display: inline-flex; width: 242px; height: 52px; align-items: center; justify-content: space-between; margin-top: 31px; padding: 0 24px; border-radius: 18px; background: #FBF6EE; box-shadow: 0 4px 6px -4px rgba(0, 0, 0, .10), 0 10px 15px -3px rgba(0, 0, 0, .10); color: #3B2116; font-size: 16px; font-weight: 600; line-height: 24px; letter-spacing: -.32px; text-decoration: none; transition: color 300ms ease-out, background-color 300ms ease-out, transform 300ms ease-out; }
.cg-hero__cta:hover, .cg-hero__cta:focus { background: #E4BD81; color: #3B2116; text-decoration: none; transform: translateY(-1px); outline: none; }
.cg-hero__cta:focus-visible { outline: 2px solid #FBF6EE; outline-offset: 3px; }
.cg-hero__cta svg { display: block; width: 20px; height: 20px; flex: 0 0 20px; }
.cg-hero__navigation { position: absolute; z-index: 3; bottom: 20px; display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 50%; background: #FBF6EE; color: #3B2116; transition: background-color 220ms ease, color 220ms ease, transform 220ms ease; }
.cg-hero__navigation--previous { right: 74px; }
.cg-hero__navigation--next { right: 30px; }
.cg-hero__navigation:hover, .cg-hero__navigation:focus { background: #E4BD81; color: #3B2116; outline: none; transform: translateY(-1px); }
.cg-hero__navigation:focus-visible { outline: 2px solid #FBF6EE; outline-offset: 2px; }
.cg-hero__arrow { display: block; position: relative; width: 16px; height: 16px; }
.cg-hero__arrow::before { content: ""; position: absolute; top: 4px; width: 8px; height: 8px; border-top: 1.33px solid currentColor; border-right: 1.33px solid currentColor; }
.cg-hero__arrow--previous::before { left: 5px; transform: rotate(-135deg); }
.cg-hero__arrow--next::before { right: 5px; transform: rotate(45deg); }
.cg-hero__indicators { display: none; }
.cg-hero__catalog-anchor { display: block; position: relative; top: -118px; visibility: hidden; }

@media (max-width: 767px) {
	html { scrollbar-gutter: auto; }
	#top-content-slider { margin-top: 16px; }
	#top-content-slider > .container { width: min(1280px, calc(100% - 32px)); }
	.cg-hero { height: 389px; border-radius: 18px; box-shadow: 0 12px 30px -18px rgba(103, 59, 38, .35); }
	.cg-hero__carousel, .cg-hero__carousel .swiper-wrapper, .cg-hero__carousel .swiper-slide, .cg-hero__slide { height: 389px; }
	.cg-hero__slide::after { background: linear-gradient(180deg, rgba(16, 9, 6, .04) 0%, rgba(16, 9, 6, .18) 40%, rgba(16, 9, 6, .94) 100%); }
	.cg-hero__content { top: 207px; left: 16px; width: 322px; }
	.cg-hero__title { width: 322px; min-height: 57px; font-size: 24px; font-weight: 600; line-height: 24px; letter-spacing: -.44px; }
	.cg-hero__description { width: 260px; min-height: 54px; margin-top: 8px; color: #FFFFFF; font-size: 12px; line-height: 18px; letter-spacing: 0; }
	.cg-hero__cta { display: none; }
	.cg-hero__navigation { top: 347.5px; bottom: auto; width: 16px; height: 16px; border-radius: 0; background: transparent; color: #F8F5EE; }
	.cg-hero__navigation:hover, .cg-hero__navigation:focus { background: transparent; color: #E4BD81; transform: none; }
	.cg-hero__navigation--previous { top: 347.5px; right: auto; left: 16px; }
	.cg-hero__navigation--next { top: 347.5px; right: auto; left: 96px; }
	.cg-hero__indicators { display: flex; position: absolute; z-index: 3; top: 353.5px; left: 44px; height: 6px; align-items: center; gap: 4px; text-align: left; }
	.cg-hero__indicators [data-cg-hero-indicator] { display: block; width: 6px; height: 6px; border-radius: 999px; background: #F8F5EE; transition: width 220ms ease, background-color 220ms ease; }
	.cg-hero__indicators [data-cg-hero-indicator].is-active { width: 20px; background: #D28D47; }
	.cg-hero__catalog-anchor { top: -105px; }
}

@media (max-width: 374px) {
	.cg-hero__content { width: calc(100% - 32px); }
	.cg-hero__title { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.cg-hero__carousel, .cg-hero__carousel * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Figma homepage products */
.cg-home-products { width: min(1280px, calc(100vw - 32px)); margin: 72px 0 96px 50%; transform: translateX(-50%); color: #3B2116; font-family: var(--cg-font-ui); }
.cg-home-products *, .cg-home-products *::before, .cg-home-products *::after { box-sizing: border-box; }
.cg-home-products__header { margin: 0 0 28px; }
.cg-home-products__eyebrow { margin: 0 0 4px; color: #974B23; font-size: 14px; font-weight: 600; line-height: 20px; letter-spacing: .35px; text-transform: uppercase; }
.cg-home-products__header h2 { margin: 0; padding-bottom: 0; color: #3B2116; font-size: 36px; font-weight: 700; line-height: 40px; letter-spacing: -.72px; text-align: start; }
.cg-home-products__categories { display: flex; width: 100%; align-items: center; gap: 8px; margin: 0 0 24px; overflow-x: auto; padding: 0 0 4px; scrollbar-width: none; }
.cg-home-products__categories::-webkit-scrollbar { display: none; }
.cg-home-products__category { min-width: max-content; height: 38px; padding: 0 14px; border: 1px solid #E1D5C8; border-radius: 999px; background: #FFFDF9; color: #7C6354; font-family: inherit; font-size: 13px; font-weight: 400; line-height: 20px; transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease; }
.cg-home-products__category:hover, .cg-home-products__category:focus { border-color: #974B23; color: #974B23; outline: none; }
.cg-home-products__category:focus-visible { box-shadow: 0 0 0 3px rgba(151, 75, 35, .18); }
.cg-home-products__category.is-active { border-color: #974B23; background: #974B23; color: #FFFFFF; font-weight: 500; }
.cg-home-products__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; min-height: 506px; transition: opacity 180ms ease; }
.cg-home-products__grid.is-loading { opacity: .52; pointer-events: none; }
.cg-product-card { display: flex; min-width: 0; min-height: 506px; flex-direction: column; overflow: hidden; border: 1px solid rgba(225, 213, 200, .7); border-radius: 22px; background: #FFFDF9; box-shadow: 0 2px 8px -2px rgba(103, 59, 38, .12); font-family: var(--cg-font-ui); }
.cg-product-card__media { position: relative; margin: 0; overflow: hidden; border-radius: 22px 22px 0 0; background: #F7F1E8; aspect-ratio: 300 / 295; }
.cg-product-card__media > a { display: block; width: 100%; height: 100%; }
.cg-product-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.cg-product-card:hover .cg-product-card__media img { transform: scale(1.025); }
.cg-product-card__badges { position: absolute; z-index: 1; top: 12px; left: 12px; display: flex; max-width: calc(100% - 24px); flex-wrap: wrap; gap: 6px; }
.cg-product-card__badge { display: inline-flex; min-height: 24px; align-items: center; padding: 3px 10px; border-radius: 999px; background: #CC2827; color: #FFFFFF; font-size: 11px; font-weight: 600; line-height: 18px; }
.cg-product-card__body { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 16px; }
.cg-product-card__category { align-self: flex-start; margin: 0 0 8px; color: #974B23; font-size: 12px; font-weight: 500; line-height: 16px; letter-spacing: .22px; text-decoration: none; text-transform: uppercase; }
.cg-product-card__category:hover, .cg-product-card__category:focus { color: #673B26; text-decoration: underline; }
.cg-product-card__title { min-height: 38px; margin: 0 0 8px; padding: 0; border: 0; font-family: inherit; font-size: 16px; font-weight: 600; line-height: 19.2px; text-align: left; }
.cg-product-card__title a { display: -webkit-box; overflow: hidden; color: #3B2116; text-align: left; text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.cg-product-card__title a:hover, .cg-product-card__title a:focus { color: #974B23; }
.cg-product-card__country { display: flex; min-height: 20px; align-items: center; gap: 4px; margin: 0 0 12px; color: #7C6354; font-size: 14px; font-weight: 400; line-height: 20px; }
.cg-product-card__country b { font-size: 14px; font-weight: 400; line-height: 16px; }
.cg-product-card__country strong { overflow: hidden; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.cg-product-card__purchase { display: flex; min-height: 0; flex: 1; flex-direction: column; }
.cg-product-card__options { display: flex; min-width: 0; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0 0 12px; padding: 0; border: 0; }
.cg-product-card__option { position: relative; display: inline-flex; margin: 0; font-weight: 400; }
.cg-product-card__option input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.cg-product-card__option span, .cg-product-card__options-toggle { display: inline-flex; min-width: 42px; height: 26px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid #E1D5C8; border-radius: 999px; background: #FFFDF9; color: #7C6354; font-family: inherit; font-size: 11px; font-weight: 400; line-height: 16px; cursor: pointer; }
.cg-product-card__option input:checked + span { border-color: #974B23; background: #974B23; color: #FFFFFF; }
.cg-product-card__option input:focus-visible + span, .cg-product-card__options-toggle:focus-visible { box-shadow: 0 0 0 3px rgba(151, 75, 35, .18); outline: none; }
.cg-product-card__option input:disabled + span { cursor: not-allowed; opacity: .45; }
.cg-product-card__option--overflow { display: none; }
.cg-product-card__options.is-expanded .cg-product-card__option--overflow { display: inline-flex; }
.cg-product-card__options.is-expanded .cg-product-card__options-toggle { order: 99; }
.cg-product-card__bottom { display: flex; min-height: 40px; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.cg-product-card__price { display: flex; min-width: 0; flex-wrap: wrap; align-items: baseline; gap: 6px; margin: 0; }
.cg-product-card__price strong { color: #3B2116; font-size: 20px; font-weight: 700; line-height: 28px; }
.cg-product-card__price del { color: #A18A7B; font-size: 14px; font-weight: 400; line-height: 20px; }
.cg-product-card__cart { display: inline-flex; width: 40px; height: 40px; flex: 0 0 40px; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 18px; background: #974B23; color: #FFFFFF; transition: background-color 180ms ease, transform 180ms ease; }
.cg-product-card__cart:hover, .cg-product-card__cart:focus { background: #673B26; outline: none; transform: translateY(-1px); }
.cg-product-card__cart:focus-visible { box-shadow: 0 0 0 3px rgba(151, 75, 35, .22); }
.cg-product-card__cart:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.cg-product-card__cart.is-loading svg { animation: cg-product-spin 800ms linear infinite; }
.cg-product-card__cart svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.cg-product-card__status { min-height: 0; margin: 6px 0 0; color: #9B2C20; font-size: 11px; line-height: 15px; }
.cg-product-card__status:empty { display: none; }
.product-layout.product-list .cg-product-card { width: 100%; height: 210px; min-height: 210px; flex-direction: row; }
.product-layout.product-list .cg-product-card__media { width: 184px; height: 178px; flex: 0 0 184px; margin: 16px 0 16px 16px; border-radius: 24px; aspect-ratio: auto; }
.product-layout.product-list .cg-product-card__body { padding: 24px 16px 16px; }
.product-layout.product-list .cg-product-card__category { margin-bottom: 4px; }
.product-layout.product-list .cg-product-card__title { min-height: 0; margin-bottom: 4px; }
.product-layout.product-list .cg-product-card__country { margin-bottom: 16px; }
.product-layout.product-list .cg-product-card__options { margin-bottom: 0; }
.product-layout.product-list .cg-product-card__bottom { width: 271px; max-width: 100%; }
.cg-home-products__view-all { display: flex; width: 166px; height: 48px; align-items: center; justify-content: space-between; margin: 32px auto 0; padding: 0 18px; border: 1px solid #974B23; border-radius: 16px; background: transparent; color: #974B23; font-size: 14px; font-weight: 600; line-height: 20px; text-decoration: none; }
.cg-home-products__view-all:hover, .cg-home-products__view-all:focus { background: #974B23; color: #FFFFFF; text-decoration: none; outline: none; }
.cg-home-products__view-all:focus-visible { box-shadow: 0 0 0 3px rgba(151, 75, 35, .18); }
.cg-home-products__view-all svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
@keyframes cg-product-spin { to { transform: rotate(360deg); } }

@media (max-width: 991px) {
	.cg-home-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
	.product-layout.product-list .cg-product-card { height: auto; min-height: 506px; flex-direction: column; }
	.product-layout.product-list .cg-product-card__media { width: auto; height: auto; flex: 0 0 auto; margin: 0; border-radius: 22px 22px 0 0; aspect-ratio: 300 / 295; }
	.product-layout.product-list .cg-product-card__body { padding: 16px; }
	.product-layout.product-list .cg-product-card__category { margin-bottom: 8px; }
	.product-layout.product-list .cg-product-card__title { min-height: 38px; margin-bottom: 8px; }
	.product-layout.product-list .cg-product-card__country { margin-bottom: 12px; }
	.product-layout.product-list .cg-product-card__options { margin-bottom: 12px; }
	.product-layout.product-list .cg-product-card__bottom { width: auto; }
}

@media (max-width: 767px) {
	.cg-home-products { margin-top: 48px; margin-bottom: 64px; }
	.cg-home-products__header { margin-bottom: 20px; }
	.cg-home-products__eyebrow { margin-bottom: 2px; font-size: 12px; line-height: 18px; }
	.cg-home-products__header h2 { font-size: 28px; line-height: 34px; letter-spacing: -.56px; }
	.cg-home-products__categories { margin-bottom: 16px; gap: 6px; }
	.cg-home-products__category { height: 34px; padding: 0 12px; font-size: 12px; }
	.cg-home-products__grid { gap: 8px; min-height: 0; }
	.cg-product-card { min-height: 342px; border-radius: 16px; }
	.cg-product-card__media { margin: 0; border-radius: 16px 16px 0 0; }
	.cg-product-card__badges { top: 7px; left: 7px; max-width: calc(100% - 14px); gap: 3px; }
	.cg-product-card__badge { min-height: 20px; padding: 2px 6px; font-size: 8px; line-height: 14px; }
	.cg-product-card__body { padding: 10px 10px 12px; }
	.cg-product-card__category { margin-bottom: 5px; font-size: 8px; line-height: 12px; }
	.cg-product-card__title { min-height: 34px; margin-bottom: 5px; font-size: 13px; line-height: 17px; }
	.cg-product-card__country { min-height: 15px; gap: 2px; margin-bottom: 8px; font-size: 9px; line-height: 15px; }
	.cg-product-card__country b { font-size: 11px; }
	.cg-product-card__option span, .cg-product-card__options-toggle { min-width: 34px; height: 24px; padding: 0 7px; font-size: 9px; line-height: 13px; }
	.cg-product-card__options { gap: 4px; margin-bottom: 8px; }
	.cg-product-card__price { display: block; }
	.cg-product-card__price strong { display: block; font-size: 14px; line-height: 18px; }
	.cg-product-card__price del { display: block; font-size: 9px; line-height: 13px; }
	.cg-product-card__cart { width: 34px; height: 34px; flex-basis: 34px; border-radius: 14px; }
	.cg-product-card__cart svg { width: 18px; height: 18px; }
	.product-layout.product-list .cg-product-card { min-height: 342px; }
	.product-layout.product-list .cg-product-card__media { border-radius: 16px 16px 0 0; }
	.product-layout.product-list .cg-product-card__body { padding: 10px 10px 12px; }
	.product-layout.product-list .cg-product-card__category { margin-bottom: 5px; }
	.product-layout.product-list .cg-product-card__title { min-height: 34px; margin-bottom: 5px; }
	.product-layout.product-list .cg-product-card__country { margin-bottom: 8px; }
	.product-layout.product-list .cg-product-card__options { margin-bottom: 8px; }
	.cg-home-products__view-all { width: 154px; height: 44px; margin-top: 24px; border-radius: 14px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
	.cg-home-products__grid, .cg-home-products__category, .cg-product-card__media img, .cg-product-card__cart { transition: none; }
	.cg-product-card__cart.is-loading svg { animation: none; }
}

/* Figma popular categories */
.cg-popular-categories { width: 100vw; height: 490px; margin-left: 50%; overflow: hidden; transform: translateX(-50%); background: #FFFDF9; color: #3B2116; font-family: var(--cg-font-ui); }
.cg-popular-categories *, .cg-popular-categories *::before, .cg-popular-categories *::after { box-sizing: border-box; }
.cg-popular-categories__inner { width: min(1280px, calc(100% - 32px)); height: 100%; margin: 0 auto; padding: 60px 0; }
.cg-popular-categories__header { text-align: start; }
.cg-popular-categories__eyebrow { margin: 0 0 4px; color: #974B23; font-size: 14px; font-weight: 600; line-height: 20px; letter-spacing: .35px; text-transform: uppercase; }
.cg-popular-categories__header h2 { margin: 0; padding: 0; border: 0; color: #3B2116; font-size: 36px; font-weight: 700; line-height: 40px; letter-spacing: -.72px; text-align: start; }
.cg-popular-categories__slider-wrap { position: relative; margin-top: 30px; }
.cg-popular-categories__slider { overflow: hidden; }
.cg-popular-categories__slide { width: 243px; }
.cg-popular-categories__link { display: block; color: #3B2116; text-align: center; text-decoration: none; }
.cg-popular-categories__link:hover, .cg-popular-categories__link:focus { color: #974B23; text-decoration: none; outline: none; }
.cg-popular-categories__link:focus-visible img { box-shadow: 0 0 0 3px rgba(151, 75, 35, .22); }
.cg-popular-categories__link img { display: block; width: 243px; height: 244px; border: 1px solid rgba(225, 213, 200, .7); border-radius: 22px; object-fit: cover; box-shadow: 0 2px 8px -2px rgba(103, 59, 38, .12); transition: transform 220ms ease; }
.cg-popular-categories__link:hover img { transform: scale(1.015); }
.cg-popular-categories__name { display: block; margin-top: 10px; overflow: hidden; font-size: 20px; font-weight: 600; line-height: 22px; letter-spacing: -.32px; text-overflow: ellipsis; white-space: nowrap; }
.cg-popular-categories__navigation { position: absolute; z-index: 2; top: 112px; display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; padding: 0; border: 0; background: transparent; color: #3B2116; }
.cg-popular-categories__navigation:hover, .cg-popular-categories__navigation:focus { color: #974B23; outline: none; }
.cg-popular-categories__navigation:focus-visible { border-radius: 50%; box-shadow: 0 0 0 3px rgba(151, 75, 35, .18); }
.cg-popular-categories__navigation.swiper-button-disabled { cursor: default; opacity: .35; }
.cg-popular-categories__navigation svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cg-popular-categories__navigation--previous { left: -36px; }
.cg-popular-categories__navigation--next { right: -36px; }

@media (max-width: 767px) {
	.cg-popular-categories { height: 276px; }
	.cg-popular-categories__inner { width: 100%; padding: 4px 16px 0; }
	.cg-popular-categories__eyebrow { margin-bottom: 2px; font-size: 12px; line-height: 18px; letter-spacing: .3px; }
	.cg-popular-categories__header h2 { font-size: 24px; line-height: 29px; letter-spacing: -.48px; text-align: left; }
	.cg-popular-categories__slider-wrap { margin-top: 20px; }
	.cg-popular-categories__slide { width: 120px; }
	.cg-popular-categories__link img { width: 120px; height: 120px; border-radius: 12px; }
	.cg-popular-categories__name { margin-top: 6px; font-size: 12px; line-height: 16px; letter-spacing: 0; }
	.cg-popular-categories__navigation { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.cg-popular-categories__link img { transition: none; }
}

/* Figma wholesale price */
.cg-wholesale-price { position: relative; display: flex; width: min(1279px, calc(100vw - 32px)); height: 308px; align-items: flex-start; justify-content: center; margin: 64px 0 96px 50%; overflow: hidden; transform: translateX(-50%); border-radius: 26px; background-color: #4C271A; background-image: url('../image/wholesale-price-background.png'); background-position: center; background-size: cover; box-shadow: 0 20px 60px -24px rgba(151, 75, 35, .5); color: #FCF8F0; font-family: var(--cg-font-ui); }
.cg-wholesale-price *, .cg-wholesale-price *::before, .cg-wholesale-price *::after { box-sizing: border-box; }
.cg-wholesale-price__content { display: flex; width: 100%; align-items: center; flex-direction: column; padding-top: 64px; text-align: center; }
.cg-wholesale-price h2 { margin: 0; padding: 0; border: 0; color: #FCF8F0; font-size: 36px; font-weight: 700; line-height: 40px; letter-spacing: -.72px; }
.cg-wholesale-price__description { width: min(483px, calc(100% - 32px)); margin: 15px 0 0; color: rgba(252, 248, 240, .85); font-size: 16px; font-weight: 400; line-height: 24px; letter-spacing: -.32px; }
.cg-wholesale-price__button { display: inline-flex; width: 207px; height: 52px; align-items: center; justify-content: center; margin-top: 30px; border-radius: 18px; background: #FBF6EE; color: #3B2116; font-size: 16px; font-weight: 600; line-height: 24px; text-decoration: none; transition: background-color 180ms ease, transform 180ms ease; }
.cg-wholesale-price__button:hover, .cg-wholesale-price__button:focus { background: #FFFFFF; color: #3B2116; text-decoration: none; transform: translateY(-1px); outline: none; }
.cg-wholesale-price__button:focus-visible { box-shadow: 0 0 0 3px rgba(252, 248, 240, .45); }

@media (max-width: 767px) {
	.cg-wholesale-price { width: calc(100vw - 32px); height: 208px; margin-top: 20px; margin-bottom: 48px; border-radius: 18px; background-image: linear-gradient(rgba(76, 39, 26, .75), rgba(76, 39, 26, .75)), url('../image/wholesale-price-background-mobile.png'); background-position: center; box-shadow: none; }
	.cg-wholesale-price__content { padding-top: 28px; }
	.cg-wholesale-price h2 { font-size: 20px; line-height: 30px; letter-spacing: -.46px; }
	.cg-wholesale-price__description { width: min(285px, calc(100% - 40px)); margin-top: 10px; font-size: 12px; line-height: 19.5px; letter-spacing: 0; }
	.cg-wholesale-price__button { width: 146px; height: 40px; margin-top: 19px; border-radius: 999px; font-size: 13px; line-height: 19.5px; letter-spacing: -.08px; }
}

@media (prefers-reduced-motion: reduce) {
	.cg-wholesale-price__button { transition: none; }
}

/* Figma homepage About */
.cg-home-about { width: 100vw; min-height: 686px; margin-left: 50%; padding-bottom: 96px; transform: translateX(-50%); background: #F8F5EE; color: #3B2116; font-family: var(--cg-font-ui); --cg-about-collapsed-height: 318px; }
.cg-home-about *, .cg-home-about *::before, .cg-home-about *::after { box-sizing: border-box; }
.cg-home-about__inner { display: grid; width: min(1280px, calc(100% - 32px)); min-height: 686px; grid-template-columns: 596px minmax(0, 1fr); gap: 40px; margin: 0 auto; }
.cg-home-about__gallery { position: relative; width: 596px; height: 686px; }
.cg-home-about__gallery img { position: absolute; display: block; width: 291px; object-fit: cover; border-radius: 20px; }
.cg-home-about__gallery img:nth-child(1) { top: 0; left: 0; height: 361px; object-position: center; }
.cg-home-about__gallery img:nth-child(2) { top: 24px; right: 0; height: 291px; object-position: center; }
.cg-home-about__gallery img:nth-child(3) { bottom: 0; left: 0; height: 289px; object-position: center; }
.cg-home-about__gallery img:nth-child(4) { right: 0; bottom: 0; height: 361px; object-position: center; }
@media (min-width: 1200px) {
	.cg-home-about__gallery img:nth-child(3) { bottom: 27px; }
}
.cg-home-about__badge { position: absolute; z-index: 2; top: 299px; left: 216px; display: flex; width: 145px; height: 90px; align-items: center; justify-content: center; flex-direction: column; border-radius: 12px; background: #462312; box-shadow: 0 12px 26px -16px rgba(70, 35, 18, .55); color: #FFFDF9; text-align: center; }
.cg-home-about__badge strong { display: block; font-size: 32px; font-weight: 700; line-height: 36px; letter-spacing: -.64px; }
.cg-home-about__badge span { display: block; margin-top: 1px; font-size: 14px; font-weight: 400; line-height: 18px; }
.cg-home-about__copy { min-width: 0; padding-top: 104px; text-align: start; }
.cg-home-about__eyebrow { margin: 0 0 4px; color: #974B23; font-size: 14px; font-weight: 600; line-height: 20px; letter-spacing: .35px; text-transform: uppercase; }
.cg-home-about__copy h2 { max-width: 600px; margin: 0 0 18px; padding: 0; border: 0; color: #3B2116; font-size: 32px; font-weight: 700; line-height: 40px; letter-spacing: -.64px; text-align: start; }
.cg-home-about__content { position: relative; max-width: 604px; color: #5F4638; font-size: 16px; font-weight: 400; line-height: 24px; text-align: start; transition: max-height 220ms ease; }
.cg-home-about__content > :first-child { margin-top: 0; }
.cg-home-about__content > :last-child { margin-bottom: 0; }
.cg-home-about__content > h1 { margin: 0 0 24px; color: #974B23; font-size: 32px; font-weight: 700; line-height: 40px; letter-spacing: -.64px; text-align: start; }
.cg-home-about__content p { margin: 0 0 16px; }
.cg-home-about__content ul, .cg-home-about__content ol { margin: 16px 0; padding: 0; list-style: none; }
.cg-home-about__content li { position: relative; min-height: 22px; margin: 0 0 10px; padding-left: 30px; }
.cg-home-about__content li:last-child { margin-bottom: 0; }
.cg-home-about__content li::before { position: absolute; top: 1px; left: 0; display: flex; width: 20px; height: 20px; align-items: center; justify-content: center; border-radius: 50%; background: #F1E4D3; color: #673B26; content: '\2713'; font-size: 11px; font-weight: 700; line-height: 1; }
.cg-home-about.is-collapsible.is-collapsed .cg-home-about__content { max-height: var(--cg-about-collapsed-height); overflow: hidden; }
.cg-home-about__toggle { display: inline-block; margin: 12px 0 0; padding: 0; border: 0; background: transparent; color: #974B23; font-family: inherit; font-size: 14px; font-weight: 500; line-height: 20px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cg-home-about__toggle[hidden] { display: none; }
.cg-home-about__toggle:hover, .cg-home-about__toggle:focus { color: #673B26; outline: none; }
.cg-home-about__toggle:focus-visible { border-radius: 2px; box-shadow: 0 0 0 3px rgba(151, 75, 35, .18); }
.cg-home-about__link { display: flex; width: 167px; height: 46px; align-items: center; justify-content: center; margin-top: 24px; border-radius: 8px; background: #974B23; color: #FFFDF9; font-size: 14px; font-weight: 600; line-height: 20px; text-decoration: none; transition: background-color 180ms ease, transform 180ms ease; }
.cg-home-about__link:hover, .cg-home-about__link:focus { background: #673B26; color: #FFFDF9; text-decoration: none; transform: translateY(-1px); outline: none; }
.cg-home-about__link:focus-visible { box-shadow: 0 0 0 3px rgba(70, 35, 18, .2); }

@media (min-width: 768px) and (max-width: 1199px) {
	.cg-home-about, .cg-home-about__inner { min-height: 620px; }
	.cg-home-about__inner { grid-template-columns: minmax(360px, 48%) minmax(0, 1fr); gap: 24px; }
	.cg-home-about__gallery { width: 100%; height: 620px; }
	.cg-home-about__gallery img { width: calc(50% - 6px); }
	.cg-home-about__gallery img:nth-child(1), .cg-home-about__gallery img:nth-child(4) { height: 326px; }
	.cg-home-about__gallery img:nth-child(2) { top: 24px; height: 268px; }
	.cg-home-about__gallery img:nth-child(3) { height: 268px; }
	.cg-home-about__badge { top: 271px; left: 50%; transform: translateX(-50%); }
	.cg-home-about__copy { padding-top: 62px; }
	.cg-home-about__copy h2 { font-size: 28px; line-height: 35px; }
}

@media (max-width: 767px) {
	.cg-home-about { min-height: 765px; padding-bottom: 48px; --cg-about-collapsed-height: 286px; }
	.cg-home-about__inner { display: block; width: 100%; min-height: 0; padding: 0 16px 48px; }
	.cg-home-about__gallery { width: 358px; max-width: 100%; height: 358px; margin: 0 auto; }
	.cg-home-about__gallery img { width: calc(50% - 3px); height: calc(50% - 3px); border-radius: 12px; }
	.cg-home-about__gallery img:nth-child(1) { top: 0; left: 0; height: calc(50% - 3px); }
	.cg-home-about__gallery img:nth-child(2) { top: 0; right: 0; height: calc(50% - 3px); }
	.cg-home-about__gallery img:nth-child(3) { bottom: 0; left: 0; height: calc(50% - 3px); }
	.cg-home-about__gallery img:nth-child(4) { right: 0; bottom: 0; height: calc(50% - 3px); }
	.cg-home-about__badge { top: 143px; left: 50%; width: 96px; height: 66px; transform: translateX(-50%); border-radius: 10px; }
	.cg-home-about__badge strong { font-size: 24px; line-height: 28px; letter-spacing: -.48px; }
	.cg-home-about__badge span { margin-top: 0; font-size: 10px; line-height: 14px; }
	.cg-home-about__copy { padding-top: 18px; }
	.cg-home-about__eyebrow { margin-bottom: 2px; font-size: 12px; line-height: 18px; letter-spacing: .3px; }
	.cg-home-about__copy h2 { margin-bottom: 14px; font-size: 28px; line-height: 34px; letter-spacing: -.56px; }
	.cg-home-about__content > h1 { margin-bottom: 18px; font-size: 28px; line-height: 34px; letter-spacing: -.56px; }
	.cg-home-about__content { max-width: none; font-size: 14px; line-height: 21px; }
	.cg-home-about__content p { margin-bottom: 14px; }
	.cg-home-about__content ul, .cg-home-about__content ol { margin: 14px 0; }
	.cg-home-about__content li { margin-bottom: 8px; padding-left: 28px; }
	.cg-home-about__toggle { margin-top: 10px; font-size: 13px; line-height: 19px; }
	.cg-home-about__link { width: 167px; height: 46px; margin-top: 20px; border-radius: 8px; background: #462312; }
}

@media (prefers-reduced-motion: reduce) {
	.cg-home-about__content, .cg-home-about__link { transition: none; }
}

/* Figma category catalog */
.cg-category-page { width: min(1280px, calc(100% - 32px)); padding-right: 0; padding-left: 0; }
.cg-category-page > .row { margin-right: 0; margin-left: 0; }
.cg-category-catalog { width: 100%; color: #3B2116; font-family: var(--cg-font-ui); }
.cg-category-catalog *, .cg-category-catalog *::before, .cg-category-catalog *::after { box-sizing: border-box; }
.cg-category-catalog__heading { display: flex; min-height: 49px; align-items: flex-start; margin: 0 0 24px; border-bottom: 1px solid rgba(151, 75, 35, .3); text-align: left; }
.cg-category-catalog__heading h2 { display: flex; align-items: center; gap: 12px; margin: 0; padding: 0 0 12px; border: 0; color: #3B2116; font-size: 32px; font-weight: 700; line-height: 36px; letter-spacing: -.64px; text-align: left; }
.cg-category-catalog__heading svg { width: 24px; height: 24px; flex: 0 0 24px; fill: none; stroke: #974B23; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cg-category-catalog__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 0 0 24px; }
.cg-category-catalog__view-toggle { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.cg-category-catalog__view-toggle button { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; padding: 0; border: 1px solid #E1D5C8; border-radius: 14px; background: #FFFDF9; color: #7C6354; transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease; }
.cg-category-catalog__view-toggle button:hover, .cg-category-catalog__view-toggle button:focus { border-color: #974B23; color: #974B23; outline: none; }
.cg-category-catalog__view-toggle button:focus-visible { box-shadow: 0 0 0 3px rgba(151, 75, 35, .18); }
.cg-category-catalog__view-toggle button.is-active { border-color: #974B23; background: #974B23; color: #FFFFFF; }
.cg-category-catalog__view-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.cg-category-catalog__actions { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: 12px; margin-left: auto; }
.cg-category-catalog__search { display: flex; width: 224px; height: 36px; align-items: center; gap: 8px; margin: 0; padding: 0 12px; border: 1px solid #E1D5C8; border-radius: 14px; background: #FBF6EE; }
.cg-category-catalog__search-submit { display: inline-flex; width: 20px; height: 34px; flex: 0 0 20px; align-items: center; justify-content: center; padding: 0; border: 0; outline: 0; background: transparent; color: #7C6354; }
.cg-category-catalog__search-submit:hover, .cg-category-catalog__search-submit:focus { color: #974B23; }
.cg-category-catalog__search-submit:focus-visible { border-radius: 6px; box-shadow: 0 0 0 2px rgba(151, 75, 35, .18); }
.cg-category-catalog__search-submit svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.cg-category-catalog__search input[type="search"] { width: 100%; height: 34px; min-width: 0; padding: 0; border: 0; outline: 0; background: transparent; color: #3B2116; font-family: inherit; font-size: 13px; line-height: 20px; box-shadow: none; }
.cg-category-catalog__search input[type="search"]::placeholder { color: #A18A7B; opacity: 1; }
.cg-category-catalog__sort { position: relative; display: flex; width: 250px; height: 36px; align-items: center; gap: 8px; padding: 0 34px 0 14px; border-radius: 14px; background: #974B23; color: #FFFFFF; }
.cg-category-catalog__sort label { flex: 0 0 auto; margin: 0; color: inherit; font-size: 11px; font-weight: 600; line-height: 16px; letter-spacing: .4px; text-transform: uppercase; }
.cg-category-catalog__sort select { width: 100%; height: 36px; min-width: 0; padding: 0; border: 0; outline: 0; appearance: none; background: transparent; color: inherit; font-family: inherit; font-size: 13px; font-weight: 500; line-height: 20px; box-shadow: none; cursor: pointer; }
.cg-category-catalog__sort select option { background: #FFFDF9; color: #3B2116; }
.cg-category-catalog__sort > svg { position: absolute; top: 10px; right: 12px; width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.cg-category-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cg-category-products > .product-layout { min-width: 0; padding: 0; }
.cg-category-catalog--list .cg-category-products { grid-template-columns: minmax(0, 1fr); gap: 16px; }
.cg-category-catalog--list .cg-category-products > .product-layout { width: 100%; }
.cg-category-catalog__pagination { display: flex; justify-content: center; width: 100%; margin: 32px 0 0; }
.cg-category-catalog__pagination .pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0; padding: 0; }
.cg-category-catalog__pagination .pagination > li { display: block; margin: 0; }
.cg-category-catalog__pagination .pagination > li > a,
.cg-category-catalog__pagination .pagination > li > span { display: inline-flex; float: none; width: 36px; height: 36px; align-items: center; justify-content: center; margin: 0; padding: 0; border: 1px solid #E1D5C8; border-radius: 14px; background: #FFFDF9; color: #3B2116; font-family: inherit; font-size: 13px; font-weight: 500; line-height: 20px; text-decoration: none; transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.cg-category-catalog__pagination .pagination > li > a:hover,
.cg-category-catalog__pagination .pagination > li > a:focus { border-color: #974B23; background: #FFFDF9; color: #974B23; outline: none; }
.cg-category-catalog__pagination .pagination > li > a:focus-visible { outline: 2px solid transparent; outline-offset: 2px; box-shadow: 0 0 0 3px rgba(151, 75, 35, .18); }
.cg-category-catalog__pagination .pagination > .active > span,
.cg-category-catalog__pagination .pagination > .active > span:hover,
.cg-category-catalog__pagination .pagination > .active > span:focus { border-color: #974B23; background: #974B23; color: #FFFFFF; }
.cg-category-catalog + .cg-category-news-slot { clear: both; }

@media (max-width: 1199px) and (min-width: 768px) {
	.cg-category-catalog__toolbar { align-items: flex-start; }
	.cg-category-catalog__actions { flex: 1; flex-wrap: wrap; }
	.cg-category-catalog__search { width: 100%; }
	.cg-category-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 767px) {
	.breadcrumb { margin-top: 16px; margin-bottom: 24px; }
	.cg-category-page { width: calc(100% - 40px); }
	.cg-category-page > .row { display: block; }
	.cg-category-page #content { float: none; width: 100%; padding: 0; }
	.cg-category-catalog__heading { min-height: 49px; margin-bottom: 24px; }
	.cg-category-catalog__heading h2 { gap: 10px; padding-bottom: 12px; font-size: 24px; line-height: 30px; letter-spacing: -.48px; }
	.cg-category-catalog__heading svg { width: 24px; height: 24px; flex-basis: 24px; }
	.cg-category-catalog__toolbar { display: block; margin-bottom: 16px; }
	.cg-category-catalog__view-toggle { display: none; }
	.cg-category-catalog__actions { display: flex; width: 100%; flex-direction: column; align-items: stretch; gap: 8px; }
	.cg-category-catalog__search { width: 100%; height: 36px; border: 1px solid #E1D5C8; border-radius: 14px; }
	.cg-category-catalog__sort { width: 100%; height: 36px; border-radius: 14px; background: #974B23; }
	.cg-category-products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.cg-category-catalog--list .cg-category-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.cg-category-products .cg-product-card { width: 100%; }
	.cg-category-catalog__pagination { margin-top: 24px; }
	.cg-category-catalog__pagination .pagination > li > a,
	.cg-category-catalog__pagination .pagination > li > span { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
	.cg-category-catalog__view-toggle button { transition: none; }
	.cg-category-catalog__pagination .pagination > li > a,
	.cg-category-catalog__pagination .pagination > li > span { transition: none; }
}

@media (forced-colors: active) {
	.cg-category-catalog__pagination .pagination > li > a:focus-visible { outline-color: CanvasText; box-shadow: none; }
}

/* Figma category description */
.cg-category-description {
	--cg-collapsed-height: 168px;
	width: 100%;
	margin: 40px 0 64px;
	padding: 40px 24px;
	box-sizing: border-box;
	border: 1px solid #DFD6C9;
	border-radius: 14.4px;
	background: #FFFDFA;
	color: #6E605A;
	font-family: var(--cg-font-ui);
	text-align: start;
}

.cg-category-description *,
.cg-category-description *::before,
.cg-category-description *::after { box-sizing: border-box; }

.cg-category-description__heading { margin: 0; }

.cg-category-description__heading h1 {
	margin: 0;
	padding: 0;
	border: 0;
	color: #974B23;
	font-family: inherit;
	font-size: 32.6px;
	font-weight: 600;
	line-height: 40px;
	letter-spacing: -.9px;
	text-align: start;
}

.cg-category-description__heading h2 {
	margin: 0;
	padding: 0;
	border: 0;
	color: #974B23;
	font-family: inherit;
	font-size: 32.6px;
	font-weight: 600;
	line-height: 40px;
	letter-spacing: -.9px;
	text-align: start;
}

.cg-category-description__heading + .cg-category-description__content { margin-top: 24px; }

.cg-category-description__content {
	min-width: 0;
	color: #6E605A;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	overflow-wrap: anywhere;
	text-align: start;
	transition: max-height 220ms ease;
}

.cg-category-description__content > :first-child { margin-top: 0; }
.cg-category-description__content > :last-child { margin-bottom: 0; }
.cg-category-description__content p { margin: 0 0 16px; }
.cg-category-description__content ul,
.cg-category-description__content ol { margin: 16px 0; padding-left: 24px; }
.cg-category-description__content li + li { margin-top: 8px; }

.cg-category-description.is-collapsible.is-collapsed .cg-category-description__content {
	max-height: var(--cg-collapsed-height);
	overflow: hidden;
}

.cg-category-description__toggle {
	display: inline-block;
	margin: 24px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #6E605A;
	font-family: inherit;
	font-size: 13.6px;
	font-weight: 700;
	line-height: 26px;
	text-align: start;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.cg-category-description__toggle[hidden] { display: none; }
.cg-category-description__toggle:hover,
.cg-category-description__toggle:focus { color: #974B23; outline: none; }

.cg-category-description__toggle:focus-visible {
	border-radius: 2px;
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(151, 75, 35, .18);
}

@media (max-width: 767px) {
	.cg-category-description {
		--cg-collapsed-height: 399px;
		width: 100%;
		max-width: 358px;
		margin: 40px auto 64px;
		padding: 40px 16px 24px;
	}

	.cg-category-description__heading h1 {
		font-size: 24px;
		font-weight: 700;
		line-height: 32px;
		letter-spacing: -.26px;
	}

	.cg-category-description__heading h2 {
		font-size: 24px;
		font-weight: 700;
		line-height: 32px;
		letter-spacing: -.26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cg-category-description__content { transition: none; }
}

@media (forced-colors: active) {
	.cg-category-description__toggle:focus-visible { outline-color: CanvasText; box-shadow: none; }
}

/* Cooperation Information page: two admin-managed content cards. */
.information-information-3 > .container {
	width: min(1280px, calc(100% - 32px));
	padding-right: 0;
	padding-left: 0;
}

.information-information-3 > .container > .breadcrumb {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	transform: none;
}

.information-information-3 > .container > .row {
	margin-right: 0;
	margin-left: 0;
}

.information-information-3 > .container > .row > #content {
	float: none;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}

.information-information-3 #content > .header-bordered {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.information-information-3 .cg-cooperation-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	margin: 0 0 60px;
}

.information-information-3 .cg-cooperation-card {
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 693px;
	padding: 0 0 24px;
	overflow: hidden;
	border: 1px solid rgba(225, 213, 200, .7);
	border-radius: 26px;
	background: #FFFDF9;
	box-shadow: 0 2px 8px -2px rgba(103, 59, 38, .12);
	color: #7C6354;
	font-family: var(--cg-font-ui);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.information-information-3 .cg-cooperation-card > h4 {
	display: flex;
	height: 61px;
	align-items: center;
	margin: 0;
	padding: 0 24px;
	border-bottom: 1px solid rgba(225, 213, 200, .7) !important;
	background: rgba(241, 230, 216, .4);
	color: #3B2116;
	font-family: var(--cg-font-ui);
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: -.18px;
	text-align: left;
}

.information-information-3 .cg-cooperation-card > h4 *,
.information-information-3 .cg-cooperation-card > h4 u {
	color: inherit !important;
	font: inherit !important;
	text-decoration: none !important;
}

.information-information-3 .cg-cooperation-card > h4 b { font-weight: inherit; }
.information-information-3 .cg-cooperation-card > h4 br { display: none; }

.information-information-3 .cg-cooperation-card > p {
	margin: 0 24px;
	color: inherit;
	font: inherit;
}

.information-information-3 .cg-cooperation-card > p b,
.information-information-3 .cg-cooperation-card > p strong,
.information-information-3 .cg-cooperation-card > p font {
	color: inherit !important;
	font: inherit !important;
	font-weight: 400 !important;
}

.information-information-3 .cg-cooperation-card:first-child > p:nth-of-type(2) > b,
.information-information-3 .cg-cooperation-card:first-child > p:nth-of-type(2) > strong { font-weight: 600 !important; }

.information-information-3 .cg-cooperation-card > h4 + p { margin-top: 24px; }

.information-information-3 .cg-cooperation-card:first-child > p:nth-of-type(n + 3),
.information-information-3 .cg-cooperation-card:nth-child(2) > p + p { margin-top: 28px; }

.information-information-3 .cg-cooperation-card > ul,
.information-information-3 .cg-cooperation-card > ol {
	margin: 4px 24px 0;
	padding-left: 24px;
	color: inherit;
	font: inherit;
}

.information-information-3 .cg-cooperation-card > h3 {
	margin: 28px 24px 0;
	padding: 0;
	border: 0;
	color: inherit;
	font: inherit;
	text-align: left;
}

.information-information-3 .cg-cooperation-card > h3 img { display: none !important; }

.information-information-3 .cg-cooperation-card > h3 b,
.information-information-3 .cg-cooperation-card > h3 a,
.information-information-3 .cg-cooperation-card > h3 font {
	color: inherit !important;
	font: inherit !important;
}

.information-information-3 .cg-cooperation-card > h3 > b:first-of-type { font-weight: 600 !important; }
.information-information-3 .cg-cooperation-card > h3 a { font-weight: 600 !important; text-decoration: underline; }

@media (max-width: 767px) {
	.information-information-3 > .container {
		width: min(350px, calc(100% - 40px));
	}

	.information-information-3 > .container > .breadcrumb {
		margin-top: 16px;
		margin-bottom: 24px;
	}

	.information-information-3 .cg-cooperation-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
		margin-bottom: 48px;
	}

	.information-information-3 .cg-cooperation-card {
		width: 100%;
		min-height: 0;
		padding-bottom: 32px;
		font-size: 14px;
		line-height: 24px;
	}

	.information-information-3 .cg-cooperation-card > h4 {
		height: auto;
		padding: 24px 16px 0;
		border-bottom: 0 !important;
		background: transparent;
		font-size: 24px;
		font-weight: 600;
		line-height: 32px;
		letter-spacing: -.24px;
	}

	.information-information-3 .cg-cooperation-card > p { margin-right: 16px; margin-left: 16px; }
	.information-information-3 .cg-cooperation-card > h4 + p { margin-top: 16px; }
	.information-information-3 .cg-cooperation-card:first-child > p:nth-of-type(n + 3),
	.information-information-3 .cg-cooperation-card:nth-child(2) > p + p { margin-top: 24px; }

	.information-information-3 .cg-cooperation-card > ul,
	.information-information-3 .cg-cooperation-card > ol {
		margin-right: 16px;
		margin-left: 16px;
		padding-left: 22px;
	}

	.information-information-3 .cg-cooperation-card > h3 {
		margin: 24px 16px 0;
	}
}

/* Homepage product reviews carousel, measured against the CacaoGold Figma frame. */
.cg-home-reviews {
	position: relative;
	box-sizing: border-box;
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
	padding: 100px 0 76px;
	background: #F8F5EE;
	font-family: Inter, sans-serif;
	color: #190F0A;
}

.cg-home-reviews__header {
	max-width: 720px;
	margin: 0 auto 40px;
	text-align: center;
}

.cg-home-reviews__eyebrow {
	margin: 0 0 8px;
	color: #974B23;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: .7px;
	text-transform: uppercase;
}

.cg-home-reviews__heading {
	margin: 0;
	color: #190F0A;
	font-size: 33px;
	font-weight: 600;
	line-height: 40px;
	letter-spacing: -.9px;
}

.cg-home-reviews__viewport {
	width: min(1280px, calc(100% - 96px));
	margin: 0 auto;
	overflow: hidden;
}

.cg-home-reviews .swiper-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: stretch;
}
.cg-home-reviews.is-slider-enhanced .swiper-wrapper { display: flex; gap: 0; }
.cg-home-reviews .swiper-slide { display: flex; height: auto; }

.cg-home-reviews:not(.is-slider-enhanced) .cg-home-reviews__arrow { display: none; }

.cg-home-reviews__card {
	box-sizing: border-box;
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 206px;
	padding: 20px;
	border: 1px solid #DFD6C9;
	border-radius: 14.4px;
	background: #FFFDFA;
	box-shadow: none;
}

.cg-home-reviews__stars,
.cg-home-reviews__modal-stars {
	color: #D28D47;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 1px;
}

.cg-home-reviews__stars .is-empty,
.cg-home-reviews__modal-stars .is-empty { color: #DFD6C9; }

.cg-home-reviews__text {
	margin: 16px 0 18px;
	color: rgba(25, 15, 10, .9);
	font-size: 13.8px;
	font-weight: 400;
	line-height: 145%;
}

.cg-home-reviews.is-enhanced .cg-home-reviews__text {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.cg-home-reviews__expand {
	display: inline-block;
	margin: -8px 0 12px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #974B23;
	font: inherit;
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
}

.cg-home-reviews__expand[hidden] { display: none; }

.cg-home-reviews__author {
	margin: auto 0 0;
	color: #190F0A;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 24px;
}

.cg-home-reviews__arrow {
	position: absolute;
	top: calc(50% + 73px);
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border: 1px solid #DFD6C9;
	border-radius: 50%;
	background: #FFFDFA;
	color: #974B23;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.cg-home-reviews__arrow--prev { left: max(0px, calc((100% - 1400px) / 2)); }
.cg-home-reviews__arrow--next { right: max(0px, calc((100% - 1400px) / 2)); }
.cg-home-reviews__arrow:disabled { opacity: .4; cursor: default; }

.cg-home-reviews__modal[hidden] { display: none; }
.cg-home-reviews__modal { position: fixed; z-index: 1100; inset: 0; display: flex; align-items: center; justify-content: center; }
.cg-home-reviews__modal-backdrop { position: absolute; inset: 0; background: rgba(25, 15, 10, .42); }
.cg-home-reviews__modal-panel { position: relative; z-index: 1; width: min(560px, calc(100% - 32px)); margin: 0; padding: 28px; border: 1px solid #DFD6C9; border-radius: 14.4px; background: #FFFDFA; box-shadow: 0 18px 60px rgba(25, 15, 10, .22); }
.cg-home-reviews__modal-close { position: absolute; top: 12px; right: 16px; border: 0; background: transparent; color: #5D473A; font-size: 24px; cursor: pointer; }
.cg-home-reviews__modal-panel h3 { margin: 0 0 12px; color: #190F0A; font-size: 18px; font-weight: 600; }
.cg-home-reviews__modal-panel p { margin: 16px 0 0; color: rgba(25, 15, 10, .9); font-size: 16px; line-height: 145%; white-space: pre-wrap; }
.cg-home-reviews__arrow:focus-visible,
.cg-home-reviews__expand:focus-visible,
.cg-home-reviews__modal-close:focus-visible { outline: 2px solid #974B23; outline-offset: 3px; }

@media (min-width: 1024px) {
	.cg-home-reviews:not(.is-slider-enhanced) .swiper-wrapper { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.cg-home-reviews .swiper-slide { flex: 0 0 calc((100% - 32px) / 3); }
}

@media (max-width: 1023px) {
	.cg-home-reviews__viewport { width: min(960px, calc(100% - 64px)); }
	.cg-home-reviews:not(.is-slider-enhanced) .swiper-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cg-home-reviews__arrow--prev { left: 8px; }
	.cg-home-reviews__arrow--next { right: 8px; }
}

@media (max-width: 767px) {
	.cg-home-reviews { padding: 64px 0 48px; }
	.cg-home-reviews__header { margin-bottom: 32px; padding: 0 20px; }
	.cg-home-reviews__heading { font-size: 26px; line-height: 32px; letter-spacing: -.5px; }
	.cg-home-reviews__viewport { width: calc(100% - 32px); }
	.cg-home-reviews__card { min-height: 206px; padding: 20px; }
	.cg-home-reviews:not(.is-slider-enhanced) .swiper-wrapper { grid-template-columns: 1fr; }
	.cg-home-reviews__arrow { display: none; }
	.cg-home-reviews__modal-panel { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
	.cg-home-reviews *, .cg-home-reviews *::before, .cg-home-reviews *::after { scroll-behavior: auto !important; transition-duration: 0s !important; animation-duration: 0s !important; }
}
