/*
 * Sazevi teması – ana stil dosyası
 * Renkler ve ölçüler tema ayarlarından gelen CSS değişkenleriyle yönetilir.
 */

/* ------------------------------------------------------------------ Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--sz-font, "Nunito", sans-serif);
	font-size: var(--sz-font-size, 14px);
	line-height: 1.55;
	color: var(--sz-text, #282828);
	background: var(--sz-body-bg, #f1f1f1);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--sz-primary);
	text-decoration: none;
	transition: color .2s ease;
}

a:hover,
a:focus {
	color: var(--sz-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .6em;
	font-weight: var(--sz-heading-weight, 800);
	line-height: 1.25;
	color: var(--sz-dark);
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0 0 1em;
	padding-left: 1.2em;
}

button {
	font: inherit;
	cursor: pointer;
}

input, select, textarea {
	font: inherit;
	color: inherit;
}

table {
	border-collapse: collapse;
	width: 100%;
}

figure {
	margin: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.sz-skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

/* ------------------------------------------------------------------ Layout */
.sz-container {
	width: 100%;
	max-width: var(--sz-container, 1320px);
	margin: 0 auto;
	padding: 0 15px;
}

.sz-site {
	overflow-x: clip;
}

.sz-main {
	display: block;
	padding-bottom: 40px;
}

.sz-home-section {
	margin-bottom: 36px;
}

.sz-layout {
	display: grid;
	gap: 24px;
	align-items: start;
	margin: 24px 0 40px;
}

.sz-layout-none {
	grid-template-columns: minmax(0, 1fr);
}

.sz-layout-left {
	grid-template-columns: 280px minmax(0, 1fr);
}

.sz-layout-right {
	grid-template-columns: minmax(0, 1fr) 280px;
}

.sz-layout-right .sz-sidebar {
	order: 2;
}

.sz-content {
	min-width: 0;
}

/* Kolon yardımcıları */
.sz-cols-1 { --sz-grid: 1; }
.sz-cols-2 { --sz-grid: 2; }
.sz-cols-3 { --sz-grid: 3; }
.sz-cols-4 { --sz-grid: 4; }
.sz-cols-5 { --sz-grid: 5; }
.sz-cols-6 { --sz-grid: 6; }

.sz-products,
.sz-posts,
.sz-categories {
	display: grid;
	grid-template-columns: repeat(var(--sz-grid, 4), minmax(0, 1fr));
	gap: 16px;
}

/* ------------------------------------------------------------------ Butonlar */
.sz-btn,
.button,
.sz-contact-form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 42px;
	padding: 0 20px;
	border: 0;
	border-radius: var(--sz-radius);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.sz-btn-primary {
	background: var(--sz-primary);
	color: #fff;
}

.sz-btn-primary:hover,
.sz-btn-primary:focus {
	background: var(--sz-primary-hover);
	color: #fff;
}

.sz-btn-dark {
	background: var(--sz-view-btn, #282828);
	color: #fff;
}

.sz-btn-dark:hover,
.sz-btn-dark:focus {
	background: #000;
	color: #fff;
}

.sz-btn-outline {
	background: transparent;
	border: 2px solid var(--sz-border);
	color: var(--sz-dark);
}

/* ------------------------------------------------------------------ Header */
.sz-header {
	position: relative;
	z-index: 101;
	margin-bottom: 24px;
	background: var(--sz-header-bg, #fff);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-announcement {
	position: relative;
	padding: 8px 0;
	background: var(--sz-announcement-bg);
	color: var(--sz-announcement-fg);
	font-size: 13px;
	text-align: center;
}

.sz-announcement .sz-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.sz-announcement-close {
	position: absolute;
	right: 15px;
	background: none;
	border: 0;
	color: inherit;
	opacity: .7;
	padding: 0;
	display: inline-flex;
}

.sz-header-top {
	background: var(--sz-topbar-bg, #f3f3f3);
	font-size: 13px;
}

.sz-header-top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 36px;
}

.sz-header-top-left,
.sz-header-top-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sz-topbar-text {
	color: var(--sz-muted);
	font-weight: 600;
}

.sz-topbar-phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--sz-dark);
	font-weight: 700;
}

.sz-topbar-menu {
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-topbar-menu a {
	display: block;
	padding: 9px 10px;
	color: var(--sz-muted);
	font-weight: 600;
}

.sz-topbar-menu a:hover {
	color: var(--sz-primary);
}

.sz-header-middle-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--sz-border);
}

.sz-header-logo {
	flex: 0 0 auto;
	margin-right: auto;
}

.sz-logo img {
	max-height: var(--sz-logo-height, 80px);
	width: auto;
}

.sz-logo-text {
	font-size: 24px;
	font-weight: 900;
	color: var(--sz-dark);
	letter-spacing: -.5px;
}

.sz-header-mobile-toggle {
	display: none;
}

.sz-menu-toggle,
.sz-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--sz-dark);
	border-radius: var(--sz-radius);
	position: relative;
}

.sz-icon-button:hover {
	color: var(--sz-primary);
}

.sz-header-icons {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sz-header-search-inline {
	flex: 1 1 380px;
	max-width: 520px;
}

.sz-user-menu {
	display: flex;
	align-items: center;
}

.sz-user-menu-text {
	display: flex;
	align-items: center;
	gap: 4px;
	padding-right: 10px;
	font-size: 13px;
	white-space: nowrap;
}

.sz-user-menu-text a {
	color: var(--sz-dark);
}

.sz-user-menu-text a:first-child {
	font-weight: 700;
}

.sz-user-menu-text a:hover {
	color: var(--sz-primary);
}

.sz-wishlist-button .sz-wishlist-count,
.sz-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--sz-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 17px;
	text-align: center;
}

.sz-cart-menu .sz-cart-link {
	display: flex;
	align-items: center;
	border-radius: var(--sz-radius);
	color: var(--sz-dark);
}

.sz-cart-button .sz-cart-link {
	background: var(--sz-dark);
	color: #fff;
	padding-right: 14px;
}

.sz-cart-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
}

.sz-cart-button .sz-cart-count {
	background: #fff;
	color: var(--sz-dark);
	border: 1px solid var(--sz-dark);
}

.sz-cart-title {
	font-size: 14px;
	font-weight: 700;
}

.sz-cart-plain .sz-cart-title {
	display: none;
}

/* ------------------------------------------------------------------ Menü */
.sz-header-bottom-inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 56px;
}

.sz-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.sz-menu {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-menu > li {
	position: relative;
}

.sz-menu > li > a {
	display: flex;
	align-items: center;
	gap: 4px;
	height: 56px;
	padding: 0 14px;
	color: var(--sz-menu-text);
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
	transition: background-color .2s ease, color .2s ease;
}

.sz-menu > li:hover > a,
.sz-menu > li.current-menu-item > a {
	background: var(--sz-dark);
	color: #fff;
}

.sz-menu .sz-menu-arrow {
	opacity: .7;
}

.sz-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 120;
	display: none;
	min-width: 260px;
	padding: 22px;
	background: var(--sz-submenu-bg, #282828);
	border-radius: 0 0 var(--sz-radius) var(--sz-radius);
	box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.sz-nav-mega .sz-submenu {
	left: 0;
	width: 100%;
	max-width: none;
}

.sz-nav-mega .sz-menu > li {
	position: static;
}

.sz-menu > li:hover > .sz-submenu,
.sz-menu > li:focus-within > .sz-submenu {
	display: block;
}

.sz-submenu > ul {
	display: grid;
	grid-template-columns: repeat(var(--sz-submenu-cols, 4), minmax(0, 1fr));
	gap: 8px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-submenu-cols-2 { --sz-submenu-cols: 2; }
.sz-submenu-cols-3 { --sz-submenu-cols: 3; }
.sz-submenu-cols-4 { --sz-submenu-cols: 4; }
.sz-submenu-cols-5 { --sz-submenu-cols: 5; }
.sz-submenu-cols-6 { --sz-submenu-cols: 6; }

.sz-submenu ul li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.sz-submenu ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

.sz-submenu .sz-submenu-inner {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

.sz-submenu .sz-submenu-inner a {
	font-weight: 400;
	font-size: 13px;
	opacity: .85;
}

.sz-menu-image img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	background: #fff;
	border-radius: var(--sz-radius);
	padding: 3px;
}

/* ------------------------------------------------------------------ Arama */
.sz-header-search {
	flex: 0 0 280px;
	max-width: 280px;
}

.sz-search {
	position: relative;
	width: 100%;
}

.sz-search-form {
	position: relative;
	display: flex;
}

.sz-search-input {
	width: 100%;
	height: 44px;
	padding: 0 46px 0 14px;
	border: 1px solid var(--sz-border);
	border-radius: var(--sz-radius);
	background: #f9f9f9;
	font-size: 14px;
	outline: none;
}

.sz-search-input:focus {
	border-color: var(--sz-primary);
	background: #fff;
}

.sz-search-submit {
	position: absolute;
	top: 0;
	right: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: none;
	color: var(--sz-muted);
}

.sz-search-results {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 200;
	max-height: 420px;
	overflow-y: auto;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.sz-search-results[hidden] {
	display: none;
}

.sz-search-result {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-bottom: 1px solid var(--sz-border);
	color: var(--sz-text);
}

.sz-search-result:last-child {
	border-bottom: 0;
}

.sz-search-result:hover {
	background: #f7f9fb;
}

.sz-search-result img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	flex: 0 0 44px;
}

.sz-search-result-title {
	font-size: 13px;
	font-weight: 600;
	display: block;
}

.sz-search-result-price {
	font-size: 13px;
	font-weight: 800;
	color: var(--sz-price);
}

.sz-search-more,
.sz-search-empty {
	display: block;
	padding: 12px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
}

.sz-search-panel {
	display: none;
	padding: 14px 0;
	background: #fff;
	border-bottom: 1px solid var(--sz-border);
}

.sz-search-panel.is-open {
	display: block;
}

.sz-search-panel-inner {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sz-search-panel-close {
	border: 0;
	background: none;
	color: var(--sz-muted);
	display: inline-flex;
}

/* ------------------------------------------------------------------ Drawer / Modal */
.sz-drawer,
.sz-modal {
	position: fixed;
	inset: 0;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	transition: opacity .25s ease, visibility .25s ease;
}

.sz-drawer.is-open,
.sz-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.sz-drawer-overlay,
.sz-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .45);
}

.sz-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(380px, 90vw);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	transform: translateX(100%);
	transition: transform .25s ease;
}

.sz-drawer-left .sz-drawer-panel {
	right: auto;
	left: 0;
	transform: translateX(-100%);
}

.sz-drawer.is-open .sz-drawer-panel {
	transform: translateX(0);
}

.sz-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	border-bottom: 1px solid var(--sz-border);
	font-weight: 800;
	font-size: 15px;
}

.sz-drawer-close,
.sz-modal-close {
	border: 0;
	background: none;
	color: var(--sz-dark);
	display: inline-flex;
	padding: 4px;
}

.sz-drawer-body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 12px 16px 24px;
}

.sz-drawer-section {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--sz-border);
}

.sz-drawer-phone,
.sz-drawer-account a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--sz-dark);
}

.sz-modal-panel {
	position: relative;
	width: min(900px, 92vw);
	max-height: 88vh;
	margin: 6vh auto;
	overflow-y: auto;
	background: #fff;
	border-radius: var(--sz-radius);
	padding: 24px;
}

.sz-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
}

/* Mobil menü */
.sz-mobile-menu,
.sz-mobile-submenu,
.sz-mobile-secondary {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-mobile-menu li {
	position: relative;
	border-bottom: 1px solid var(--sz-border);
}

.sz-mobile-menu li a {
	display: block;
	padding: 12px 40px 12px 0;
	color: var(--sz-dark);
	font-weight: 700;
	font-size: 14px;
}

.sz-mobile-submenu {
	display: none;
	padding-left: 14px;
}

.sz-mobile-menu li.is-open > .sz-mobile-submenu {
	display: block;
}

.sz-mobile-submenu li a {
	font-weight: 500;
	color: var(--sz-muted);
}

.sz-mobile-toggle {
	position: absolute;
	top: 4px;
	right: 0;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: none;
	color: var(--sz-muted);
	transition: transform .2s ease;
}

.sz-mobile-menu li.is-open > .sz-mobile-toggle {
	transform: rotate(180deg);
}

/* ------------------------------------------------------------------ Hero / Slider */
.sz-hero {
	display: grid;
	gap: 16px;
}

.sz-hero-with-side {
	grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
}

.sz-slider {
	position: relative;
	overflow: hidden;
	border-radius: var(--sz-radius);
	background: #f5f5f5;
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-slider-track {
	position: relative;
	display: block;
	min-height: 220px;
}

.sz-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .45s ease;
	pointer-events: none;
}

.sz-slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

.sz-slide-link {
	display: block;
	height: 100%;
}

.sz-slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sz-slide-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	max-width: 46%;
	padding: 24px;
}

.sz-slide-left { left: 4%; text-align: left; }
.sz-slide-right { right: 4%; text-align: right; }
.sz-slide-center {
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.sz-slide-heading {
	font-size: clamp(20px, 3vw, 38px);
	margin-bottom: 10px;
}

.sz-slide-sub {
	font-size: clamp(13px, 1.4vw, 17px);
	color: var(--sz-muted);
}

.sz-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .85);
	color: var(--sz-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
	opacity: 0;
	transition: opacity .2s ease;
}

.sz-slider:hover .sz-slider-arrow {
	opacity: 1;
}

.sz-slider-prev { left: 12px; }
.sz-slider-next { right: 12px; }

.sz-slider-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.sz-slider-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
}

.sz-slider-dot.is-active {
	background: var(--sz-primary);
}

.sz-hero-side {
	display: grid;
	gap: 16px;
	align-content: start;
}

.sz-banner {
	position: relative;
	overflow: hidden;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	background: #fff;
}

.sz-banner img {
	width: 100%;
	transition: transform .35s ease;
}

.sz-banner:hover img {
	transform: scale(1.03);
}

.sz-banner-title {
	position: absolute;
	left: 16px;
	bottom: 16px;
	padding: 6px 12px;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	border-radius: var(--sz-radius);
	font-weight: 700;
	font-size: 13px;
}

.sz-banners-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

/* ------------------------------------------------------------------ Bölüm başlıkları */
.sz-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 0;
	border-bottom: 1px solid var(--sz-border);
	font-size: 17px;
	font-weight: 800;
	color: var(--sz-dark);
	text-transform: uppercase;
}

.sz-section-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 700;
	text-transform: none;
}

.sz-products-block,
.sz-categories-block,
.sz-brands-block,
.sz-blog-block,
.sz-testimonials-block,
.sz-about-block {
	padding: 0 16px 16px;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-products-block .sz-products {
	padding-top: 16px;
}

/* ------------------------------------------------------------------ Hizmet kutuları */
.sz-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.sz-feature {
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-feature > a,
.sz-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	color: var(--sz-text);
}

.sz-feature > a {
	padding: 0;
	width: 100%;
}

.sz-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border-radius: 50%;
	background: var(--sz-primary-soft);
	color: var(--sz-primary);
}

.sz-feature-body strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
}

.sz-feature-body span {
	font-size: 12px;
	color: var(--sz-muted);
}

/* ------------------------------------------------------------------ Sekmeler */
.sz-tabs {
	padding: 0 16px 16px;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-tabs-header {
	display: flex;
	justify-content: center;
	gap: 32px;
	overflow-x: auto;
	border-bottom: 1px solid var(--sz-border);
	scrollbar-width: thin;
}

.sz-tab-button {
	padding: 18px 0;
	border: 0;
	background: none;
	color: var(--sz-dark);
	font-size: 16px;
	font-weight: 800;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
}

.sz-tab-button.is-active {
	color: var(--sz-primary);
	border-bottom-color: var(--sz-primary);
}

.sz-tab-panel {
	display: none;
	padding-top: 16px;
}

.sz-tab-panel.is-active {
	display: block;
}

/* ------------------------------------------------------------------ Kategoriler */
.sz-category-card {
	display: block;
	padding: 14px;
	text-align: center;
	border: 1px solid var(--sz-border);
	border-radius: var(--sz-radius);
	color: var(--sz-text);
	transition: box-shadow .2s ease, transform .2s ease;
}

.sz-category-card:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
	transform: translateY(-2px);
	color: var(--sz-primary);
}

.sz-category-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	margin-bottom: 10px;
}

.sz-category-name {
	display: block;
	font-size: 14px;
	font-weight: 700;
}

.sz-category-count {
	display: block;
	font-size: 12px;
	color: var(--sz-muted);
}

/* ------------------------------------------------------------------ Markalar */
.sz-brands {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
	padding-top: 16px;
}

.sz-brand a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	padding: 10px;
	border: 1px solid var(--sz-border);
	border-radius: var(--sz-radius);
	background: #fff;
	filter: grayscale(1);
	opacity: .75;
	transition: all .2s ease;
}

.sz-brand a:hover {
	filter: none;
	opacity: 1;
	border-color: var(--sz-primary);
}

.sz-brand img {
	max-height: 56px;
	width: auto;
	object-fit: contain;
}

.sz-brand-name {
	font-weight: 800;
	color: var(--sz-dark);
	font-size: 14px;
}

/* ------------------------------------------------------------------ Yorumlar */
.sz-testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	padding-top: 16px;
}

.sz-testimonial {
	padding: 18px;
	border: 1px solid var(--sz-border);
	border-radius: var(--sz-radius);
	background: #fff;
}

.sz-testimonial-rating {
	display: flex;
	gap: 2px;
	color: #d9d9d9;
	margin-bottom: 8px;
}

.sz-testimonial-rating .is-filled {
	color: #f5a623;
}

.sz-testimonial-text {
	font-size: 13px;
	color: var(--sz-text);
}

.sz-testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.sz-testimonial-avatar img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.sz-testimonial-author strong {
	display: block;
	font-size: 13px;
}

.sz-testimonial-author em {
	font-size: 12px;
	color: var(--sz-muted);
	font-style: normal;
}

/* ------------------------------------------------------------------ Blog */
.sz-post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-post-card-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .3s ease;
}

.sz-post-card:hover .sz-post-card-image img {
	transform: scale(1.04);
}

.sz-post-card-body {
	padding: 14px;
}

.sz-post-card-title {
	font-size: 16px;
	margin-bottom: 8px;
}

.sz-post-card-title a {
	color: var(--sz-dark);
}

.sz-post-card-title a:hover {
	color: var(--sz-primary);
}

.sz-post-card-excerpt {
	font-size: 13px;
	color: var(--sz-muted);
}

.sz-post-card-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
}

.sz-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 8px;
	font-size: 12px;
	color: var(--sz-muted);
}

.sz-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.sz-about-block {
	padding: 24px;
}

.sz-about-title {
	font-size: 20px;
}

.sz-about-text {
	font-size: 14px;
	color: var(--sz-muted);
}

/* ------------------------------------------------------------------ Sayfa / içerik */
.sz-page-header {
	padding: 16px 0;
}

.sz-page-title {
	font-size: clamp(20px, 2.4vw, 28px);
	margin: 0;
}

.sz-entry-content {
	background: #fff;
	padding: 24px;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	font-size: 14px;
}

.sz-entry-content img {
	border-radius: var(--sz-radius);
}

.sz-single-title {
	font-size: clamp(22px, 2.6vw, 30px);
}

.sz-single-thumb img {
	width: 100%;
	border-radius: var(--sz-radius);
	margin-bottom: 16px;
}

.sz-single-share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-size: 13px;
	font-weight: 700;
}

.sz-single-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f4f4f4;
	color: var(--sz-dark);
}

.sz-single-share a:hover {
	background: var(--sz-primary);
	color: #fff;
}

.sz-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin: 20px 0;
	font-size: 13px;
}

/* Breadcrumbs */
.sz-breadcrumbs {
	padding: 12px 0;
	font-size: 12px;
	color: var(--sz-muted);
}

.sz-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-breadcrumbs li + li::before {
	content: ">";
	margin-right: 6px;
	color: #c9c9c9;
}

.sz-breadcrumbs a {
	color: var(--sz-muted);
}

.sz-breadcrumbs a:hover {
	color: var(--sz-primary);
}

/* Sayfalama */
.sz-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}

.sz-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: var(--sz-radius);
	background: #fff;
	color: var(--sz-dark);
	font-weight: 700;
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-pagination .page-numbers.current,
.sz-pagination .page-numbers:hover {
	background: var(--sz-primary);
	color: #fff;
}

/* 404 */
.sz-404 {
	padding: 60px 20px;
	margin: 24px 0;
	text-align: center;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-404-code {
	font-size: 84px;
	font-weight: 900;
	color: var(--sz-primary);
	line-height: 1;
}

.sz-404-search {
	max-width: 420px;
	margin: 20px auto;
}

/* ------------------------------------------------------------------ Formlar */
.sz-form-row {
	margin-bottom: 14px;
}

.sz-form-row label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 700;
}

.sz-form-row > label:not(.sz-form-check) > span,
.sz-form-row > div > label:not(.sz-form-check) > span {
	color: #d00;
}

.sz-form-row input[type="text"],
.sz-form-row input[type="email"],
.sz-form-row input[type="tel"],
.sz-form-row textarea,
.sz-contact-form input:not([type="checkbox"]):not([type="radio"]),
.sz-contact-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--sz-border);
	border-radius: var(--sz-radius);
	background: #fff;
	outline: none;
}

.sz-form-row input:focus,
.sz-form-row textarea:focus {
	border-color: var(--sz-primary);
}

.sz-form-row-half {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.sz-form-check {
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin-bottom: 0;
	font-weight: 500 !important;
	font-size: 13px;
}

.sz-form-check input[type="checkbox"] {
	width: auto;
	flex: 0 0 auto;
	margin: 0;
}

.sz-form-check span {
	color: var(--sz-muted);
}

.sz-form-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.sz-form-message {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 700;
}

.sz-form-message.is-success { color: #2e7d32; }
.sz-form-message.is-error { color: #d00; }

.sz-searchform {
	position: relative;
	display: flex;
}

.sz-searchform input {
	flex: 1 1 auto;
	height: 44px;
	padding: 0 46px 0 12px;
	border: 1px solid var(--sz-border);
	border-radius: var(--sz-radius);
}

.sz-searchform button {
	position: absolute;
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	border: 0;
	background: none;
	color: var(--sz-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ------------------------------------------------------------------ İletişim sayfası */
.sz-contact-page {
	margin: 16px 0 40px;
}

.sz-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 20px;
}

.sz-contact-form-wrap,
.sz-contact-info-wrap {
	padding: 24px;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-block-title {
	font-size: 17px;
	margin-bottom: 16px;
}

.sz-contact-info {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.sz-contact-info li {
	display: flex;
	gap: 10px;
	padding: 8px 0;
	color: var(--sz-muted);
}

.sz-contact-info a {
	color: var(--sz-muted);
}

.sz-contact-info a:hover {
	color: var(--sz-primary);
}

.sz-contact-icon {
	color: var(--sz-primary);
	flex: 0 0 auto;
}

.sz-map {
	margin-top: 20px;
	border-radius: var(--sz-radius);
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-map iframe {
	display: block;
	width: 100%;
	min-height: 340px;
	border: 0;
}

/* SSS */
.sz-faq-item {
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	margin-bottom: 10px;
	overflow: hidden;
}

.sz-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 16px 18px;
	border: 0;
	background: none;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	color: var(--sz-dark);
}

.sz-faq-question[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.sz-faq-answer {
	display: none;
	padding: 0 18px 16px;
	font-size: 14px;
	color: var(--sz-muted);
}

.sz-faq-item.is-open .sz-faq-answer {
	display: block;
}

/* ------------------------------------------------------------------ Bileşenler (widget) */
.sz-widget {
	margin-bottom: 16px;
	padding: 16px;
	background: #fff;
	border-radius: var(--sz-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.sz-widget-title {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--sz-border);
	font-size: 15px;
	font-weight: 700;
	color: var(--sz-dark);
}

.sz-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.sz-widget li {
	padding: 6px 0;
}

.sz-widget a {
	color: var(--sz-text);
}

.sz-widget a:hover {
	color: var(--sz-primary);
}

.sz-category-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.sz-category-list li.is-current > a {
	color: var(--sz-primary);
	font-weight: 800;
}

.sz-category-list em {
	font-style: normal;
	font-size: 11px;
	color: var(--sz-muted);
}

.sz-widget-products li a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sz-widget-product-image img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.sz-widget-product-title {
	display: block;
	font-size: 13px;
}

.sz-widget-product-price {
	font-size: 13px;
	font-weight: 800;
	color: var(--sz-price);
}

/* ------------------------------------------------------------------ Footer */
.sz-footer {
	background: var(--sz-footer-bg, #fff);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	color: var(--sz-footer-text);
	font-size: 13px;
}

.sz-footer-top {
	padding: 32px 0 24px;
	border-bottom: 1px solid var(--sz-border);
}

.sz-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 28px;
}

.sz-footer-menus {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
}

.sz-footer-title {
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 800;
	color: var(--sz-dark);
	text-transform: uppercase;
}

.sz-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-footer-menu li {
	margin-bottom: 8px;
}

.sz-footer-menu a,
.sz-footer a {
	color: var(--sz-footer-text);
}

.sz-footer-menu a:hover,
.sz-footer a:hover {
	color: var(--sz-primary);
}

.sz-footer-about p {
	font-size: 13px;
}

.sz-newsletter-title strong {
	display: block;
	font-size: 15px;
	color: var(--sz-dark);
	margin-bottom: 6px;
}

.sz-newsletter-title span {
	font-size: 12px;
}

.sz-newsletter-row {
	display: flex;
	margin: 12px 0 8px;
}

.sz-newsletter-row input {
	flex: 1 1 auto;
	min-width: 0;
	height: 44px;
	padding: 0 12px;
	border: 2px solid var(--sz-border);
	border-right: 0;
	border-radius: var(--sz-radius) 0 0 var(--sz-radius);
	background: transparent;
}

.sz-newsletter-row button {
	flex: 0 0 90px;
	height: 44px;
	border: 0;
	border-radius: 0 var(--sz-radius) var(--sz-radius) 0;
	background: var(--sz-primary);
	color: #fff;
	font-weight: 800;
}

.sz-newsletter-row button:hover {
	background: var(--sz-primary-hover);
}

.sz-newsletter-kvkk {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 11px;
}

.sz-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sz-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f4f4f4;
	color: var(--sz-muted);
	transition: all .2s ease;
}

.sz-social a:hover {
	background: var(--sz-primary);
	color: #fff;
}

.sz-social-small a {
	width: 26px;
	height: 26px;
	background: none;
}

.sz-footer-social-block {
	margin-top: 18px;
}

.sz-footer-social a {
	width: 30px;
	height: 30px;
	background: none;
	color: var(--sz-muted);
}

.sz-footer-social a:hover {
	background: none;
	color: var(--sz-primary);
	transform: translateY(-2px);
}

.sz-footer-bottom {
	padding: 16px 0;
}

.sz-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12px;
}

.sz-payment-icons {
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-payment-icons li {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--sz-muted);
}

/* Yüzen butonlar */
.sz-whatsapp-float {
	position: fixed;
	right: 16px;
	bottom: 86px;
	z-index: 300;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}

.sz-whatsapp-float:hover {
	color: #fff;
	transform: scale(1.05);
}

.sz-scroll-top {
	position: fixed;
	right: 16px;
	bottom: 150px;
	z-index: 300;
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: #eee;
	color: var(--sz-primary);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.sz-scroll-top.is-visible {
	display: inline-flex;
}

/* Mobil alt bar */
.sz-mobile-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 250;
	display: none;
	background: #fff;
	border-top: 1px solid var(--sz-border);
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .08);
}

.sz-mobile-bar a,
.sz-mobile-bar button {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 8px 4px;
	border: 0;
	background: none;
	color: var(--sz-dark);
	font-size: 10px;
	font-weight: 700;
}

.sz-mobile-bar-cart {
	position: relative;
	display: inline-flex;
}

.sz-mobile-bar .sz-cart-count {
	top: -6px;
	right: -10px;
}

/* Yardımcılar */
.sz-empty,
.sz-no-results {
	padding: 24px;
	background: #fff;
	border-radius: var(--sz-radius);
	text-align: center;
	color: var(--sz-muted);
}

.sz-empty-home {
	padding: 60px 20px;
	text-align: center;
	color: var(--sz-muted);
}

.sz-carousel {
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--sz-grid) - 1) * 16px) / var(--sz-grid));
	grid-template-columns: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
}

.sz-carousel > * {
	scroll-snap-align: start;
}

/* ------------------------------------------------------------------ Duyarlı */
@media (max-width: 1199px) {
	.sz-header-search {
		flex: 0 0 220px;
	}

	.sz-cols-5,
	.sz-cols-6 {
		--sz-grid: 4;
	}
}

@media (max-width: 991px) {
	.sz-layout-left,
	.sz-layout-right {
		grid-template-columns: minmax(0, 1fr);
	}

	.sz-sidebar {
		order: 2;
	}

	.sz-header-mobile-toggle {
		display: block;
	}

	.sz-header-bottom {
		display: none;
	}

	.sz-header-middle-inner {
		padding: 10px 0;
		border-bottom: 0;
	}

	.sz-header-top {
		display: none;
	}

	.sz-logo img {
		max-height: var(--sz-logo-height-m, 44px);
	}

	.sz-user-menu-text,
	.sz-cart-title {
		display: none;
	}

	.sz-cart-button .sz-cart-link {
		background: none;
		color: var(--sz-dark);
		padding-right: 0;
	}

	.sz-cart-button .sz-cart-count {
		background: var(--sz-primary);
		color: #fff;
		border: 0;
	}

	.sz-hero-with-side {
		grid-template-columns: minmax(0, 1fr);
	}

	.sz-hero-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sz-contact-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sz-footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sz-cols-4,
	.sz-cols-5,
	.sz-cols-6 {
		--sz-grid: 3;
	}

	.has-mobile-bar .sz-main {
		padding-bottom: 70px;
	}

	.sz-mobile-bar {
		display: flex;
	}

	.sz-whatsapp-float {
		bottom: 76px;
	}

	.sz-scroll-top {
		bottom: 134px;
	}
}

@media (max-width: 767px) {
	.sz-cols-3,
	.sz-cols-4,
	.sz-cols-5,
	.sz-cols-6 {
		--sz-grid: 2;
	}

	.sz-banners-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.sz-section-title {
		font-size: 15px;
		padding: 14px 0;
	}

	.sz-slide-content {
		max-width: 80%;
		padding: 12px;
	}

	.sz-entry-content,
	.sz-contact-form-wrap,
	.sz-contact-info-wrap {
		padding: 16px;
	}

	.sz-form-row-half {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 575px) {
	.sz-products-block,
	.sz-categories-block,
	.sz-brands-block,
	.sz-blog-block,
	.sz-testimonials-block,
	.sz-tabs {
		padding: 0 10px 10px;
	}

	.sz-products,
	.sz-posts,
	.sz-categories {
		gap: 10px;
	}

	.sz-posts {
		--sz-grid: 1;
	}
}

/* ------------------------------------------------------------------ Bildirim balonu */
.sz-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 999;
	transform: translate(-50%, 20px);
	padding: 12px 20px;
	border-radius: var(--sz-radius);
	background: var(--sz-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
}

.sz-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* Küçük pencere (tavsiye et) */
.sz-modal-small {
	width: min(460px, 92vw);
}

.sz-modal-title {
	margin-bottom: 16px;
	font-size: 18px;
}

/* Ödeme kartları */
.sz-payment-cards {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sz-payment-cards img {
	height: 24px;
	width: auto;
}

/* ------------------------------------------------------------------ Yazdırma */
@media print {
	.sz-header,
	.sz-footer,
	.sz-announcement,
	.sz-sidebar,
	.sz-breadcrumbs,
	.sz-mobile-bar,
	.sz-whatsapp-float,
	.sz-scroll-top,
	.sz-compare-bar,
	.sz-drawer,
	.sz-modal,
	.sz-lightbox,
	.sz-product-user-actions,
	.sz-product-share,
	.sz-product-compare,
	.sz-catalog-actions,
	.sz-product-buttons,
	.sz-product-actions,
	.sz-recent-block,
	.related.products,
	.sz-home-section:not(.sz-home-showcase),
	#comments {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		font-size: 12pt;
	}

	.sz-layout,
	.sz-product-top {
		display: block !important;
	}

	.sz-product-top,
	.sz-entry-content,
	.woocommerce-tabs {
		box-shadow: none !important;
		padding: 0 !important;
	}

	.sz-gallery-main img {
		max-width: 70mm;
	}

	.sz-product-meta-row {
		break-inside: avoid;
	}

	a[href]::after {
		content: "";
	}

	.sz-print-note {
		display: block !important;
		margin-top: 8mm;
		padding-top: 4mm;
		border-top: 1px solid #ccc;
		font-size: 10pt;
	}
}

.sz-print-note {
	display: none;
}

/* Yazdır butonu */
.sz-print-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 8px 14px;
	border: 1px solid var(--sz-border);
	border-radius: var(--sz-radius);
	background: #fff;
	color: var(--sz-muted);
	font-size: 13px;
	font-weight: 600;
}

.sz-print-button:hover {
	border-color: var(--sz-primary);
	color: var(--sz-primary);
}
