/* ===== EEAT blocks (shared across main + v-nalichii) ===== */
/* Font stack: наследуем Gilroy от темы (определён в css/style.css через @font-face) */
[class^="cfeeat-"], [class*=" cfeeat-"] { font-family: "Gilroy", -apple-system, BlinkMacSystemFont, sans-serif; }

/* ── CASES (выполненные заказы) ── */
.cfeeat-cases { padding: clamp(60px, 8vw, 100px) 0; background: #F8FAFC; }
.cfeeat-cases__head { max-width: 820px; margin: 0 0 40px; }
.cfeeat-cases__eyebrow {
	display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px;
	font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--cf-text-light, #64748B);
}
.cfeeat-cases__eyebrow-line { width: 32px; height: 2px; background: var(--cf-accent, #F5A623); }
.cfeeat-cases__title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 0 0 10px; letter-spacing: -0.02em; }
.cfeeat-cases__sub { font-size: 16px; color: var(--cf-text-light, #64748B); margin: 0; line-height: 1.55; }

.cfeeat-cases__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.cfeeat-case {
	background: #fff; border-radius: 6px; overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 0 0 1px rgba(15,23,53,0.04);
	display: flex; flex-direction: column; transition: all .2s;
}
.cfeeat-case:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(15,23,53,0.08); transform: translateY(-3px); }
.cfeeat-case__photo {
	aspect-ratio: 16/10; background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
	position: relative; overflow: hidden;
}
.cfeeat-case__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cfeeat-case__flag {
	position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 3px;
	background: rgba(15, 30, 53, 0.85); backdrop-filter: blur(8px);
	color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
	display: inline-flex; align-items: center; gap: 6px;
}
.cfeeat-case__saving {
	position: absolute; bottom: 12px; right: 12px; padding: 6px 12px; border-radius: 3px;
	background: #10B981; color: #fff; font-size: 13px; font-weight: 800;
	letter-spacing: 0.02em;
}
.cfeeat-case__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.cfeeat-case__model { font-size: 17px; font-weight: 800; margin: 0 0 4px; color: var(--cf-text, #1E293B); letter-spacing: -0.01em; }
.cfeeat-case__meta { display: flex; flex-wrap: wrap; gap: 4px 10px; margin-bottom: 12px; font-size: 12px; color: var(--cf-text-light, #64748B); }
.cfeeat-case__meta span::after { content: '·'; margin-left: 10px; color: #CBD5E1; }
.cfeeat-case__meta span:last-child::after { display: none; }
.cfeeat-case__price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; padding-bottom: 14px; border-bottom: 1px solid #E2E8F0; }
.cfeeat-case__price { font-size: 22px; font-weight: 900; color: var(--cf-primary, #1A3A5C); letter-spacing: -0.01em; }
.cfeeat-case__price-old { font-size: 13px; color: var(--cf-text-light, #64748B); text-decoration: line-through; }
.cfeeat-case__client { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.cfeeat-case__avatar {
	width: 34px; height: 34px; border-radius: 50%; background: var(--cf-primary, #1A3A5C);
	color: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.cfeeat-case__client-info { display: flex; flex-direction: column; font-size: 12px; line-height: 1.3; }
.cfeeat-case__client-name { font-weight: 700; color: var(--cf-text, #1E293B); }
.cfeeat-case__client-place { color: var(--cf-text-light, #64748B); }

.cfeeat-cases__foot { text-align: center; margin-top: 40px; color: var(--cf-text-light, #64748B); font-size: 14px; }
.cfeeat-cases__foot a { color: var(--cf-primary, #1A3A5C); font-weight: 700; }

/* ── REVIEWS ── */
.cfeeat-reviews { padding: clamp(60px, 8vw, 100px) 0; background: #fff; }
.cfeeat-reviews__head { max-width: 820px; margin: 0 0 40px; display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; }
.cfeeat-reviews__title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 0; letter-spacing: -0.02em; }
.cfeeat-reviews__rating {
	display: flex; align-items: center; gap: 12px;
	padding: 10px 16px; background: #FEF3C7; border: 1px solid #FDE68A; border-radius: 4px;
}
.cfeeat-reviews__rating-num { font-size: 28px; font-weight: 900; color: #92400E; line-height: 1; letter-spacing: -0.01em; }
.cfeeat-reviews__rating-info { display: flex; flex-direction: column; font-size: 12px; }
.cfeeat-reviews__rating-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; line-height: 1; margin-bottom: 3px; }
.cfeeat-reviews__rating-source { color: #92400E; font-weight: 600; }

.cfeeat-reviews__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.cfeeat-review {
	padding: 22px 24px; background: #F8FAFC; border-radius: 6px;
	border: 1px solid #E2E8F0;
	display: flex; flex-direction: column; min-height: 210px;
}
.cfeeat-review__quote-mark {
	font-family: Georgia, 'Times New Roman', serif; font-size: 56px; font-weight: 700;
	color: var(--cf-accent, #F5A623); line-height: 0.6; margin-bottom: 10px;
}
.cfeeat-review__text { font-size: 14px; line-height: 1.55; color: var(--cf-text, #1E293B); margin: 0 0 18px; flex: 1; }
.cfeeat-review__author { display: flex; align-items: center; gap: 12px; }
.cfeeat-review__avatar {
	width: 40px; height: 40px; border-radius: 50%; background: var(--cf-primary, #1A3A5C);
	color: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.cfeeat-review__author-info { display: flex; flex-direction: column; font-size: 12px; line-height: 1.3; }
.cfeeat-review__author-name { font-weight: 700; color: var(--cf-text, #1E293B); font-size: 13px; }
.cfeeat-review__author-meta { color: var(--cf-text-light, #64748B); }
.cfeeat-review__source {
	margin-left: auto; font-size: 11px; color: var(--cf-text-light, #64748B);
	text-decoration: none; padding: 3px 8px; border: 1px solid #E2E8F0; border-radius: 3px;
}
.cfeeat-review__source:hover { border-color: var(--cf-primary, #1A3A5C); color: var(--cf-primary, #1A3A5C); }
.cfeeat-review__stars { color: #F59E0B; font-size: 12px; letter-spacing: 1px; margin-bottom: 8px; }

.cfeeat-reviews__foot { text-align: center; margin-top: 32px; }
.cfeeat-reviews__foot a {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 28px; border: 1px solid var(--cf-primary, #1A3A5C);
	color: var(--cf-primary, #1A3A5C); border-radius: 4px;
	font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
	text-decoration: none; transition: all .15s;
}
.cfeeat-reviews__foot a:hover { background: var(--cf-primary, #1A3A5C); color: #fff; }

/* ── PARTNERS ── */
.cfeeat-partners { padding: clamp(50px, 7vw, 80px) 0; background: #0F1E35; color: #fff; }
.cfeeat-partners__head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.cfeeat-partners__title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin: 0 0 10px; color: #fff; letter-spacing: -0.02em; }
.cfeeat-partners__sub { font-size: 15px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.55; }

.cfeeat-partners__groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.cfeeat-partners__group { }
.cfeeat-partners__group-title {
	font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--cf-accent, #F5A623); margin: 0 0 14px;
	padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.cfeeat-partners__items { display: flex; flex-wrap: wrap; gap: 8px; }
.cfeeat-partner {
	padding: 10px 14px; background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1); border-radius: 3px;
	font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.95);
	letter-spacing: 0.01em; transition: all .15s;
}
.cfeeat-partner:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }

/* ── SHOWROOM INFO (v-nalichii) ── */
.cfeeat-showroom { padding: clamp(60px, 8vw, 100px) 0; background: #fff; }
.cfeeat-showroom__inner {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
	align-items: start; max-width: 1100px;
}
.cfeeat-showroom__text h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 0 0 20px; letter-spacing: -0.02em; }
.cfeeat-showroom__text p { font-size: 16px; line-height: 1.6; color: var(--cf-text, #1E293B); margin: 0 0 18px; }
.cfeeat-showroom__info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.cfeeat-showroom__item {
	padding: 16px 18px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 4px;
}
.cfeeat-showroom__item-label { display: block; font-size: 11px; font-weight: 700; color: var(--cf-text-light, #64748B); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.cfeeat-showroom__item-value { font-size: 15px; font-weight: 700; color: var(--cf-text, #1E293B); line-height: 1.4; }
.cfeeat-showroom__item-value a { color: var(--cf-primary, #1A3A5C); text-decoration: none; }
.cfeeat-showroom__map {
	aspect-ratio: 4/3; background: #E2E8F0; border-radius: 4px; overflow: hidden;
	position: relative; border: 1px solid #CBD5E1;
}
.cfeeat-showroom__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.cfeeat-showroom__map-fallback {
	position: absolute; inset: 0; display: flex; flex-direction: column;
	align-items: center; justify-content: center; color: var(--cf-text-light, #64748B);
	font-size: 14px; font-weight: 600; gap: 8px; padding: 20px; text-align: center;
}

/* ── GUARANTEE BLOCK ── */
.cfeeat-guarantee { padding: clamp(50px, 7vw, 80px) 0; background: #F8FAFC; }
.cfeeat-guarantee__head { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.cfeeat-guarantee__title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin: 0 0 10px; letter-spacing: -0.02em; }
.cfeeat-guarantee__sub { font-size: 15px; color: var(--cf-text-light, #64748B); margin: 0; line-height: 1.55; }
.cfeeat-guarantee__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.cfeeat-guarantee__item {
	padding: 24px 22px; background: #fff; border-radius: 6px;
	border-left: 3px solid var(--cf-accent, #F5A623);
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cfeeat-guarantee__item-icon { color: var(--cf-accent, #F5A623); margin-bottom: 10px; }
.cfeeat-guarantee__item-title { font-size: 16px; font-weight: 800; margin: 0 0 6px; color: var(--cf-text, #1E293B); letter-spacing: -0.01em; }
.cfeeat-guarantee__item-text { font-size: 13px; line-height: 1.55; color: var(--cf-text-light, #64748B); margin: 0; }

@media (max-width: 767px) {
	.cfeeat-cases__grid, .cfeeat-reviews__grid { grid-template-columns: 1fr; }
	.cfeeat-showroom__inner { grid-template-columns: 1fr; }
	.cfeeat-showroom__info { grid-template-columns: 1fr; }
	.cfeeat-reviews__head { flex-direction: column; align-items: flex-start; }
}
