/* Find Your Cable — wizard styles */

.fyc-wizard-wrap {
	max-width: 980px;
	margin: 0 auto;
}
.fyc-wizard-title {
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 28px;
	color: #222;
}

.fyc-wizard {
	--fyc-accent: #FF9D2E;
	--fyc-accent-dark: #e8871b;
	--fyc-text: #222;
	--fyc-muted: #767676;
	--fyc-border: #e3e3e3;
	--fyc-bg-soft: #f8f8f8;
	--fyc-radius: 10px;
	max-width: 980px;
	margin: 0 auto;
	font-size: 15px;
	color: var(--fyc-text);
	box-sizing: border-box;
}
.fyc-wizard *,
.fyc-wizard *::before,
.fyc-wizard *::after {
	box-sizing: inherit;
}

/* Progress bar */
.fyc-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.fyc-progress__step {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--fyc-muted);
	white-space: nowrap;
}
.fyc-progress__dot {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--fyc-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 12px;
	color: var(--fyc-muted);
	transition: all .15s ease;
}
.fyc-progress__step.is-active .fyc-progress__dot,
.fyc-progress__step.is-done .fyc-progress__dot {
	border-color: var(--fyc-accent);
	color: #fff;
	background: var(--fyc-accent);
}
.fyc-progress__step.is-active {
	color: var(--fyc-text);
	font-weight: 600;
}
.fyc-progress__line {
	width: 24px;
	height: 2px;
	background: var(--fyc-border);
}

/* Step title */
.fyc-step__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 20px;
	text-align: center;
}

/* Hero image (the big "photo" box like plaisio.gr's wizard) */
.fyc-hero {
	position: relative;
	background: #f2f2f2;
	border-radius: var(--fyc-radius);
	padding: 20px;
	margin: 0 auto 24px;
	max-width: 420px;
	height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.fyc-hero svg {
	width: 100%;
	height: 100%;
}
.fyc-hero__marker {
	position: absolute;
	top: 50%;
	width: 64px;
	height: 64px;
	border: 2px dashed var(--fyc-accent);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: left .25s ease, right .25s ease;
	pointer-events: none;
}
.fyc-hero__marker--conn1 { left: 17%; }
.fyc-hero__marker--conn2 { left: 83%; }

@media (max-width: 480px) {
	.fyc-hero { height: 150px; }
	.fyc-hero__marker { width: 46px; height: 46px; }
}

/* Option grid (usage / conn1 / conn2) */
.fyc-options {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 24px;
}
.fyc-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px 12px;
	background: #fff;
	border: 2px solid var(--fyc-border);
	border-radius: var(--fyc-radius);
	cursor: pointer;
	text-align: center;
	transition: border-color .15s ease, transform .1s ease, box-shadow .15s ease;
	font: inherit;
	color: inherit;
}
.fyc-option:hover {
	border-color: var(--fyc-accent);
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.fyc-option:active {
	transform: scale(0.98);
}
.fyc-option.is-selected {
	border-color: var(--fyc-accent);
	background: #fff8f0;
}
.fyc-option__icon {
	width: 48px;
	height: 48px;
	color: var(--fyc-accent-dark);
	flex: none;
}
.fyc-option__icon svg {
	width: 100%;
	height: 100%;
}
.fyc-option__label {
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.3;
}

/* Nav buttons */
.fyc-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
.fyc-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	border-radius: 6px;
	border: 2px solid var(--fyc-border);
	background: #fff;
	color: var(--fyc-text);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all .15s ease;
}
.fyc-btn:hover {
	border-color: var(--fyc-accent);
}
.fyc-btn--primary {
	background: var(--fyc-accent);
	border-color: var(--fyc-accent);
	color: #fff;
}
.fyc-btn--primary:hover {
	background: var(--fyc-accent-dark);
	border-color: var(--fyc-accent-dark);
}
.fyc-btn[disabled] {
	opacity: .4;
	cursor: not-allowed;
}
.fyc-btn--ghost {
	border-color: transparent;
	background: transparent;
	padding: 10px 8px;
}

/* Summary chips (results step) */
.fyc-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 24px;
}
.fyc-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--fyc-bg-soft);
	border: 1px solid var(--fyc-border);
	border-radius: 999px;
	padding: 6px 8px 6px 14px;
	font-size: 13px;
}
.fyc-chip__label {
	font-weight: 600;
}
.fyc-chip__edit {
	background: none;
	border: none;
	color: var(--fyc-accent-dark);
	font-size: 12px;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
	padding: 4px 6px;
}

.fyc-results__heading {
	text-align: center;
	margin-bottom: 18px;
}
.fyc-results__count {
	font-weight: 700;
	font-size: 17px;
}

.fyc-results__grid.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.fyc-empty {
	text-align: center;
	padding: 40px 20px;
	color: var(--fyc-muted);
	background: var(--fyc-bg-soft);
	border-radius: var(--fyc-radius);
	margin-bottom: 20px;
}

.fyc-loadmore {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.fyc-reset-row {
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

/* Loading state */
.fyc-loading {
	text-align: center;
	padding: 40px 0;
	color: var(--fyc-muted);
}
.fyc-spinner {
	width: 30px;
	height: 30px;
	margin: 0 auto 12px;
	border: 3px solid var(--fyc-border);
	border-top-color: var(--fyc-accent);
	border-radius: 50%;
	animation: fyc-spin .7s linear infinite;
}
@keyframes fyc-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 700px) {
	.fyc-options {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 480px) {
	.fyc-options {
		grid-template-columns: repeat(2, 1fr);
	}
	.fyc-step__title {
		font-size: 17px;
	}
	.fyc-progress__step span.fyc-progress__label {
		display: none;
	}
}
