/* ================================================================
   FURNITURE / INTERIOR DESIGN — LUXURY SCANDINAVIAN REDESIGN
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
.furn-theme {
	/* Colors */
	--furn-bg: #FDFBF9;             /* Warm off-white */
	--furn-surface: #FFFFFF;        /* Pure white */
	--furn-surface-alt: #F4F1ED;    /* Soft beige */
	--furn-primary: #1C1917;        /* Deep espresso black */
	--furn-text: #44403C;           /* Warm dark gray */
	--furn-accent: #E86121;         /* Theme orange accent */
	--furn-border: #E7E5E4;         /* Soft warm gray */
	
	/* Typography */
	--furn-font-body: 'Manrope', sans-serif;
	--furn-font-heading: 'Manrope', sans-serif;
	
	/* Spatial */
	--furn-radius: 0px;             /* Sharp edges for luxury feel */
	--furn-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
	
	background-color: var(--furn-bg);
	color: var(--furn-text);
	font-family: var(--furn-font-body);
	font-size: 17px;
	line-height: 1.6;
	overflow-x: hidden;
}

.furn-theme * {
	box-sizing: border-box;
}

.furn-theme img {
	display: block;
	max-width: 100%;
}

.furn-container {
	margin: 0 auto;
	padding: 0 30px;
	width: min(1360px, 100%);
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.furn-eyebrow {
	color: var(--furn-text);
	display: block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.furn-title-display {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: clamp(48px, 6vw, 84px);
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 30px;
}

.furn-title-display em {
	color: var(--furn-accent);
	font-style: italic;
}

.furn-title-section {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 24px;
}

.furn-title-section em {
	font-style: italic;
}

/* Buttons */
.furn-btn-primary {
	background: var(--furn-primary);
	border: 1px solid var(--furn-primary);
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 18px 40px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.4s ease;
}

.furn-btn-primary:hover {
	background: var(--furn-accent);
	border-color: var(--furn-accent);
	color: #fff;
}

.furn-btn-outline {
	border: 1px solid var(--furn-border);
	color: var(--furn-primary);
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 18px 40px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.4s ease;
}

.furn-btn-outline:hover {
	border-color: var(--furn-primary);
	color: var(--furn-primary);
}

.furn-btn-text {
	border-bottom: 1px solid var(--furn-border);
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding-bottom: 4px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.4s ease;
}

.furn-btn-text:hover {
	border-color: var(--furn-accent);
	color: var(--furn-accent);
}

.furn-link-arrow {
	align-items: center;
	color: var(--furn-primary);
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 12px;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	transition: gap 0.3s ease;
}

.furn-link-arrow:hover {
	gap: 20px;
}

/* ================================================================
   HERO SLIDER
   ================================================================ */
.furn-hero {
	background: #F9F9F9;
	overflow: hidden;
	padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 6vw, 72px);
}

.furn-hero__viewport {
	display: grid;
}

.furn-hero__slide {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.65s ease;
	visibility: hidden;
}

.furn-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	z-index: 1;
}

.furn-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(40px, 6vw, 80px);
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.furn-hero__content {
	max-width: 560px;
}

.furn-hero__badge {
	background: rgba(210, 188, 171, 0.35); 
	color: #2F4F44;
	display: inline-block;
	font-family: var(--furn-font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin-bottom: 28px;
	padding: 10px 18px;
}

.furn-hero__title {
	color: #111111;
	font-family: var(--furn-font-body);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 700;
	line-height: 1.08;
	margin: 0 0 24px;
}

.furn-hero__title strong,
.furn-hero__title em {
	color: #E86121;
	font-style: normal;
	font-weight: 700;
}

.furn-hero__lead {
	color: #555555;
	font-family: var(--furn-font-body);
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.7;
	margin: 0 0 36px;
	max-width: 480px;
}

.furn-hero__cta {
	background: #E86121; 
	color: #fff;
	display: inline-block;
	font-family: var(--furn-font-body);
	font-size: 15px;
	font-weight: 600;
	padding: 16px 34px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.3s ease;
}

.furn-hero__cta:hover {
	background: #cf5518;
	color: #fff;
	transform: translateY(-2px);
}

.furn-hero__visual {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: clamp(320px, 42vw, 520px);
	position: relative;
}

 

.furn-hero__product {
	display: block;
	height: auto;
	max-height: clamp(280px, 38vw, 480px);
	max-width: min(100%, 460px);
	object-fit: contain;
	position: relative;
	width: 100%;
	z-index: 2;
}

.furn-hero__controls {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: clamp(24px, 4vw, 40px);
	position: relative;
	z-index: 2;
}

.furn-hero__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #E7E5E4; 
	color: #111111;
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	width: 44px;
}

.furn-hero__arrow:hover {
	border-color: #E86121;
	color: #E86121;
	transform: translateY(-1px);
}

.furn-hero__dots {
	align-items: center;
	display: flex;
	gap: 10px;
}

.furn-hero__dot {
	background: #D2BCAB;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 10px;
	padding: 0;
	transition: width 0.3s ease, background 0.3s ease;
	width: 10px;
}

.furn-hero__dot.is-active {
	background: #E86121;
	width: 28px;
}

/* ================================================================
   STORY (ASYMMETRICAL MASONRY)
   ================================================================ */
.furn-story {
	padding: 150px 0;
}

.furn-story__grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
}

.furn-story__media {
	position: relative;
}

.furn-image-large {
	padding-right: 80px;
}

.furn-image-large img {
	aspect-ratio: 3/4;
	object-fit: cover;
	width: 100%;
}

.furn-image-offset {
	bottom: -40px;
	position: absolute;
	right: 0;
	width: 50%;
}

.furn-image-offset img {
	background: var(--furn-bg);
	border: 10px solid var(--furn-bg);
	object-fit: cover;
	width: 100%;
}

.furn-prose {
	font-size: 18px;
	margin-bottom: 40px;
}

.furn-prose p {
	margin-bottom: 20px;
}

/* ================================================================
   VALUES (LIST TYPOGRAPHY)
   ================================================================ */
.furn-values {
	background: var(--furn-surface-alt);
	padding: 120px 0;
}

.furn-values__marquee {
	border-bottom: 1px solid #D6D3D1;
	margin-bottom: 80px;
	padding-bottom: 40px;
}

.furn-values__marquee h2 {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 400;
	margin: 0;
}

.furn-values__list {
	display: grid;
	gap: 60px;
	grid-template-columns: repeat(2, 1fr);
}

.furn-value-item {
	display: flex;
	gap: 30px;
}

.furn-num {
	color: var(--furn-accent);
	font-family: var(--furn-font-heading);
	font-size: 24px;
	font-style: italic;
}

.furn-value-text h3 {
	color: var(--furn-primary);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 16px;
}

.furn-value-text p {
	color: var(--furn-text);
	margin: 0;
}

/* ================================================================
   COLLECTION (MINIMAL CARDS)
   ================================================================ */
.furn-collection {
	padding: 150px 0;
}

.furn-collection__header {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: 80px;
}

.furn-collection__header h2 {
	margin: 0;
}

.furn-product-grid {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
}

.furn-product {
	group: furn-card;
}

.furn-product__img {
	background: var(--furn-surface-alt);
	margin-bottom: 24px;
	overflow: hidden;
	position: relative;
}

.furn-product__img img {
	aspect-ratio: 4/5;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}

.furn-product:hover .furn-product__img img {
	transform: scale(1.05);
}

.furn-tag {
	background: rgba(255, 255, 255, 0.9);
	color: var(--furn-primary);
	font-size: 11px;
	font-weight: 600;
	left: 20px;
	letter-spacing: 1px;
	padding: 6px 12px;
	position: absolute;
	text-transform: uppercase;
	top: 20px;
}

.furn-product-link {
	align-items: center;
	background: var(--furn-primary);
	bottom: 0;
	color: #fff;
	display: flex;
	font-size: 13px;
	font-weight: 600;
	height: 60px;
	justify-content: center;
	left: 0;
	letter-spacing: 2px;
	position: absolute;
	text-decoration: none;
	text-transform: uppercase;
	transform: translateY(100%);
	transition: transform 0.4s ease, color 0.25s ease;
	width: 100%;
}

.furn-product:hover .furn-product-link {
	color: #fff;
	transform: translateY(0);
}

.furn-product-link:hover,
.furn-product-link:focus-visible {
	background: var(--furn-primary);
	color: #E86121;
}

.furn-theme .furn-collection .furn-product-link:hover,
.furn-theme .furn-collection .furn-product-link:focus-visible,
.furn-theme .furn-shop-products .furn-product-link:hover,
.furn-theme .furn-shop-products .furn-product-link:focus-visible {
	background: var(--furn-primary);
	color: #E86121;
}

.furn-shop-products .furn-product__info h3 a {
	color: inherit;
	text-decoration: none;
}

.furn-shop-products .furn-product__info h3 a:hover {
	color: var(--furn-accent);
}

.furn-product__info h3 {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: 24px;
	font-weight: 400;
	margin: 0 0 10px;
}

.furn-product__info p {
	color: var(--furn-text);
	font-size: 15px;
	margin: 0 0 16px;
}

.furn-price {
	color: var(--furn-accent);
	display: block;
	font-size: 16px;
	font-weight: 500;
}

/* ================================================================
   SERVICES (GLASS MINIMAL)
   ================================================================ */
.furn-services {
	background: var(--furn-surface);
	padding: 100px 0;
}

.furn-services__grid {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
}

.furn-service-box {
	border-left: 1px solid var(--furn-border);
	padding-left: 30px;
}

.furn-service-box i {
	color: var(--furn-accent);
	font-size: 24px;
	margin-bottom: 24px;
}

.furn-service-box h3 {
	color: var(--furn-primary);
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 12px;
}

.furn-service-box p {
	font-size: 15px;
	margin: 0;
}

/* ================================================================
   QUOTE (CINEMATIC)
   ================================================================ */
.furn-quote {
	align-items: center;
	display: flex;
	min-height: 80vh;
	position: relative;
}

.furn-quote__bg {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.furn-quote__curtain {
	background: rgba(28, 25, 23, 0.7);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.furn-quote__content {
	position: relative;
	text-align: center;
	z-index: 3;
}

.furn-quote-icon {
	color: var(--furn-accent);
	font-size: 48px;
	margin-bottom: 40px;
}

.furn-quote blockquote {
	color: #fff;
	font-family: var(--furn-font-heading);
	font-size: clamp(32px, 4vw, 48px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.3;
	margin: 0 auto 50px;
	max-width: 900px;
}

.furn-author {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	text-align: left;
}

.furn-author img {
	border-radius: 50%;
	height: 60px;
	object-fit: cover;
	width: 60px;
}

.furn-author strong {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}

.furn-author span {
	color: #D6D3D1;
	font-size: 14px;
}

/* ================================================================
   BLOG
   ================================================================ */
.furn-blog {
	background: #F9F9F9;
	padding: clamp(80px, 10vw, 120px) 0;
}

.furn-blog__header {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 24px 40px;
	justify-content: space-between;
	margin-bottom: clamp(40px, 6vw, 64px);
}

.furn-blog__eyebrow {
	background: rgba(210, 188, 171, 0.35); 
	color: #2F4F44;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
	padding: 8px 16px;
}

.furn-blog__title {
	color: #111111;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 16px;
}

.furn-blog__desc {
	color: #555555;
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
	max-width: 620px;
}

.furn-blog__all-link {
	align-items: center;
	border: 1px solid #E7E5E4; 
	color: #111111;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 600;
	gap: 10px;
	padding: 14px 24px;
	text-decoration: none;
	transition: border-color 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.furn-blog__all-link:hover {
	border-color: #E86121;
	color: #E86121;
	gap: 14px;
}

.furn-blog__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.furn-blog-card {
	background: #fff;
	border: 1px solid #ECEAE8; 
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.furn-blog-card:hover {
	box-shadow: 0 18px 40px -24px rgba(17, 17, 17, 0.28);
	transform: translateY(-4px);
}

.furn-blog-card__media {
	display: block;
	overflow: hidden;
	position: relative;
}

.furn-blog-card__media img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.55s ease;
	width: 100%;
}

.furn-blog-card:hover .furn-blog-card__media img {
	transform: scale(1.05);
}

.furn-blog-card__category {
	background: #fff; 
	color: #E86121;
	font-size: 12px;
	font-weight: 700;
	left: 16px;
	letter-spacing: 0.02em;
	padding: 8px 14px;
	position: absolute;
	top: 16px;
}

.furn-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.furn-blog-card__meta {
	align-items: center;
	color: #78716C;
	display: flex;
	font-size: 13px;
	font-weight: 500;
	gap: 10px;
	margin-bottom: 14px;
}

.furn-blog-card__meta-sep {
	background: #D6D3D1;
	border-radius: 50%;
	display: inline-block;
	height: 4px;
	width: 4px;
}

.furn-blog-card__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 12px;
}

.furn-blog-card__title a {
	color: #111111;
	text-decoration: none;
	transition: color 0.3s ease;
}

.furn-blog-card__title a:hover {
	color: #E86121;
}

.furn-blog-card__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #555555;
	display: -webkit-box;
	flex: 1;
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 20px;
	overflow: hidden;
}

.furn-blog-card__link {
	align-items: center;
	color: #E86121;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	margin-top: auto;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.furn-blog-card__link:hover {
	gap: 12px;
}

/* ================================================================
   SHOP — FILTER OFFCANVAS (anasayfa furn stili)
   ================================================================ */
.furn-filter-panel__inner.furn-theme,
.kececidigital-shop-filter-dialog__inner.furn-theme {
	background: var(--furn-bg);
	color: var(--furn-text);
	display: flex;
	flex: 1;
	flex-direction: column;
	font-family: var(--furn-font-body);
	font-size: 17px;
	line-height: 1.6;
	min-height: 0;
	overflow: hidden;
}

.furn-filter-panel__head {
	background: var(--furn-surface);
	border-bottom: 1px solid var(--furn-border);
	padding: 28px 30px 24px;
}

.furn-filter-panel__eyebrow {
	margin-bottom: 12px;
}

.furn-filter-panel__head-row {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.furn-filter-panel__title {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.furn-filter-panel__close {
	align-items: center;
	background: transparent;
	border: 1px solid var(--furn-border);
	color: var(--furn-primary);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 18px;
	height: 44px;
	justify-content: center;
	transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
	width: 44px;
}

.furn-filter-panel__close:hover {
	border-color: var(--furn-accent);
	color: var(--furn-accent);
}

.furn-filter-panel__body {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 8px 30px 40px;
}

.furn-filter-block {
	border-bottom: 1px solid var(--furn-border);
	padding: 28px 0;
}

.furn-filter-block:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.furn-filter-title {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin: 0 0 20px;
}

/* Arama */
.furn-filter-search {
	align-items: stretch;
	border-bottom: 1px solid var(--furn-border);
	display: flex;
	gap: 0;
}

.furn-filter-search__input {
	background: transparent;
	border: none;
	color: var(--furn-primary);
	flex: 1;
	font-family: inherit;
	font-size: 15px;
	min-width: 0;
	padding: 14px 0;
}

.furn-filter-search__input::placeholder {
	color: var(--furn-text);
	opacity: 0.65;
}

.furn-filter-search__input:focus {
	outline: none;
}

.furn-filter-search__btn {
	align-items: center;
	background: var(--furn-primary);
	border: none;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 16px;
	justify-content: center;
	min-width: 52px;
	transition: background-color 0.3s ease;
}

.furn-filter-search__btn:hover {
	background: var(--furn-accent);
}

/* Chip / pill filtreler */
.furn-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.furn-filter-chip {
	align-items: center;
	border: 1px solid var(--furn-border);
	color: var(--furn-primary);
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	gap: 8px;
	letter-spacing: 1px;
	padding: 10px 14px;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.furn-filter-chip:hover {
	border-color: var(--furn-primary);
}

.furn-filter-chip.is-active {
	background: var(--furn-primary);
	border-color: var(--furn-primary);
	color: #fff;
}

.furn-filter-chip.is-active:hover {
	background: var(--furn-accent);
	border-color: var(--furn-accent);
	color: #fff;
}

.furn-filter-chip--removable {
	background: var(--furn-surface-alt);
	font-size: 11px;
	letter-spacing: 0.5px;
	text-transform: none;
}

.furn-filter-chip--removable:hover {
	background: var(--furn-primary);
	border-color: var(--furn-primary);
	color: #fff;
}

.furn-filter-chip__count {
	font-size: 10px;
	font-weight: 500;
	opacity: 0.7;
}

.furn-filter-chip.is-active .furn-filter-chip__count {
	opacity: 0.85;
}

.furn-filter-chip--tag {
	text-transform: none;
}

/* Aktif filtre temizle */
.furn-filter-clear {
	font-size: 12px;
	margin-top: 20px;
}

.furn-filter-clear:hover {
	color: var(--furn-accent);
}

/* Stok / liste */
.furn-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.furn-filter-list li {
	margin: 0;
}

.furn-filter-list__link {
	align-items: center;
	border-bottom: 1px solid var(--furn-border);
	color: var(--furn-text);
	display: flex;
	font-size: 15px;
	gap: 12px;
	padding: 16px 0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.furn-filter-list li:last-child .furn-filter-list__link {
	border-bottom: none;
	padding-bottom: 0;
}

.furn-filter-list__link:hover,
.furn-filter-list__link.is-active {
	color: var(--furn-primary);
}

.furn-filter-list__link.is-active {
	font-weight: 600;
}

.furn-filter-list__icon {
	font-size: 12px;
}

.furn-filter-list__icon--in {
	color: #16a34a;
}

.furn-filter-list__icon--out {
	color: #dc2626;
}

.furn-filter-list__icon--back {
	color: var(--furn-accent);
}

/* Fiyat aralığı */
.furn-filter-price {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.furn-filter-panel .sa-range-values {
	display: flex;
	justify-content: space-between;
}

.furn-filter-panel .sa-range-val {
	color: var(--furn-primary);
	font-size: 15px;
	font-weight: 600;
}

.furn-filter-panel .sa-range-sep {
	color: var(--furn-text);
}

.furn-filter-panel .sa-range-track {
	background: var(--furn-border);
}

.furn-filter-panel .sa-range-fill {
	background: var(--furn-accent);
}

.furn-filter-panel .sa-range-input::-webkit-slider-thumb {
	background: var(--furn-primary);
	border-color: var(--furn-surface);
}

.furn-filter-panel .sa-range-input::-moz-range-thumb {
	background: var(--furn-primary);
	border-color: var(--furn-surface);
}

.furn-filter-panel .sa-range-input::-webkit-slider-thumb:active,
.furn-filter-panel .sa-range-input::-moz-range-thumb:active {
	background: var(--furn-accent);
}

.furn-btn--block {
	display: block;
	text-align: center;
	width: 100%;
}

.furn-btn--compact {
	font-size: 12px;
	letter-spacing: 1.5px;
	padding: 14px 24px;
}

.furn-btn--compact i {
	font-size: 13px;
}

.sa-shop-toolbar .furn-btn-outline.sa-sidebar-open {
	background: transparent;
	border: 1px solid var(--furn-border);
	color: var(--furn-primary);
	cursor: pointer;
	font-family: var(--furn-font-body);
}

.sa-shop-toolbar .furn-btn-outline.sa-sidebar-open:hover {
	background: var(--furn-primary);
	border-color: var(--furn-primary);
	color: #fff;
}

/* ================================================================
   FAQ (MINIMAL ACCORDION)
   ================================================================ */
.furn-faq {
	padding: 120px 0;
}

.furn-faq__wrap {
	max-width: 800px;
}

.furn-accordion {
	border-top: 1px solid var(--furn-border);
}

.furn-accordion-item {
	border-bottom: 1px solid var(--furn-border);
}

.furn-accordion-item summary {
	align-items: center;
	color: var(--furn-primary);
	cursor: pointer;
	display: flex;
	font-family: var(--furn-font-heading);
	font-size: 24px;
	justify-content: space-between;
	list-style: none;
	padding: 30px 0;
}

.furn-accordion-item summary::-webkit-details-marker {
	display: none;
}

.furn-icons {
	color: var(--furn-accent);
	font-size: 18px;
	transition: transform 0.3s ease;
}

.furn-accordion-item[open] .furn-icons {
	transform: rotate(45deg);
}

.furn-accordion-item p {
	color: var(--furn-text);
	margin: 0 0 30px;
}

/* ================================================================
   SHOWROOM (SPLIT CONTACT)
   ================================================================ */
.furn-showroom {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.furn-showroom__info {
	align-items: center;
	background: var(--furn-primary);
	color: #fff;
	display: flex;
	padding: 100px 10%;
}

.furn-showroom__info .furn-eyebrow {
	color: var(--furn-border);
}

.furn-showroom__info .furn-title-section {
	color: #fff;
	margin-bottom: 60px;
}

.furn-contact-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.furn-contact-list strong {
	color: var(--furn-accent);
	display: block;
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.furn-contact-list p {
	color: #D6D3D1;
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
}

.furn-showroom__map,
.furn-showroom__map iframe {
	height: 100%;
	min-height: 500px;
	width: 100%;
}

.furn-map-placeholder {
	align-items: center;
	background: var(--furn-surface-alt);
	color: var(--furn-text);
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	justify-content: center;
	min-height: 500px;
}

.furn-map-placeholder i {
	font-size: 40px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
	.furn-hero__grid {
		grid-template-columns: 1fr;
	}

	.furn-hero__content {
		max-width: none;
		text-align: center;
	}

	.furn-hero__lead {
		margin-left: auto;
		margin-right: auto;
	}

	.furn-story__grid,
	.furn-showroom {
		grid-template-columns: 1fr;
	}

	.furn-image-large {
		padding-right: 0;
	}

	.furn-image-offset {
		bottom: -20px;
		right: 20px;
		width: 60%;
	}

	.furn-values__list {
		grid-template-columns: 1fr;
	}

	.furn-product-grid,
	.furn-services__grid,
	.furn-blog__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.furn-hero {
		padding-top: 56px;
	}

	.furn-hero__visual {
		min-height: 280px;
	}

	.furn-hero__controls {
		gap: 14px;
	}

	.furn-hero__arrow {
		height: 40px;
		width: 40px;
	}

	.furn-services__grid,
	.furn-blog__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.furn-product-grid {
		grid-template-columns: 1fr;
	}

	.furn-blog__grid {
		grid-template-columns: 1fr;
	}

	.furn-service-box {
		border-left: none;
		border-top: 1px solid var(--furn-border);
		padding-left: 0;
		padding-top: 30px;
	}

	.furn-accordion-item summary {
		font-size: 20px;
	}
}

/* ================================================================
   SINGLE PRODUCT (Ürün detay)
   ================================================================ */
.furn-single-product-main-wrap {
	background: var(--furn-bg);
}

.furn-single-product-page {
	padding-bottom: 80px;
}

.furn-single-product__grid {
	display: grid;
	gap: 48px 64px;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: start;
}

.furn-single-product__gallery {
	position: relative;
}

.furn-single-product__gallery .woocommerce-product-gallery {
	background: var(--furn-surface-alt);
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.furn-single-product__gallery .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 16px;
}

.furn-single-product__gallery .woocommerce-product-gallery .woocommerce-product-gallery__image img,
.furn-single-product__gallery .woocommerce-product-gallery .flex-viewport img {
	aspect-ratio: 4 / 5;
	background: var(--furn-surface);
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.furn-single-product__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	background: var(--furn-primary);
	border: 0;
	border-radius: 0;
	color: #fff;
	height: 44px;
	right: 16px;
	top: 16px;
	transition: background 0.3s ease;
	width: 44px;
}

.furn-single-product__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover,
.furn-single-product__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger:focus {
	background: var(--furn-accent);
	color: #fff;
}

.furn-single-product__gallery .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.furn-single-product__gallery .flex-control-thumbs li {
	cursor: pointer;
	flex: 0 0 calc(25% - 9px);
	margin: 0;
}

.furn-single-product__gallery .flex-control-thumbs li img {
	aspect-ratio: 1;
	border: 2px solid transparent;
	display: block;
	height: auto;
	object-fit: cover;
	opacity: 0.55;
	transition: opacity 0.25s ease, border-color 0.25s ease;
	width: 100%;
}

.furn-single-product__gallery .flex-control-thumbs li img.flex-active,
.furn-single-product__gallery .flex-control-thumbs li:hover img {
	border-color: var(--furn-accent);
	opacity: 1;
}

.furn-single-product__gallery .onsale {
	background: var(--furn-accent);
	border-radius: 0;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	left: 16px;
	letter-spacing: 1px;
	padding: 6px 12px;
	position: absolute;
	text-transform: uppercase;
	top: 16px;
	z-index: 20;
}

.furn-single-product__summary {
	padding: 8px 0 0;
	position: sticky;
	top: 110px;
}

.furn-single-product__eyebrow {
	margin-bottom: 16px;
}

.furn-single-product__title {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px;
}

.furn-single-product__summary .price {
	color: var(--furn-primary);
	display: block;
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 600;
	letter-spacing: 0.02em;
	margin: 0 0 24px;
}

.furn-single-product__summary .price del {
	color: var(--furn-text);
	font-size: 0.75em;
	font-weight: 400;
	margin-right: 8px;
	opacity: 0.65;
}

.furn-single-product__summary .price ins {
	text-decoration: none;
}

.furn-single-product__summary .woocommerce-product-rating {
	margin-bottom: 20px;
}

.furn-single-product__summary .star-rating {
	color: var(--furn-accent);
}

.furn-single-product__summary .woocommerce-product-details__short-description {
	border-top: 1px solid var(--furn-border);
	color: var(--furn-text);
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 28px;
	padding-top: 24px;
}

.furn-single-product__summary .cart {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 28px;
}

.furn-single-product__summary .quantity {
	display: flex;
}

.furn-single-product__summary .quantity input.qty {
	appearance: textfield;
	background: var(--furn-surface);
	border: 1px solid var(--furn-border);
	color: var(--furn-primary);
	font-size: 16px;
	font-weight: 600;
	height: 56px;
	max-width: 88px;
	padding: 0 12px;
	text-align: center;
	width: 88px;
}

.furn-single-product__summary .quantity input.qty:focus {
	border-color: var(--furn-primary);
	outline: none;
}

.furn-single-product__summary .single_add_to_cart_button {
	background: var(--furn-primary);
	border: 1px solid var(--furn-primary);
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	flex: 1 1 auto;
	font-family: var(--furn-font-body);
	font-size: 14px;
	font-weight: 600;
	height: 56px;
	letter-spacing: 1px;
	min-width: min(100%, 280px);
	padding: 0 32px;
	text-transform: uppercase;
	transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.furn-single-product__summary .single_add_to_cart_button:hover,
.furn-single-product__summary .single_add_to_cart_button:focus {
	background: var(--furn-accent);
	border-color: var(--furn-accent);
	color: #fff;
}

.furn-single-product__summary .product_meta {
	border-top: 1px solid var(--furn-border);
	color: var(--furn-text);
	font-size: 14px;
	padding-top: 20px;
}

.furn-single-product__summary .product_meta > span {
	display: block;
	margin-bottom: 8px;
}

.furn-single-product__summary .product_meta a {
	color: var(--furn-primary);
	text-decoration: none;
}

.furn-single-product__summary .product_meta a:hover {
	color: var(--furn-accent);
}

.furn-single-product__summary .variations {
	border: none;
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	margin: 0 0 24px;
	width: 100%;
}

.furn-single-product__summary .variations tbody,
.furn-single-product__summary .variations tr {
	display: contents;
}

.furn-single-product__summary .variations .label label {
	color: var(--furn-primary);
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.furn-single-product__summary .variations .value select {
	appearance: none;
	background: var(--furn-surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231C1917' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 16px center;
	border: 1px solid var(--furn-border);
	color: var(--furn-primary);
	font-size: 15px;
	height: 52px;
	padding: 0 40px 0 16px;
	width: 100%;
}

.furn-single-product__summary .variations .value select:focus {
	border-color: var(--furn-primary);
	outline: none;
}

.furn-single-product__summary .stock {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

.furn-single-product__summary .stock.in-stock {
	color: #2f6b4f;
}

.furn-single-product__summary .stock.out-of-stock {
	color: #b42318;
}

.furn-single-product__details {
	margin-top: 72px;
}

.furn-single-product__details .woocommerce-tabs {
	border-top: 1px solid var(--furn-border);
	margin: 0;
	padding-top: 40px;
	width: 100%;
}

.furn-single-product__details .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--furn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.furn-single-product__details .woocommerce-tabs ul.tabs li {
	margin: 0;
}

.furn-single-product__details .woocommerce-tabs ul.tabs li a {
	border-bottom: 2px solid transparent;
	color: var(--furn-text);
	display: block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: -1px;
	padding: 12px 0;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.25s ease, border-color 0.25s ease;
}

.furn-single-product__details .woocommerce-tabs ul.tabs li.active a,
.furn-single-product__details .woocommerce-tabs ul.tabs li a:hover {
	border-bottom-color: var(--furn-accent);
	color: var(--furn-primary);
}

.furn-single-product__details .woocommerce-tabs .panel {
	color: var(--furn-text);
	font-size: 16px;
	line-height: 1.8;
	padding: 0;
}

.furn-single-product__details .woocommerce-tabs .panel h2 {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: 28px;
	font-weight: 400;
	margin: 0 0 20px;
}

.furn-single-product__details .related.products,
.furn-single-product__details .upsells.products {
	border-top: 1px solid var(--furn-border);
	margin-top: 72px;
	padding-top: 48px;
}

.furn-single-product__details .related.products > h2,
.furn-single-product__details .upsells.products > h2 {
	color: var(--furn-primary);
	font-family: var(--furn-font-heading);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 400;
	margin: 0 0 36px;
}

.furn-single-product__details .furn-product-grid {
	gap: 32px;
}

@media screen and (max-width: 1024px) {
	.furn-single-product__grid {
		gap: 40px;
		grid-template-columns: 1fr;
	}

	.furn-single-product__summary {
		position: static;
	}
}

@media screen and (max-width: 640px) {
	.furn-single-product__summary .cart {
		flex-direction: column;
	}

	.furn-single-product__summary .single_add_to_cart_button {
		min-width: 100%;
		width: 100%;
	}

	.furn-single-product__gallery .flex-control-thumbs li {
		flex: 0 0 calc(33.333% - 8px);
	}
}
