/* Header */
.sm-header {
	background: var(--sm-surface);
	padding: 12px 0 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	box-shadow: 0 1px 0 var(--sm-border);
	overflow: visible;
	transform: translateY(0);
	transition: transform 0.28s ease;
	will-change: transform;
}

.sm-header.is-hidden {
	transform: translateY(-100%);
	pointer-events: none;
}

.sm-body {
	background: var(--sm-bg);
	color: var(--sm-text);
	padding-top: var(--sm-header-offset, 120px);
	padding-bottom: 88px;
	transition: padding-top 0.28s ease;
}

.sm-body.sm-header-collapsed {
	padding-top: 0;
}

@media (min-width: 992px) {
	.sm-body {
		padding-bottom: 0;
	}
}
.sm-container {
	max-width: 1320px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.sm-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 52px;
}

.sm-logo {
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--sm-text);
	letter-spacing: -0.02em;
}

.sm-logo span {
	color: var(--sm-primary);
}

.sm-logo img {
	max-height: 36px;
	width: auto;
}

.sm-header__actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sm-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: var(--sm-text);
	border-radius: 12px;
	text-decoration: none;
	transition: background 0.15s;
}

.sm-icon-btn:hover {
	background: var(--sm-primary-soft);
	color: var(--sm-primary);
}

.sm-icon-btn__badge {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--sm-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.sm-search-wrap {
	padding: 12px 0 16px;
}

.sm-search {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f1f5f9;
	border-radius: 999px;
	padding: 10px 16px;
	border: 1px solid transparent;
}

.sm-search:focus-within {
	border-color: var(--sm-primary-soft);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.sm-search input {
	flex: 1;
	border: 0;
	background: transparent;
	outline: none;
	font-size: 0.9rem;
	color: var(--sm-text);
}

.sm-search input::placeholder {
	color: #94a3b8;
}

.sm-header__action-slot {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.sm-header__action-slot .notification-dropdown-wrap {
	position: relative;
}

.sm-header__action-slot .notification-bell-btn {
	width: 40px;
	height: 40px;
	border-radius: 12px;
}

.sm-header__action-slot .notification-bell-badge {
	top: 4px;
	right: 4px;
	background: var(--sm-primary);
}

/* Sepet modalı — CSS yüklenmezse bile gizli kalsın */
.blue-cart-overlay:not(.show),
.blue-cart-modal:not(.show) {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.blue-cart-modal:not(.show) {
	display: none !important;
}

.blue-cart-modal.show {
	display: flex !important;
}

.sm-page-wrap {
	width: 100%;
}

.sm-breadcrumb {
	margin-bottom: 16px;
	margin-top: 16px;
}

.sm-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 1.4;
	color: var(--sm-muted, #64748b);
}

.sm-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.sm-breadcrumb__item:not(:last-child)::after {
	content: "/";
	margin: 0 10px;
	color: var(--sm-border, #cbd5e1);
	flex-shrink: 0;
}

.sm-breadcrumb__item a {
	color: inherit;
	text-decoration: none;
	transition: color .15s ease;
}

.sm-breadcrumb__item a:hover {
	color: var(--sm-primary);
}

.sm-breadcrumb__item--active span {
	color: var(--sm-text);
	font-weight: 500;
}

@media (max-width: 767.98px) {
	.sm-breadcrumb {
		margin: 12px 0;
		overflow: hidden;
	}

	.sm-breadcrumb__list {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px;

		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;

		scrollbar-width: none;
		-ms-overflow-style: none;

		white-space: nowrap;
		padding-bottom: 2px;
	}

	.sm-breadcrumb__list::-webkit-scrollbar {
		display: none;
	}

	.sm-breadcrumb__item {
		flex: 0 0 auto;
		white-space: nowrap;
	}
}

.sm-header-search {
	position: relative;
	width: 100%;
}

.sm-header-search .sm-search {
	width: 100%;
}

.sm-header-search__suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border: 1px solid var(--sm-border);
	border-radius: 14px;
	box-shadow: var(--sm-shadow);
	max-height: 360px;
	overflow-y: auto;
	z-index: 1050;
}

.sm-header-search__suggest.is-open[hidden] {
	display: none;
}

.sm-header-search__suggest:not([hidden]) {
	display: block;
}

.sm-header-search__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #f1f5f9;
}

.sm-header-search__item:hover {
	background: #f8fafc;
}

.sm-header-search__thumb {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 8px;
	background: #f8fafc;
	flex-shrink: 0;
}

.sm-header-search__body {
	flex: 1;
	min-width: 0;
}

.sm-header-search__name {
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.3;
}

.sm-header-search__meta {
	font-size: 0.72rem;
	color: var(--sm-muted);
}

.sm-header-search__price {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--sm-accent);
	white-space: nowrap;
}

.sm-header-search__empty {
	padding: 14px;
	font-size: 0.85rem;
	color: var(--sm-muted);
	text-align: center;
}

/* Yatay kategori menüsü — sadece masaüstü */
.sm-header-menu {
	border-top: 1px solid var(--sm-border);
	padding: 10px 0 12px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 991.98px) {
	.sm-header-menu {
		display: none !important;
	}
}

.sm-header-menu::-webkit-scrollbar {
	display: none;
}

.sm-header-menu__list {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}

.sm-header-menu__list--hook {
	padding: 0;
}

.sm-header-menu__list--hook > li,
.sm-header-menu__list > li {
	flex: 0 0 auto;
}

.sm-header-menu__link {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--sm-text);
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}

.sm-header-menu__link:hover,
.sm-header-menu__link.is-active {
	background: var(--sm-primary-soft);
	color: var(--sm-primary);
}

.sm-header-menu__list--hook a {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--sm-text);
	text-decoration: none;
	white-space: nowrap;
}

.sm-header-menu__list--hook a:hover,
.sm-header-menu__list--hook a.active {
	background: var(--sm-primary-soft);
	color: var(--sm-primary);
}

.sm-cat-circle__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 8px;
	background: #fff;
	border: 1px solid var(--sm-border);
	overflow: hidden;
	padding: 4px;
}

.sm-cat-circle__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sm-cat-circle__fallback {
	display: none;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--sm-primary);
	background: var(--sm-primary-soft);
	border-radius: 50%;
}

.sm-header-desktop {
	display: none;
}

@media (min-width: 992px) {
	.sm-header-mobile {
		display: none;
	}

	.sm-header-desktop {
		display: block;
		padding-bottom: 0;
	}

	.sm-header-desktop__top {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 20px;
		padding-bottom: 12px;
	}

	.sm-search-desktop {
		max-width: 560px;
		margin: 0 auto;
		width: 100%;
	}

	.sm-header-desktop .sm-search-wrap {
		padding: 0;
	}
}
.sm-hero .fshop-slider,
.sm-hero .fshop-slider__slide,
.sm-hero .fshop-slider__slide img {
	border-radius: var(--sm-radius-lg);
	overflow: hidden;
}

.sm-hero .fshop-slider {
	box-shadow: var(--sm-shadow);
}

.sm-hero .slider-wrapper,
.sm-hero #slide {
	border-radius: var(--sm-radius-lg);
	overflow: hidden;
}

.sm-hero-slide {
	display: grid;
	grid-template-columns: 1fr;
	background: linear-gradient(135deg, #fff7ed 0%, #fff 55%);
	border-radius: var(--sm-radius-lg);
	overflow: hidden;
	min-height: 200px;
	box-shadow: var(--sm-shadow);
}

@media (min-width: 768px) {
	.sm-hero-slide {
		grid-template-columns: 1.1fr 0.9fr;
		min-height: 280px;
	}
}

.sm-hero-slide__content {
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sm-hero-slide__tag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--sm-accent);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.sm-hero-slide__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 10px;
}

.sm-hero-slide__text {
	color: var(--sm-muted);
	font-size: 0.9rem;
	margin: 0 0 18px;
	max-width: 340px;
}

.sm-hero-slide__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sm-accent);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 10px 20px;
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	width: fit-content;
}

.sm-hero-slide__btn:hover {
	background: var(--sm-accent-dark);
	color: #fff;
}

.sm-hero-slide__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(255, 255, 255, 0.5);
}

.sm-hero-slide__media img {
	max-height: 220px;
	width: auto;
	object-fit: contain;
	border-radius: 16px;
}

/* Category circles */
.sm-categories {
	margin-bottom: 28px;
}

.sm-home .sm-categories {
	margin-left: -16px;
	margin-right: -16px;
	padding-left: 16px;
	padding-right: 16px;
}

.sm-categories__scroll {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.sm-categories__scroll::-webkit-scrollbar {
	display: none;
}

.sm-cat-circle {
	flex: 0 0 80px;
	width: 80px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	scroll-snap-align: start;
}

.sm-cat-circle__label {
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.25;
	min-height: 2.5em;
	color: var(--sm-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
}

/* Section head */
.sm-section {
	margin-top: 24px;
}

.sm-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.sm-section__title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
}

.sm-section__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--sm-primary);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
}

.sm-countdown {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: var(--sm-muted);
}

.sm-countdown__time {
	color: var(--sm-accent);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

/* Product cards — deals row */
.sm-deals-row {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 8px;
	scrollbar-width: none;
}

.sm-deals-row::-webkit-scrollbar {
	display: none;
}

.sm-product-card {
	flex: 0 0 168px;
	background: var(--sm-surface);
	border: 1px solid var(--sm-border);
	border-radius: var(--sm-radius);
	overflow: hidden;
	position: relative;
	box-shadow: var(--sm-shadow);
	transition: transform 0.15s, box-shadow 0.15s;
}

@media (min-width: 768px) {
	.sm-product-card {
		flex: 0 0 200px;
	}
}

.sm-product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.sm-product-card.is-featured {
	background: #fffbeb;
	border-color: #fde68a;
}

.sm-product-card__fav {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sm-muted);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	cursor: pointer;
}

.sm-product-card__fav.is-active,
.sm-product-card__fav:hover {
	color: #ef4444;
}

.sm-product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	background: var(--sm-accent);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 8px;
}

.sm-product-card__image {
	display: block;
	aspect-ratio: 1;
	padding: 16px;
	background: #fafafa;
}

.sm-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sm-product-card__body {
	padding: 12px;
}

.sm-product-card__name {
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--sm-text);
	text-decoration: none;
}

.sm-product-card__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}

.sm-product-card__price-current {
	color: var(--sm-accent);
	font-weight: 700;
	font-size: 0.95rem;
}

.sm-product-card__price-old {
	color: #94a3b8;
	font-size: 0.75rem;
	text-decoration: line-through;
}

.sm-product-card__rating {
	font-size: 0.72rem;
	color: #f59e0b;
	margin-top: 6px;
}

/* Trust bar */
.sm-trust-bar {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 32px 0 24px;
}

@media (min-width: 768px) {
	.sm-trust-bar {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sm-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px;
	background: var(--sm-surface);
	border-radius: var(--sm-radius);
	border: 1px solid var(--sm-border);
}

.sm-trust-item__icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--sm-primary-soft);
	color: var(--sm-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sm-trust-item strong {
	display: block;
	font-size: 0.8rem;
	margin-bottom: 2px;
}

.sm-trust-item span {
	font-size: 0.72rem;
	color: var(--sm-muted);
}

/* Mobile bottom nav */
.sm-bottom-nav {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 5px;
	z-index: 1040;
	background: rgba(255, 255, 255, 0.7); /* veya var(--sm-surface) yerine rgba */
	border-radius: 8px;
	box-shadow: var(--sm-shadow-nav);
	display: flex;
	justify-content: space-around;
	padding: 0px 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);

	/* Blur */
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

@media (min-width: 992px) {
	.sm-bottom-nav {
		display: none;
	}
}

.sm-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 3px 12px 2px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--sm-muted);
	font-size: 0.65rem;
	font-weight: 500;
	min-width: 64px;
	border: 0;
	background: transparent;
}

.sm-bottom-nav__item.is-active {
	color: var(--sm-primary);
}

.sm-bottom-nav__item.is-active .sm-bottom-nav__icon {
	background: var(--sm-primary-soft);
	color: var(--sm-primary);
}

.sm-bottom-nav__icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}

/* Catalog / inner pages reuse grid */
.sm-body .product-card,
.sm-body .panel.product-card {
	border-radius: var(--sm-radius);
	border: 1px solid var(--sm-border);
	box-shadow: var(--sm-shadow);
}

.sm-body .btn-details,
.sm-body .prime-btn--primary,
.sm-body .btn-primary {
	background: var(--sm-primary);
	border-color: var(--sm-primary);
	border-radius: 12px;
}

.sm-body .btn-details:hover,
.sm-body .prime-btn--primary:hover {
	background: var(--sm-primary-dark);
	border-color: var(--sm-primary-dark);
}

.sm-body .current-price {
	color: var(--sm-accent);
}

/* Prime catalog sidebar from blue clone */
.sm-body .prime-filter-link.is-active {
	background: var(--sm-primary);
}

/* Footer — logo altında açıklama */
.sm-footer-about {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 1.25rem;
}

.sm-footer-about__logo {
	display: block;
	margin-bottom: 1rem;
	line-height: 0;
	text-decoration: none;
}

.sm-footer-about__logo img {
	display: block;
	max-width: 70%;
	height: auto;
	max-height: 65px;
	width: auto;
}

.sm-footer-about__text {
	display: block;
	width: 100%;
	margin: 0;
	line-height: 1.6;
}

/* Mobil yan menü — tam ekran açılmasın */
#primeMobileMenu.offcanvas,
.offcanvas.prime-mobile-menu {
	width: min(320px, 88vw) !important;
	max-width: 88vw;
	background: #eef2ff;
}
.fshop-slider-section--promo {padding:0px !important}
@media (max-width: 767.98px) {
	#productTabs {
		display: flex;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		white-space: nowrap;
		gap: 8px;
		padding-bottom: 2px;
		position: relative;
		mask-image: linear-gradient(to right, black 90%, transparent);
		-webkit-mask-image: linear-gradient(to right, black 90%, transparent);
	}

	#productTabs::-webkit-scrollbar {
		display: none;
	}

	#productTabs .nav-item {
		flex: 0 0 auto;
	}

	#productTabs .nav-link {
		white-space: nowrap;
	}
}