/**
 * Hosting Filter — עיצוב החזית.
 * כל המידות לוגיות (inline/block) כדי שהתוסף יעבוד ב-RTL וב-LTR.
 */

.hf-app {
	--hf-accent: #1f6feb;
	--hf-accent-soft: #e8f0fe;
	--hf-accent-text: #ffffff;
	--hf-bg: transparent;
	--hf-surface: #ffffff;
	--hf-surface-2: #f6f7f9;
	--hf-text: #14161a;
	--hf-muted: #6b7280;
	--hf-line: #e3e6ea;
	--hf-radius: 14px;
	--hf-radius-sm: 8px;
	--hf-shadow: none;
	--hf-gap: 18px;
	--hf-pad: 18px;
	--hf-font: inherit;
	--hf-btn-radius: 10px;

	box-sizing: border-box;
	/* הפריסה נקבעת לפי רוחב האזור עצמו, לא לפי רוחב החלון */
	container-type: inline-size;
	container-name: hfapp;
	color: var(--hf-text);
	font-family: var(--hf-font);
	background: var(--hf-bg);
}

.hf-app *,
.hf-app *::before,
.hf-app *::after {
	box-sizing: inherit;
}

.hf-app [hidden] {
	display: none !important;
}

/* ============ ערכות עיצוב ============ */

.hf-theme-hetzner {
	--hf-accent: #d50c2d;
	--hf-accent-soft: #fdeaee;
	--hf-radius: 4px;
	--hf-radius-sm: 3px;
	--hf-btn-radius: 4px;
	--hf-line: #d8dde3;
}

.hf-theme-midnight {
	--hf-radius: 8px;
	--hf-radius-sm: 6px;
	--hf-btn-radius: 8px;
	--hf-accent: #6ea8fe;
	--hf-accent-soft: #1b2537;
	--hf-accent-text: #0b0f16;
	--hf-surface: #141922;
	--hf-surface-2: #1b2230;
	--hf-text: #e8ecf3;
	--hf-muted: #9aa6b8;
	--hf-line: #2a3342;
}

.hf-theme-soft {
	--hf-accent: #7c5cff;
	--hf-accent-soft: #efeaff;
	--hf-radius: 22px;
	--hf-radius-sm: 14px;
	--hf-btn-radius: 999px;
	--hf-surface-2: #f7f5ff;
	--hf-line: #e9e5f7;
}

.hf-theme-contrast {
	--hf-accent: #111111;
	--hf-accent-soft: #ededed;
	--hf-radius: 0;
	--hf-radius-sm: 0;
	--hf-btn-radius: 0;
	--hf-line: #111111;
	--hf-muted: #444444;
}

.hf-theme-warm {
	--hf-radius: 18px;
	--hf-radius-sm: 10px;
	--hf-btn-radius: 12px;
	--hf-accent: #b45309;
	--hf-accent-soft: #fdf1e0;
	--hf-surface-2: #fbf7f2;
	--hf-line: #ecdfd0;
}

.hf-theme-mint {
	--hf-radius: 6px;
	--hf-radius-sm: 4px;
	--hf-btn-radius: 999px;
	--hf-accent: #0f8a63;
	--hf-accent-soft: #e4f6ef;
	--hf-surface-2: #f3faf7;
	--hf-line: #d9ece5;
}

.hf-theme-paper {
	--hf-accent: #3f4a5a;
	--hf-accent-soft: #eceef2;
	--hf-surface: #fdfdfb;
	--hf-surface-2: #f4f3ee;
	--hf-line: #e2e0d8;
	--hf-radius: 10px;
}

/* ארבע ערכות שמשנות צורה ולא רק צבע */

.hf-theme-outline {
	--hf-accent: #0b3d91;
	--hf-accent-soft: #e6ecf8;
	--hf-radius: 0;
	--hf-radius-sm: 0;
	--hf-btn-radius: 0;
	--hf-line: #0b3d91;
	--hf-shadow: none;
}

.hf-theme-outline .hf-row,
.hf-theme-outline .hf-card,
.hf-theme-outline .hf-filters {
	border-width: 2px;
}

.hf-theme-float {
	--hf-accent: #2563eb;
	--hf-accent-soft: #e8effd;
	--hf-radius: 20px;
	--hf-radius-sm: 12px;
	--hf-btn-radius: 999px;
	--hf-line: transparent;
	--hf-surface-2: #f1f4f9;
	--hf-shadow: 0 10px 30px rgba(16, 24, 40, .12);
	--hf-gap: 22px;
}

.hf-theme-float .hf-row,
.hf-theme-float .hf-card {
	border: 0;
	transition: transform .15s ease;
}

.hf-theme-float .hf-row:hover,
.hf-theme-float .hf-card:hover {
	transform: translateY(-3px);
}

.hf-theme-stripe {
	--hf-accent: #e0561e;
	--hf-accent-soft: #fdeee7;
	--hf-radius: 10px;
	--hf-radius-sm: 6px;
	--hf-btn-radius: 6px;
}

.hf-theme-stripe .hf-row,
.hf-theme-stripe .hf-card {
	position: relative;
	overflow: hidden;
	padding-block-start: calc(var(--hf-pad) + 6px);
}

.hf-theme-stripe .hf-row::before,
.hf-theme-stripe .hf-card::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	block-size: 5px;
	background: var(--hf-accent);
}

.hf-theme-bare {
	--hf-accent: #111827;
	--hf-accent-soft: #f3f4f6;
	--hf-radius: 0;
	--hf-btn-radius: 6px;
	--hf-line: #e5e7eb;
	--hf-gap: 0;
	--hf-shadow: none;
}

.hf-theme-bare .hf-row,
.hf-theme-bare .hf-card,
.hf-theme-bare .hf-filters {
	border: 0;
	border-block-end: 1px solid var(--hf-line);
	border-radius: 0;
	background: transparent;
	padding-inline: 0;
}

.hf-theme-bare .hf-list {
	gap: 0;
}

.hf-theme-bare .hf-list--cards {
	gap: 0 24px;
}

.hf-theme-gradient {
	--hf-accent: #4338ca;
	--hf-accent-soft: #eceafe;
	--hf-radius: 16px;
	--hf-radius-sm: 10px;
	--hf-btn-radius: 10px;
	--hf-line: #e6e5f5;
}

.hf-theme-gradient .hf-row,
.hf-theme-gradient .hf-card {
	background:
		linear-gradient(180deg, var(--hf-accent-soft) 0, transparent 96px),
		var(--hf-surface);
}

.hf-theme-glass {
	--hf-accent: #0ea5e9;
	--hf-accent-soft: rgba(14, 165, 233, .12);
	--hf-radius: 18px;
	--hf-btn-radius: 12px;
	--hf-surface: rgba(255, 255, 255, .72);
	--hf-surface-2: rgba(255, 255, 255, .5);
	--hf-line: rgba(15, 23, 42, .1);
	--hf-shadow: 0 8px 30px rgba(15, 23, 42, .1);
}

.hf-theme-glass .hf-row,
.hf-theme-glass .hf-card,
.hf-theme-glass .hf-filters,
.hf-theme-glass .hf-quick {
	backdrop-filter: blur(12px);
}

.hf-theme-editorial {
	--hf-accent: #1f2937;
	--hf-accent-soft: #f1f2f4;
	--hf-radius: 2px;
	--hf-radius-sm: 2px;
	--hf-btn-radius: 2px;
	--hf-line: #d7d9de;
	--hf-gap: 26px;
	--hf-pad: 24px;
	--hf-font: Georgia, "Times New Roman", serif;
}

.hf-theme-editorial .hf-price__now,
.hf-theme-editorial .hf-spec__value {
	font-family: system-ui, sans-serif;
}

.hf-theme-editorial .hf-row__title,
.hf-theme-editorial .hf-card__title {
	font-size: 22px;
	letter-spacing: -0.3px;
}

.hf-theme-mono {
	--hf-accent: #000000;
	--hf-accent-soft: #f2f2f2;
	--hf-accent-text: #ffffff;
	--hf-radius: 0;
	--hf-radius-sm: 0;
	--hf-btn-radius: 0;
	--hf-line: #000000;
	--hf-muted: #555555;
	--hf-shadow: none;
}

.hf-theme-mono .hf-price__now {
	font-size: 34px;
}

.hf-theme-mono .hf-pill--save {
	background: #000;
	color: #fff;
}

/* ארבע ערכות לאתרים עם רקע כהה */

.hf-theme-noir {
	--hf-accent: #f5f5f5;
	--hf-accent-soft: #24262b;
	--hf-accent-text: #111214;
	--hf-bg: transparent;
	--hf-surface: #17181c;
	--hf-surface-2: #202127;
	--hf-text: #f2f3f5;
	--hf-muted: #9a9ca3;
	--hf-line: #2c2e35;
	--hf-radius: 10px;
	--hf-btn-radius: 8px;
}

.hf-theme-ocean {
	--hf-accent: #38bdf8;
	--hf-accent-soft: #10263a;
	--hf-accent-text: #04121e;
	--hf-surface: #0e1b2a;
	--hf-surface-2: #142436;
	--hf-text: #e6f1fb;
	--hf-muted: #8ba6bf;
	--hf-line: #1d3348;
	--hf-radius: 14px;
	--hf-btn-radius: 10px;
}

.hf-theme-forest {
	--hf-accent: #4ade80;
	--hf-accent-soft: #10261a;
	--hf-accent-text: #05130b;
	--hf-surface: #101a14;
	--hf-surface-2: #16241c;
	--hf-text: #e8f5ec;
	--hf-muted: #8fae9b;
	--hf-line: #1e3327;
	--hf-radius: 6px;
	--hf-btn-radius: 6px;
}

.hf-theme-plum {
	--hf-accent: #c084fc;
	--hf-accent-soft: #241733;
	--hf-accent-text: #150a20;
	--hf-surface: #1a1226;
	--hf-surface-2: #221833;
	--hf-text: #f1e9fa;
	--hf-muted: #a894bd;
	--hf-line: #2f2242;
	--hf-radius: 18px;
	--hf-btn-radius: 999px;
}

/* מסגרת הכרטיסים, בנפרד מערכת העיצוב */

.hf-frame-square .hf-row,
.hf-frame-square .hf-card,
.hf-frame-square .hf-filters,
.hf-frame-square .hf-quick {
	border-radius: 0;
}

.hf-frame-rounded .hf-row,
.hf-frame-rounded .hf-card,
.hf-frame-rounded .hf-filters,
.hf-frame-rounded .hf-quick {
	border-radius: 14px;
}

.hf-frame-soft .hf-row,
.hf-frame-soft .hf-card,
.hf-frame-soft .hf-filters,
.hf-frame-soft .hf-quick {
	border-radius: 26px;
}

.hf-frame-thick .hf-row,
.hf-frame-thick .hf-card,
.hf-frame-thick .hf-filters,
.hf-frame-thick .hf-quick {
	border-width: 2px;
}

.hf-frame-none .hf-row,
.hf-frame-none .hf-card,
.hf-frame-none .hf-filters,
.hf-frame-none .hf-quick {
	border-color: transparent;
}

/* ============ מודיפיקטורים ============ */

.hf-buttons-pill {
	--hf-btn-radius: 999px;
}

.hf-buttons-square {
	--hf-btn-radius: 0;
}

.hf-borders-soft {
	--hf-line: transparent;
	--hf-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 6px 18px rgba(16, 24, 40, .08);
}

.hf-borders-strong {
	--hf-line: currentColor;
}

.hf-borders-none .hf-row,
.hf-borders-none .hf-card,
.hf-borders-none .hf-filters,
.hf-borders-none .hf-group {
	border-color: transparent;
}

.hf-density-compact {
	--hf-gap: 12px;
	--hf-pad: 12px;
	font-size: 15px;
}

.hf-font-heebo {
	--hf-font: "Heebo", system-ui, sans-serif;
}

.hf-font-rubik {
	--hf-font: "Rubik", system-ui, sans-serif;
}

.hf-font-assistant {
	--hf-font: "Assistant", system-ui, sans-serif;
}

.hf-font-notosans {
	--hf-font: "Noto Sans Hebrew", system-ui, sans-serif;
}

/* רוחב האזור בעמוד. פריצה מרוחב התוכן של התבנית בלי לשבור מרכוז */

.hf-width-wide {
	inline-size: min(1200px, calc(100vw - 48px));
	max-inline-size: none;
	margin-inline: calc(50% - min(600px, 50vw - 24px));
}

.hf-width-full {
	inline-size: calc(100vw - 32px);
	max-inline-size: none;
	margin-inline: calc(50% - 50vw + 16px);
}

/* ============ שלד ============ */

.hf-app__title {
	margin-block: 0 var(--hf-gap);
}

.hf-app__layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: var(--hf-gap);
	align-items: start;
}

/* במסך רחב התווית יושבת מעל המחיר, בעמודה שלה, ולא צפה מעל התוכן */
@container hfapp (min-width: 861px) {
	.hf-row .hf-type {
		position: static;
		grid-column: 2;
		grid-row: 1;
		justify-self: start;
		margin-block-end: 4px;
	}

	.hf-row__main {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.hf-row__side {
		grid-column: 2;
		grid-row: 2;
	}

	.hf-row .hf-row__title {
		padding-inline-end: 0;
	}
}

/* אזור צר, למשל בתוך עמודה של תבנית: הסינון עובר למעלה במקום להצר את התוצאות */
@container hfapp (max-width: 860px) {
	.hf-app__layout {
		grid-template-columns: minmax(0, 1fr);
	}
}

.hf-content {
	min-inline-size: 0;
}

/* ============ סרגל הסינון ============ */

.hf-sidebar {
	position: sticky;
	inset-block-start: 20px;
}

.hf-filters {
	display: flex;
	flex-direction: column;
	background: var(--hf-surface);
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-radius);
	box-shadow: var(--hf-shadow);
	overflow: hidden;
	max-block-size: calc(100vh - 40px);
}

.hf-filters__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: var(--hf-pad);
	border-block-end: 1px solid var(--hf-line);
}

.hf-filters__head h3 {
	margin: 0;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.hf-filters__close {
	display: none;
	background: none;
	border: 0;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: var(--hf-muted);
}

.hf-filters__body {
	overflow-y: auto;
	padding-inline: var(--hf-pad);
	flex: 1;
}

.hf-filters__foot {
	padding: var(--hf-pad);
	border-block-start: 1px solid var(--hf-line);
	background: var(--hf-surface);
	display: none;
}

.hf-badge {
	background: var(--hf-accent);
	color: var(--hf-accent-text);
	border-radius: 999px;
	min-inline-size: 20px;
	padding: 1px 7px;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
}

.hf-badge--soft {
	background: var(--hf-accent-soft);
	color: var(--hf-accent);
}

.hf-link {
	color: var(--hf-accent);
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 13px;
	padding: 0;
	text-decoration: none;
}

/* קטגוריות נפתחות */

.hf-group {
	border-block-end: 1px solid var(--hf-line);
}

.hf-group:last-child {
	border-block-end: 0;
}

.hf-group__head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-block: 14px;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.hf-group__head::-webkit-details-marker {
	display: none;
}

.hf-group__head::after {
	content: "";
	inline-size: 8px;
	block-size: 8px;
	border-inline-end: 2px solid var(--hf-muted);
	border-block-end: 2px solid var(--hf-muted);
	transform: rotate(45deg);
	transition: transform .15s ease;
	margin-inline-start: auto;
}

.hf-group[open] > .hf-group__head::after {
	transform: rotate(-135deg);
}

.hf-group__title {
	flex-shrink: 0;
}

.hf-group__meta {
	color: var(--hf-muted);
	font-weight: 400;
	font-size: 13px;
	font-variant-numeric: tabular-nums;
}

.hf-group__body {
	padding-block-end: 14px;
	display: grid;
	gap: 16px;
}

.hf-filter__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	margin-block-end: 8px;
}

.hf-filter__label {
	font-size: 14px;
	font-weight: 500;
}

.hf-filter__value {
	font-size: 12px;
	color: var(--hf-muted);
	font-variant-numeric: tabular-nums;
}

.hf-search {
	inline-size: 100%;
	padding: 11px 12px;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-radius-sm);
	background: var(--hf-surface);
	color: inherit;
	font: inherit;
}

.hf-filter--search {
	padding-block: 14px;
	border-block-end: 1px solid var(--hf-line);
}

/* מחוון טווח */

.hf-range {
	position: relative;
	block-size: 30px;
	display: flex;
	align-items: center;
}

.hf-range input[type="range"] {
	position: absolute;
	inline-size: 100%;
	margin: 0;
	background: none;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
	z-index: 2;
}

.hf-range input[type="range"]::-webkit-slider-thumb {
	pointer-events: auto;
	appearance: none;
	-webkit-appearance: none;
	inline-size: 20px;
	block-size: 20px;
	border-radius: 50%;
	background: var(--hf-surface);
	border: 2px solid var(--hf-accent);
	cursor: pointer;
}

.hf-range input[type="range"]::-moz-range-thumb {
	pointer-events: auto;
	inline-size: 18px;
	block-size: 18px;
	border-radius: 50%;
	background: var(--hf-surface);
	border: 2px solid var(--hf-accent);
	cursor: pointer;
}

.hf-range__track {
	position: absolute;
	inline-size: 100%;
	block-size: 4px;
	background: var(--hf-surface-2);
	border-radius: 999px;
}

.hf-range__fill {
	position: absolute;
	block-size: 100%;
	background: var(--hf-accent);
	border-radius: 999px;
}

.hf-range__ends {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--hf-muted);
	font-variant-numeric: tabular-nums;
}

/* אפשרויות */

.hf-options {
	display: grid;
	gap: 2px;
}

.hf-option {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 6px;
	border-radius: var(--hf-radius-sm);
	cursor: pointer;
	font-size: 14px;
}

.hf-option:hover {
	background: var(--hf-surface-2);
}

.hf-option.is-empty {
	color: var(--hf-muted);
}

.hf-option__label {
	flex: 1;
}

.hf-count {
	color: var(--hf-muted);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.hf-chips,
.hf-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.hf-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 12px;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-btn-radius);
	background: var(--hf-surface);
	color: inherit;
	font: inherit;
	font-size: 13px;
	cursor: pointer;
}

.hf-chip.is-active {
	background: var(--hf-accent-soft);
	border-color: var(--hf-accent);
	color: var(--hf-accent);
}

.hf-chip.is-empty {
	opacity: .45;
}

.hf-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
}

.hf-toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hf-toggle__track {
	inline-size: 38px;
	block-size: 22px;
	border-radius: 999px;
	background: var(--hf-surface-2);
	border: 1px solid var(--hf-line);
	position: relative;
	transition: background .15s ease;
	flex-shrink: 0;
}

.hf-toggle__track::after {
	content: "";
	position: absolute;
	inset-block-start: 2px;
	inset-inline-start: 2px;
	inline-size: 16px;
	block-size: 16px;
	border-radius: 50%;
	background: var(--hf-surface);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
	transition: transform .15s ease;
}

.hf-toggle input:checked + .hf-toggle__track {
	background: var(--hf-accent);
	border-color: var(--hf-accent);
}

.hf-toggle input:checked + .hf-toggle__track::after {
	transform: translateX(16px);
}

.hf-app[dir="rtl"] .hf-toggle input:checked + .hf-toggle__track::after,
[dir="rtl"] .hf-toggle input:checked + .hf-toggle__track::after {
	transform: translateX(-16px);
}

.hf-toggle__label {
	flex: 1;
}

/* ============ בועות הסבר ============ */

.hf-tip {
	display: inline-flex;
	vertical-align: middle;
	margin-inline-start: 5px;
}

.hf-tip__btn {
	inline-size: 17px;
	block-size: 17px;
	padding: 0;
	border: 1px solid var(--hf-line);
	border-radius: 50%;
	background: var(--hf-surface-2);
	color: var(--hf-muted);
	font: inherit;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	cursor: help;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease, color .15s ease;
}

.hf-tip__btn:hover,
.hf-tip__btn:focus-visible {
	background: var(--hf-accent);
	border-color: var(--hf-accent);
	color: var(--hf-accent-text);
}

/* הבועה עצמה: אלמנט popover, נפתח בשכבה העליונה של הדפדפן */
.hf-tip__bubble[popover] {
	position: fixed;
	/* ברירת מחדל בטוחה: גם אם המיקום לא חושב, הבועה בתוך המסך */
	inset-block-start: auto;
	inset-block-end: 16px;
	inset-inline-start: 12px;
	inset-inline-end: auto;
	margin: 0;
	inline-size: max-content;
	max-inline-size: min(300px, calc(100vw - 32px));
	padding: 11px 13px;
	border: 0;
	border-radius: 10px;
	background: #101725;
	color: #f3f5f9;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	text-align: start;
	box-shadow: 0 12px 30px rgba(8, 12, 20, .3);
	overflow: visible;
}

.hf-tip__bubble[popover]:not(:popover-open) {
	display: none;
}

/* דפדפנים ללא Popover API */
.hf-tip__bubble.is-open {
	display: block;
	z-index: 2000;
}

@media (max-width: 880px) {
	.hf-tip__bubble[popover] {
		font-size: 14px;
		padding: 13px 15px;
	}
}

/* מיקוד: טבעת בצבע הערכה, ורק בניווט מקלדת */

.hf-app :focus {
	outline: none;
}

.hf-app :focus-visible {
	outline: 2px solid var(--hf-accent);
	outline-offset: 2px;
	border-radius: var(--hf-radius-sm);
}

/* ============ סרגל כלים ============ */

.hf-app button:focus:not(:focus-visible),
.hf-app a:focus:not(:focus-visible) {
	outline: none;
}

.hf-app button:focus-visible,
.hf-app a:focus-visible,
.hf-app input:focus-visible,
.hf-app select:focus-visible {
	outline: 2px solid var(--hf-accent);
	outline-offset: 2px;
}

/* קבוצת הכפתורים נשארת שלמה ולא נשברת לשורה נוספת */
.hf-segment {
	flex: 0 0 auto;
	flex-wrap: nowrap;
}

.hf-toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-block-end: var(--hf-gap);
}

.hf-toolbar__count {
	margin: 0;
	color: var(--hf-muted);
	font-size: 14px;
}

.hf-toolbar__count strong {
	color: var(--hf-text);
	font-size: 17px;
	font-variant-numeric: tabular-nums;
}

.hf-toolbar__controls {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-inline-start: auto;
	flex-wrap: wrap;
}

.hf-segment {
	display: inline-flex;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-btn-radius);
	overflow: hidden;
	background: var(--hf-surface);
}

.hf-segment__item {
	border: 0;
	background: none;
	padding: 8px 14px;
	font: inherit;
	font-size: 14px;
	cursor: pointer;
	color: inherit;
}

.hf-segment__item.is-active {
	background: var(--hf-accent);
	color: var(--hf-accent-text);
}

.hf-select select {
	padding: 8px 12px;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-btn-radius);
	background: var(--hf-surface);
	color: inherit;
	font: inherit;
	font-size: 14px;
}

/* ============ מה אתם בונים ============ */

.hf-quick {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-block-end: 14px;
	padding: 0;
	background: none;
	border: 0;
	box-shadow: none;
}

.hf-quick__title {
	font-size: 13px;
	font-weight: 600;
	color: var(--hf-muted);
	white-space: nowrap;
}

.hf-quick__items {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	flex: 1;
	min-inline-size: 0;
}

.hf-quick__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 1px solid var(--hf-line);
	border-radius: 999px;
	background: var(--hf-surface);
	color: inherit;
	font: inherit;
	font-size: 13px;
	line-height: 1.4;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.hf-quick__item:hover {
	border-color: var(--hf-accent);
}

.hf-quick__item.is-active {
	background: var(--hf-accent);
	border-color: var(--hf-accent);
	color: var(--hf-accent-text);
	font-weight: 600;
}

.hf-quick__icon {
	font-size: 14px;
	line-height: 1;
}

@media (max-width: 880px) {
	.hf-quick {
		gap: 8px;
		margin-block-end: 12px;
	}

	.hf-quick__title {
		inline-size: 100%;
		font-size: 12px;
	}

	/* גלילה אופקית עם רמז שיש עוד, בלי שוליים שנחתכים */
	.hf-quick__items {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		scroll-snap-type: x proximity;
		padding-block-end: 2px;
		mask-image: linear-gradient(to left, transparent 0, #000 18px);
	}

	[dir="ltr"] .hf-quick__items {
		mask-image: linear-gradient(to right, transparent 0, #000 18px);
	}

	.hf-quick__items::-webkit-scrollbar {
		display: none;
	}

	.hf-quick__item {
		white-space: nowrap;
		flex: 0 0 auto;
		scroll-snap-align: start;
	}
}

/* ============ תוצאות ============ */

.hf-list {
	display: grid;
	gap: var(--hf-gap);
}

.hf-list--cards {
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.hf-row,
.hf-card {
	background: var(--hf-surface);
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-radius);
	box-shadow: var(--hf-shadow);
	padding: var(--hf-pad);
}

.hf-row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px;
	gap: var(--hf-gap);
	align-items: start;
}

.hf-row__title,
.hf-card__title {
	margin: 0 0 10px;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.hf-row__title a,
.hf-card__title a {
	color: inherit;
	text-decoration: none;
}

.hf-tag {
	background: var(--hf-accent-soft);
	color: var(--hf-accent);
	border-radius: 999px;
	padding: 2px 10px;
	font-size: 12px;
	font-weight: 600;
}

.hf-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hf-card.is-popular {
	border-color: var(--hf-accent);
}

.hf-tag--corner {
	position: absolute;
	inset-block-start: -10px;
	inset-inline-start: 12px;
}

/* סוג השרת, בפינה שמעבר לכותרת. ארבעה עיצובים לבחירה */
.hf-type {
	position: absolute;
	inset-block-start: 10px;
	inset-inline-end: var(--hf-pad);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--hf-muted);
	background: var(--hf-surface-2);
	border-radius: 999px;
	padding: 2px 9px;
	line-height: 16px;
	white-space: nowrap;
	pointer-events: none;
}

.hf-row__main,
.hf-card__title {
	padding-inline-end: 0;
}

.hf-row .hf-row__title,
.hf-card .hf-card__title {
	padding-inline-end: 120px;
}

.hf-type--outline {
	background: transparent;
	border: 1px solid var(--hf-accent);
	color: var(--hf-accent);
}

.hf-type--solid {
	background: var(--hf-accent);
	color: var(--hf-accent-text);
}

.hf-type--ribbon {
	inset-block-start: 16px;
	inset-inline-end: -38px;
	padding: 3px 44px;
	border-radius: 0;
	background: var(--hf-accent);
	color: var(--hf-accent-text);
	transform: rotate(45deg);
	box-shadow: 0 2px 6px rgba(8, 12, 20, .18);
}

[dir="ltr"] .hf-type--ribbon {
	transform: rotate(-45deg);
}

.hf-badge-ribbon .hf-row,
.hf-badge-ribbon .hf-card {
	overflow: hidden;
}

/* מפרט */

.hf-specs--rows {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.hf-specs--rows .hf-spec {
	flex-direction: row;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-block: 7px;
	border-block-end: 1px dotted var(--hf-line);
}

.hf-specs--rows .hf-spec:last-child {
	border-block-end: 0;
}

.hf-specs--rows .hf-spec__label {
	font-size: 13px;
}

.hf-specs--boxes {
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 8px;
}

.hf-specs--boxes .hf-spec {
	padding: 9px 11px;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-radius-sm);
	background: var(--hf-surface-2);
}

.hf-specs--inline {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
}

.hf-specs--inline .hf-spec {
	flex-direction: row;
	align-items: baseline;
	gap: 5px;
}

.hf-specs--inline .hf-spec__label {
	font-size: 13px;
}

.hf-specs--inline .hf-spec + .hf-spec::before {
	content: "";
	inline-size: 1px;
	block-size: 12px;
	background: var(--hf-line);
	margin-inline-end: 9px;
}

.hf-specs-modal[popover] {
	position: fixed;
	inset: auto;
	inset-block-end: 0;
	inset-inline: 0;
	margin: 0 auto;
	inline-size: min(520px, 100%);
	max-block-size: 80vh;
	overflow: auto;
	padding: 20px;
	border: 0;
	border-start-start-radius: var(--hf-radius);
	border-start-end-radius: var(--hf-radius);
	background: var(--hf-surface);
	color: var(--hf-text);
	box-shadow: 0 -14px 40px rgba(8, 12, 20, .28);
}

.hf-specs-modal[popover]::backdrop {
	background: rgba(10, 14, 20, .5);
}

.hf-specs-modal__title {
	margin: 0 0 14px;
	font-size: 18px;
}

.hf-specs-modal .hf-btn {
	margin-block-start: 16px;
}

@media (min-width: 881px) {
	.hf-specs-modal[popover] {
		inset: 50% auto auto 50%;
		transform: translate(-50%, -50%);
		border-radius: var(--hf-radius);
	}
}

.hf-specs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 8px 16px;
}

.hf-specs--full {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	margin-block-start: 12px;
	padding-block-start: 12px;
	border-block-start: 1px dashed var(--hf-line);
}

.hf-spec {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-inline-size: 0;
}

.hf-spec__label {
	font-size: 12px;
	color: var(--hf-muted);
}

.hf-spec__value {
	font-weight: 600;
	font-size: 14px;
}

.hf-more {
	margin-block-start: 12px;
}

.hf-more__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	color: var(--hf-accent);
	font-size: 13px;
	list-style: none;
}

.hf-more__toggle::-webkit-details-marker {
	display: none;
}

.hf-more__count {
	background: var(--hf-accent-soft);
	border-radius: 999px;
	padding: 0 7px;
	font-size: 11px;
}

/* מחיר */

.hf-row__side {
	display: grid;
	gap: 10px;
	justify-items: stretch;
	text-align: start;
}

.hf-price {
	display: grid;
	gap: 3px;
	justify-items: start;
}

.hf-price__top {
	display: flex;
	align-items: center;
	gap: 6px;
	min-block-size: 20px;
}

.hf-price__old {
	color: var(--hf-muted);
	font-size: 13px;
	text-decoration: line-through;
	font-variant-numeric: tabular-nums;
}

.hf-pill {
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	padding: 0 8px;
	border-radius: 999px;
	white-space: nowrap;
}

.hf-pill--sale {
	background: var(--hf-accent);
	color: var(--hf-accent-text);
}

.hf-pill--save {
	background: #e6f6ef;
	color: #0f7a54;
}

.hf-theme-midnight .hf-pill--save {
	background: #16351f;
	color: #67d6a1;
}

.hf-price__main {
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}

.hf-price__now {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.5px;
	font-variant-numeric: tabular-nums;
}

.hf-price__suffix {
	font-size: 13px;
	color: var(--hf-muted);
}

.hf-price__main .hf-tip {
	align-self: center;
}

.hf-card .hf-price {
	margin-block-end: 4px;
}

/* כפתורים */

.hf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 11px 18px;
	border: 1px solid var(--hf-accent);
	border-radius: var(--hf-btn-radius);
	background: var(--hf-accent);
	color: var(--hf-accent-text);
	font: inherit;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
}

.hf-btn:hover {
	filter: brightness(.94);
}

.hf-btn--block {
	inline-size: 100%;
}

.hf-btn--ghost {
	background: var(--hf-surface);
	color: var(--hf-text);
	border-color: var(--hf-line);
}

/* עיצוב כפתור ההזמנה */

.hf-cta-outline .hf-btn--cta {
	background: transparent;
	color: var(--hf-accent);
	border-color: var(--hf-accent);
}

.hf-cta-outline .hf-btn--cta:hover {
	background: var(--hf-accent-soft);
	filter: none;
}

.hf-cta-text .hf-btn--cta {
	background: transparent;
	border-color: transparent;
	color: var(--hf-accent);
	padding-inline: 4px;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hf-cta-text .hf-btn--cta:hover {
	background: transparent;
	filter: none;
	text-decoration-thickness: 2px;
}

.hf-cta-soft .hf-btn--cta {
	background: var(--hf-accent-soft);
	color: var(--hf-accent);
	border-color: transparent;
}

.hf-btn--disabled {
	background: var(--hf-surface-2);
	color: var(--hf-muted);
	border-color: var(--hf-line);
	cursor: not-allowed;
}

.hf-compare-check {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	color: var(--hf-muted);
	cursor: pointer;
}

/* עימוד ומצב ריק */

.hf-pagination {
	display: flex;
	gap: 6px;
	justify-content: center;
	flex-wrap: wrap;
	margin-block-start: var(--hf-gap);
}

.hf-page {
	min-inline-size: 40px;
	padding: 9px 12px;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-btn-radius);
	background: var(--hf-surface);
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.hf-page.is-active {
	background: var(--hf-accent);
	color: var(--hf-accent-text);
	border-color: var(--hf-accent);
}

.hf-empty {
	text-align: center;
	padding: 40px 20px;
	background: var(--hf-surface);
	border: 1px dashed var(--hf-line);
	border-radius: var(--hf-radius);
}

.hf-empty__title {
	margin: 0 0 6px;
	font-weight: 600;
}

.hf-empty__text {
	margin: 0 0 14px;
	color: var(--hf-muted);
}

/* ============ השוואה ============ */

.hf-compare-view {
	overflow-x: auto;
	overscroll-behavior-x: contain;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-radius);
	background: var(--hf-surface);
}

/* הטבלה מקבלת את הרוחב שהיא צריכה ונגללת, במקום לדחוס כל מילה לשורה */
.hf-compare-view .hf-modal__foot {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	padding: 14px 20px 18px;
	border-block-start: 1px solid var(--hf-line);
	background: var(--hf-surface);
	position: sticky;
	inset-block-end: 0;
}

.hf-compare-table {
	inline-size: max-content;
	min-inline-size: 100%;
	border-collapse: collapse;
}

.hf-compare-view .hf-compare-table th,
.hf-compare-view .hf-compare-table td {
	min-inline-size: 160px;
	border-block-end: 1px solid var(--hf-line);
	border-inline-end: 0;
	border-inline-start: 0;
	vertical-align: top;
}

/* עמודת המאפיין נשארת במקום בזמן גלילה */
.hf-compare-view .hf-compare-table th[scope="row"],
.hf-compare-view .hf-compare-table thead th:first-child {
	position: sticky;
	inset-inline-start: 0;
	z-index: 2;
	min-inline-size: 128px;
	background: var(--hf-surface-2);
	white-space: nowrap;
}

.hf-compare-view .hf-compare-table thead th {
	position: sticky;
	inset-block-start: 0;
	z-index: 1;
	background: var(--hf-surface);
	white-space: nowrap;
}

.hf-compare-view .hf-compare-table thead th:first-child {
	z-index: 3;
}

.hf-compare-table__suffix {
	color: var(--hf-muted);
	font-size: 12px;
}

@media (max-width: 880px) {
	.hf-compare-view .hf-compare-table th,
	.hf-compare-view .hf-compare-table td {
		min-inline-size: 148px;
		padding: 8px 10px;
		font-size: 13px;
	}

	.hf-compare-view .hf-compare-table th[scope="row"] {
		min-inline-size: 112px;
		font-size: 12.5px;
	}
}

.hf-segment__item {
	position: relative;
}

.hf-segment__item .hf-badge {
	position: absolute;
	inset-block-start: 2px;
	inset-inline-start: 2px;
	margin: 0;
	font-size: 9.5px;
	line-height: 14px;
	min-inline-size: 14px;
	padding: 0 4px;
	pointer-events: none;
}

.hf-segment__item.is-active .hf-badge {
	background: var(--hf-accent-text);
	color: var(--hf-accent);
}

.hf-compare-hint {
	margin: 0 0 12px;
	padding: 10px 14px;
	border-radius: var(--hf-radius-sm);
	background: var(--hf-accent-soft);
	color: var(--hf-accent);
	font-size: 13.5px;
	font-weight: 500;
}

.hf-compare-view__hint {
	margin: 0 0 12px;
	font-size: 13px;
	color: var(--hf-muted);
}


.hf-compare-btn {
	position: relative;
}

.hf-compare-btn .hf-badge {
	margin-inline-start: 6px;
}




.hf-compare-bar {
	position: sticky;
	inset-block-end: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-block-start: var(--hf-gap);
	padding: 12px 16px;
	border: 1px solid var(--hf-line);
	border-radius: var(--hf-radius);
	background: var(--hf-surface);
	box-shadow: 0 -6px 18px rgba(16, 24, 40, .08);
}

.hf-compare-bar__items {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.hf-compare-bar__actions {
	display: flex;
	gap: 8px;
}

.hf-modal {
	border: 0;
	border-radius: var(--hf-radius);
	padding: 0;
	max-inline-size: min(960px, 92vw);
	inline-size: 100%;
	color: inherit;
	background: var(--hf-surface);
}

.hf-modal::backdrop {
	background: rgba(10, 14, 20, .55);
}

.hf-modal__close {
	position: absolute;
	inset-block-start: 8px;
	inset-inline-end: 12px;
	background: none;
	border: 0;
	font-size: 26px;
	cursor: pointer;
	color: var(--hf-muted);
}

.hf-modal__body {
	padding: 26px 20px 20px;
	overflow: auto;
	max-block-size: 80vh;
}

.hf-modal__foot {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	padding: 14px 20px 18px;
	border-block-start: 1px solid var(--hf-line);
	background: var(--hf-surface);
	position: sticky;
	inset-block-end: 0;
}

.hf-compare-table {
	inline-size: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.hf-compare-table th,
.hf-compare-table td {
	border: 1px solid var(--hf-line);
	padding: 9px 10px;
	text-align: start;
}

/* ============ מובייל ============ */

.hf-scrim {
	position: fixed;
	inset: 0;
	background: rgba(10, 14, 20, .5);
	z-index: 998;
}

.hf-mobile-bar {
	display: none;
	position: sticky;
	inset-block-end: 0;
	z-index: 30;
	gap: 8px;
	justify-content: center;
	flex-wrap: nowrap;
	padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
	background: transparent;
	border: 0;
	box-shadow: none;
	pointer-events: none;
}

/* שני הכפתורים זהים לגמרי, וצפים מעל התוכן בלי רצועה מאחוריהם */
.hf-mobile-bar__btn {
	flex: 0 1 auto;
	min-inline-size: 0;
	max-inline-size: 48%;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 16px;
	border: 1px solid var(--hf-accent);
	border-radius: var(--hf-btn-radius);
	background: var(--hf-accent);
	color: var(--hf-accent-text);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 6px 18px rgba(16, 24, 40, .18);
}

/* בעברית כפתור הסינון יושב מימין */
.hf-app[dir="rtl"] .hf-mobile-bar__btn--primary {
	order: -1;
}

.hf-mobile-bar__btn--primary .hf-badge {
	background: var(--hf-accent-text);
	color: var(--hf-accent);
}

/* גיליון מיון */

.hf-sheet {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: flex-end;
	background: rgba(10, 14, 20, .5);
}

.hf-sheet__panel {
	inline-size: 100%;
	background: var(--hf-surface);
	border-start-start-radius: var(--hf-radius);
	border-start-end-radius: var(--hf-radius);
	max-block-size: 80vh;
	display: flex;
	flex-direction: column;
}

.hf-sheet__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-block-end: 1px solid var(--hf-line);
}

.hf-sheet__body {
	overflow-y: auto;
	padding: 8px;
}

.hf-sheet__option {
	inline-size: 100%;
	text-align: start;
	padding: 14px 12px;
	border: 0;
	border-radius: var(--hf-radius-sm);
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.hf-sheet__option.is-active {
	background: var(--hf-accent-soft);
	color: var(--hf-accent);
	font-weight: 600;
}

@media (max-width: 880px) {
	.hf-app__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	/* פס ההשוואה בתחתית, וכפתורי הסינון והמיון יושבים בדיוק מעליו */
	.hf-compare-bar {
		position: fixed;
		inset-inline: 10px;
		inset-block-end: 10px;
		z-index: 35;
		margin-block-start: 0;
		border-radius: var(--hf-radius);
		box-shadow: 0 8px 24px rgba(16, 24, 40, .2);
	}

	.hf-app.is-enhanced .hf-mobile-bar {
		inset-block-end: calc(var(--hf-compare-h, 0px) + 10px);
	}

	/* מקום גלילה מתחת לתוצאות, כדי שהכרטיס האחרון לא יישאר מתחת לכפתורים */
	.hf-app.is-enhanced .hf-content {
		padding-block-end: calc(var(--hf-compare-h, 0px) + 72px);
	}

	.hf-app {
		padding-block-end: 8px;
	}

	/* גלילה למטה מפנה את הכפתורים מהמסך, גלילה למעלה מחזירה אותם */
	.hf-app.is-enhanced .hf-mobile-bar {
		transition: transform .2s ease, opacity .2s ease;
	}

	.hf-app.is-bar-hidden .hf-mobile-bar {
		transform: translateY(calc(100% + 20px));
		opacity: 0;
		pointer-events: none;
	}

	.hf-app.is-enhanced .hf-mobile-bar {
		display: flex;
	}

	.hf-app[dir] {
		text-align: start;
	}

	.hf-app.is-enhanced .hf-sidebar {
		position: fixed;
		inset: 0;
		z-index: 999;
		padding: 0;
		transform: translateY(100%);
		transition: transform .2s ease;
	}

	.hf-app.is-enhanced.is-filters-open .hf-sidebar {
		transform: translateY(0);
	}

	.hf-app.is-enhanced .hf-filters {
		block-size: 100%;
		max-block-size: none;
		border: 0;
		border-radius: 0;
	}

	.hf-app.is-enhanced .hf-filters__close {
		display: block;
	}

	.hf-filters__foot {
		display: block;
	}

	.hf-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.hf-row__side {
		text-align: start;
		border-block-start: 1px solid var(--hf-line);
		padding-block-start: 12px;
	}

	.hf-row .hf-price {
		justify-content: flex-start;
	}

	.hf-toolbar__controls {
		inline-size: 100%;
		margin-inline-start: 0;
	}

	.hf-specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 881px) {
	.hf-scrim {
		display: none;
	}
}

/* גיבוי ללא JS: הכפתורים הידניים מוצגים, המגירה לא נחוצה */
.hf-app.is-enhanced .hf-submit {
	display: none;
}

.hf-submit {
	margin-block-start: 12px;
}

.hf-app:not(.is-enhanced) .hf-filters__foot {
	display: block;
}

@media (prefers-reduced-motion: reduce) {
	.hf-app * {
		transition: none !important;
	}
}

/* תגיות שימוש והערות קבועות */

.hf-tags {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.hf-hashtag {
	font-size: 12px;
	color: var(--hf-accent);
	background: var(--hf-accent-soft);
	border-radius: 999px;
	padding: 2px 9px;
}

.hf-notes {
	list-style: none;
	margin: 14px 0 0;
	padding: 12px 14px;
	background: var(--hf-surface-2);
	border-radius: var(--hf-radius-sm);
	display: grid;
	gap: 7px;
}

.hf-note {
	position: relative;
	padding-inline-start: 20px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--hf-text);
}

.hf-note::before {
	content: "✓";
	position: absolute;
	inset-inline-start: 0;
	color: var(--hf-accent);
	font-weight: 700;
}
