.top-bar-announcement-rotator__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.top-bar-announcement-rotator__link:hover .top-bar-announcement-rotator__text {
	text-decoration: underline;
}

/*//////////////////////////////////////////////////////////////////
[ Homepage blog section — editorial ]*/
.home-blog-section {
	padding-top: 4.75rem;
	padding-bottom: 4.25rem;
	background: linear-gradient(180deg, #fafbfc 0%, #ffffff 42%, #ffffff 100%);
}

.home-blog-section__header {
	max-width: 640px;
	margin: 0 auto 2.5rem;
	text-align: center;
	min-width: 0;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.home-blog-section__eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--main-font);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary-ink, var(--primary-color, #717fe0));
}

.home-blog-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.2px;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.home-blog-section__subtitle {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.home-blog-section__actions {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 2rem;
	padding-top: 0.25rem;
}

.home-blog-section__view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-width: 12.5rem;
	padding: 0.9rem 1.75rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(
		145deg,
		var(--primary-color, #717fe0),
		color-mix(in srgb, var(--primary-color, #717fe0) 78%, #1f2937)
	);
	color: var(--on-primary, #ffffff);
	font-family: var(--main-font);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-decoration: none;
	box-shadow:
		0 10px 28px color-mix(in srgb, var(--primary-color, #717fe0) 34%, transparent),
		0 1px 0 color-mix(in srgb, #ffffff 28%, transparent) inset;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-blog-section__view-all:hover,
.home-blog-section__view-all:focus-visible {
	text-decoration: none;
	color: var(--on-primary, #ffffff);
	filter: brightness(1.05);
	box-shadow:
		0 14px 34px color-mix(in srgb, var(--primary-color, #717fe0) 42%, transparent),
		0 1px 0 color-mix(in srgb, #ffffff 32%, transparent) inset;
	transform: translateY(-2px);
	outline: none;
}

.home-blog-section__view-all:active {
	transform: translateY(0);
	filter: brightness(0.98);
}

.home-blog-section__view-all .fa {
	font-size: 0.9rem;
	transition: transform 0.2s ease;
}

.home-blog-section__view-all:hover .fa,
.home-blog-section__view-all:focus-visible .fa {
	transform: translateX(3px);
}

.blog-list-page .blog-list-section {
	padding-top: 5.5rem;
}

.blog-list-section__count {
	margin: 1rem 0 0;
}

.blog-list-section__count-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: #f3f4f6;
	color: #4b5563;
	font-size: 0.8125rem;
	font-weight: 600;
}

.blog-list-section__count-badge .fa {
	font-size: 0.8rem;
	opacity: 0.8;
}

.blog-list-section__count-badge strong {
	font-weight: 700;
	color: #111827;
}

.blog-list-section__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 3rem 1rem 2rem;
	gap: 0.75rem;
}

.blog-list-section__empty > .fa {
	font-size: 2.5rem;
	color: #9ca3af;
}

.blog-list-section__empty-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
}

.blog-list-section__empty-text {
	margin: 0 0 0.5rem;
	max-width: 420px;
}

.home-blog-grid {
	margin-left: -8px;
	margin-right: -8px;
}

.home-blog-grid__col {
	padding-left: 8px;
	padding-right: 8px;
}

.home-blog-card {
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #ececec;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.home-blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.home-blog-card__link:hover,
.home-blog-card__link:focus-visible {
	text-decoration: none;
	color: inherit;
}

.home-blog-card:hover,
.home-blog-card:focus-within {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 22%, #ececec);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.home-blog-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #eef0f4;
}

.home-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-blog-card__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 55%,
			rgba(0, 0, 0, 0.28) 100%);
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.home-blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.35rem;
	padding: 0.875rem 0.8125rem 0.9375rem;
}

.home-blog-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	min-height: calc(1.35em * 2);
	font-family: var(--main-font);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	color: #1f2937;
	transition: color 0.25s ease;
}

.home-blog-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #6b7280;
}

.home-blog-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
	padding-top: 0.35rem;
	font-family: var(--main-font);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--primary-ink, var(--primary-color, #717fe0));
	transition: gap 0.25s ease;
}

.home-blog-card__cta .fa {
	font-size: 0.8rem;
	transition: transform 0.25s ease;
}

.home-blog-card:hover .home-blog-card__media img,
.home-blog-card:focus-within .home-blog-card__media img {
	transform: scale(1.03);
}

.home-blog-card:hover .home-blog-card__title,
.home-blog-card:focus-within .home-blog-card__title {
	color: var(--primary-ink, var(--primary-color, #717fe0));
}

.home-blog-card:hover .home-blog-card__cta,
.home-blog-card:focus-within .home-blog-card__cta {
	gap: 0.5rem;
}

.home-blog-card:hover .home-blog-card__cta .fa,
.home-blog-card:focus-within .home-blog-card__cta .fa {
	transform: translateX(2px);
}

@media (min-width: 992px) {
	.home-blog-grid {
		margin-left: -12px;
		margin-right: -12px;
	}

	.home-blog-grid__col {
		padding-left: 12px;
		padding-right: 12px;
	}

	.home-blog-card__title {
		font-size: 0.875rem;
	}

	.home-blog-card__body {
		padding: 0.75rem 0.6875rem 0.8125rem;
	}
}

@media (max-width: 767px) {
	.home-blog-section {
		padding-top: 3.25rem;
		padding-bottom: 3rem;
	}

	.blog-list-page .blog-list-section {
		padding-top: 4.25rem;
	}

	.home-blog-section__header {
		margin-bottom: 1.75rem;
	}

	.home-blog-card__title {
		font-size: 0.875rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-blog-card,
	.home-blog-card__media img,
	.home-blog-card__cta,
	.home-blog-card__cta .fa,
	.home-blog-card__title {
		transition: none;
	}

	.home-blog-card:hover,
	.home-blog-card:focus-within {
		transform: none;
	}

	.home-blog-card:hover .home-blog-card__media img,
	.home-blog-card:focus-within .home-blog-card__media img {
		transform: none;
	}
}

/* Legal page modal */
.legal-page-modal {
	position: fixed;
	inset: 0;
	z-index: 13200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.16s ease, visibility 0s linear 0.16s;
}

.legal-page-modal.is-fetching,
.legal-page-modal.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.14s ease, visibility 0s;
}

.legal-page-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.58);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.legal-page-modal__fetching {
	position: relative;
	z-index: 2;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.legal-page-modal.is-fetching .legal-page-modal__fetching {
	display: flex;
}

.legal-page-modal__fetching-card {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.65);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
	color: #4b5563;
	font-family: var(--main-font);
	font-size: 0.8125rem;
	font-weight: 600;
}

.legal-page-modal__fetching-spinner {
	width: 1rem;
	height: 1rem;
	border-radius: 999px;
	border: 2px solid color-mix(in srgb, var(--primary-color, #717fe0) 18%, #e5e7eb);
	border-top-color: var(--primary-color, #717fe0);
	animation: legal-page-modal-spin 0.7s linear infinite;
}

@keyframes legal-page-modal-spin {
	to {
		transform: rotate(360deg);
	}
}

.legal-page-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: min(88vh, 900px);
	display: none;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
	overflow: hidden;
	outline: none;
}

.legal-page-modal.is-open .legal-page-modal__dialog {
	display: flex;
	animation: legal-page-modal-dialog-in 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes legal-page-modal-dialog-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.legal-page-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	border-bottom: 1px solid #ececec;
	background: linear-gradient(180deg, #faf8f6 0%, #ffffff 100%);
}

.legal-page-modal__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 600;
	color: #222;
}

.legal-page-modal__close {
	border: 0;
	background: transparent;
	color: #666;
	font-size: 22px;
	line-height: 1;
	padding: 4px;
	cursor: pointer;
}

.legal-page-modal__close:hover {
	color: #111;
}

.legal-page-modal__body {
	position: relative;
	flex: 1;
	min-height: 200px;
	overflow: auto;
	padding: 22px 24px 28px;
}

.legal-page-modal[data-state="content"] .legal-page-modal__content {
	display: block;
	animation: legal-page-modal-content-in 0.2s ease both;
}

.legal-page-modal[data-state="error"] .legal-page-modal__error {
	display: block;
}

.legal-page-modal__content {
	display: none;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #3f4654;
	letter-spacing: -0.01em;
}

@keyframes legal-page-modal-content-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modal başlığı zaten var — içerikteki tekrarlayan H2'yi gizle */
.legal-page-modal__content > h1:first-child,
.legal-page-modal__content > h2:first-child {
	display: none;
}

.legal-page-modal__content h1,
.legal-page-modal__content h2,
.legal-page-modal__content h3,
.legal-page-modal__content h4,
.legal-page-modal__content h5,
.legal-page-modal__content h6 {
	font-family: inherit;
	color: #0f172a;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.4;
	margin: 1.55em 0 0.55em;
	text-align: left;
	text-transform: none;
}

.legal-page-modal__content h1,
.legal-page-modal__content h2 {
	font-size: 1.05rem;
	padding-bottom: 0.45em;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-page-modal__content h3 {
	font-size: 0.98rem;
	margin-top: 1.45em;
	border-bottom: 0;
	padding-bottom: 0;
}

.legal-page-modal__content h4,
.legal-page-modal__content h5,
.legal-page-modal__content h6 {
	font-size: 0.94rem;
	font-weight: 600;
}

.legal-page-modal__content p,
.legal-page-modal__content li,
.legal-page-modal__content td,
.legal-page-modal__content th,
.legal-page-modal__content span,
.legal-page-modal__content div {
	font-size: inherit;
	line-height: inherit;
}

.legal-page-modal__content p {
	margin: 0 0 0.9em;
}

.legal-page-modal__content p:last-child,
.legal-page-modal__content ul:last-child,
.legal-page-modal__content ol:last-child {
	margin-bottom: 0;
}

.legal-page-modal__content ul,
.legal-page-modal__content ol {
	margin: 0 0 0.9em;
	padding-left: 1.25em;
}

.legal-page-modal__content li {
	margin-bottom: 0.4em;
}

.legal-page-modal__content li:last-child {
	margin-bottom: 0;
}

.legal-page-modal__content strong,
.legal-page-modal__content b {
	font-weight: 600;
	color: #1e293b;
}

.legal-page-modal__content a {
	color: var(--primary-ink, var(--primary-color, #717fe0));
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-page-modal__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1em;
	font-size: inherit;
}

.legal-page-modal__content th,
.legal-page-modal__content td {
	padding: 0.55em 0.65em;
	border: 1px solid rgba(15, 23, 42, 0.08);
	text-align: left;
	vertical-align: top;
}

.legal-page-modal__content th {
	background: #f8fafc;
	font-weight: 600;
	color: #0f172a;
}

.legal-page-modal__content blockquote {
	margin: 0 0 0.9em;
	padding: 0.65em 0.9em;
	border-left: 3px solid color-mix(in srgb, var(--primary-color, #717fe0) 40%, transparent);
	background: #f8fafc;
	color: #475569;
}

.legal-page-modal__content hr {
	border: 0;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	margin: 1.4em 0;
}

.legal-page-modal__error {
	display: none;
	margin: 0;
	padding: 24px 0;
	text-align: center;
	color: #b45309;
	font-size: 0.875rem;
}

.js-legal-page-link {
	color: var(--primary-ink, var(--primary-color, #717fe0)) !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.js-legal-page-link:hover,
.js-legal-page-link:focus-visible {
	color: color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 78%, #000000) !important;
	text-decoration: underline;
}

.header-account-check .js-legal-page-link {
	margin: 0;
	display: inline;
	white-space: normal;
}

/* Account drawer — login / register */
.js-panel-account .header-account.account-drawer-panel {
	display: flex;
	flex-direction: column;
	padding: 0 !important;
	overflow: hidden;
}

.account-drawer-body {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.js-panel-account .header-account-content {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 16px;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.account-drawer-shell {
	width: 100%;
}

.account-drawer-panel-section--hidden {
	display: none !important;
}

.account-drawer-error {
	display: none;
	margin-bottom: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #b42318;
	background: #fef3f2;
	border: 1px solid #fecdca;
}

.js-panel-account .account-drawer-field {
	margin-bottom: 12px;
}

.js-panel-account .account-drawer-field--consent {
	margin-bottom: 0;
}

.js-panel-account .account-drawer-field .fv-help-invalid {
	margin: 6px 2px 0;
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.35;
}

.js-panel-account .header-account-field {
	border-radius: 12px !important;
	border-color: #e2e8f0 !important;
	background: #fff;
	margin-bottom: 0 !important;
}

.js-panel-account .header-account-field > input {
	border-radius: 11px;
	min-height: 48px;
	font-size: 15px;
}

.js-panel-account .header-account-field:focus-within {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 45%, #e2e8f0) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #717fe0) 12%, transparent);
}

.js-panel-account .header-account-field.fv-invalid,
.js-panel-account .header-account-field.fv-invalid:focus-within {
	border-color: var(--fv-error, #dc2626) !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
	background-color: #fff !important;
}

.js-panel-account .password-policy-hint {
	list-style: none;
	margin: 0;
	padding: 0.65rem 0.75rem;
	display: grid;
	gap: 0.32rem;
	border-radius: 12px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 6%, #f8fafc);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 14%, #e2e8f0);
}

.js-panel-account .password-policy-hint__item {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.78rem;
	line-height: 1.35;
	color: #64748b;
}

.js-panel-account .password-policy-hint__icon {
	width: 0.9rem;
	height: 0.9rem;
	border-radius: 50%;
	flex-shrink: 0;
	border: 1.5px solid #cbd5e1;
	background: #fff;
	position: relative;
}

.js-panel-account .password-policy-hint__item.is-met {
	color: #0f766e;
	font-weight: 600;
}

.js-panel-account .password-policy-hint__item.is-met .password-policy-hint__icon {
	border-color: #14b8a6;
	background: #14b8a6;
}

.js-panel-account .password-policy-hint__item.is-met .password-policy-hint__icon::after {
	content: "";
	position: absolute;
	left: 0.24rem;
	top: 0.1rem;
	width: 0.24rem;
	height: 0.42rem;
	border: solid #fff;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(45deg);
}

.js-panel-account .password-policy-hint--ok {
	border-color: color-mix(in srgb, #14b8a6 35%, #e2e8f0);
	background: color-mix(in srgb, #14b8a6 8%, #ffffff);
}

.account-register-password-policy {
	min-height: 0;
	margin: 0;
}

.js-panel-account .password-policy-hint--compact {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 0.3rem 0.65rem;
	padding: 0.55rem 0.7rem;
	border-radius: 12px;
}

.js-panel-account .password-policy-hint--compact.is-visible,
.js-panel-account .password-policy-hint--compact.password-policy-hint--ok {
	display: grid;
	margin: 0.15rem 0 0.85rem;
}

.js-panel-account .password-policy-hint--compact .password-policy-hint__item {
	font-size: 0.74rem;
	gap: 0.4rem;
}

.js-panel-account .password-policy-hint--compact .password-policy-hint__icon {
	width: 0.82rem;
	height: 0.82rem;
}

.js-panel-account .password-policy-hint--compact .password-policy-hint__item.is-met .password-policy-hint__icon::after {
	left: 0.22rem;
	top: 0.08rem;
	width: 0.2rem;
	height: 0.36rem;
}

/* Register: dikey form + rahat nefes; scroll serbest */
.js-panel-account.is-register-mode .header-account-content {
	padding: 16px 16px 12px;
}

.js-panel-account.is-register-mode .header-account-check {
	font-size: 12.5px;
	line-height: 1.45;
	gap: 12px;
}

/* Kayıt — sözleşme kartı */
.account-register-consent {
	display: flex;
	flex-direction: column;
	margin: 10px 0 4px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: #fff;
	overflow: visible;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.account-register-consent__item {
	margin: 0 !important;
}

.account-register-consent > .account-drawer-field + .account-drawer-field,
.account-register-consent__item + .account-register-consent__item {
	border-top: 1px solid #f1f5f9;
}

.account-register-consent > .account-drawer-field {
	margin-bottom: 0;
}

.account-register-consent > .account-drawer-field .fv-help-invalid {
	padding: 0 14px 10px;
	margin-top: 0;
	font-size: 11.5px;
	font-weight: 600;
}

.account-register-consent__toggle.toggle-switchy {
	width: 100%;
	align-items: flex-start;
	gap: 8px;
	padding: 12px 14px;
	margin: 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: #334155;
	letter-spacing: -0.01em;
	transition: background 0.15s ease;
}

.account-register-consent__toggle.toggle-switchy:hover {
	background: rgba(113, 127, 224, 0.04);
}

.account-register-consent__toggle.toggle-switchy > input + .toggle {
	margin-top: 1px;
	flex-shrink: 0;
	align-self: flex-start;
}

.account-register-consent__toggle.toggle-switchy[data-size='sm'] > input + .toggle,
.account-register-consent__toggle.toggle-switchy[data-text='false'][data-size='sm'] > input + .toggle {
	width: 42px;
	height: 24px;
}

.account-register-consent__toggle.toggle-switchy[data-size='sm'] > input + .toggle > .switch {
	width: 24px;
}

.account-register-consent__toggle.toggle-switchy[data-size='sm'] > input:not(:checked) + .toggle > .switch {
	right: calc(100% - 24px);
}

.account-register-consent__toggle.toggle-switchy > input + .toggle + .label {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0 !important;
	padding: 0;
}

.account-register-consent__toggle .js-legal-page-link {
	display: inline;
	margin: 0;
	font-weight: 600;
	text-underline-offset: 2px;
	position: relative;
	z-index: 2;
}

.js-panel-account.is-register-mode .header-account-turnstile {
	margin: 0;
}

.js-panel-account.is-register-mode .header-account-submit {
	min-height: 50px;
	margin-top: 6px;
}

.js-panel-account.is-register-mode .account-drawer-footer {
	padding-top: 12px;
	padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.js-panel-account.is-register-mode .account-drawer-title {
	padding: 16px 16px 14px 18px !important;
}

@media (min-width: 768px) {
	.js-panel-account.is-register-mode .header-account-content {
		overflow-y: auto;
		scrollbar-width: thin;
	}
}

.header-account-forgot {
	margin: 2px 0 14px;
	text-align: right;
}

.header-account-forgot a {
	font-size: 0.86rem;
}

/* Turnstile: boşken yer kaplamaz; render olunca açılır. display:none YASAK (CF gizli host'ta fail eder). */
.header-account-turnstile {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0;
	min-height: 0;
	height: auto;
	overflow: visible;
}

.header-account-turnstile.is-turnstile-ready,
.header-account-turnstile:has([data-widget-id]),
.header-account-turnstile:has(iframe) {
	margin: 2px 0 14px;
}

.header-account-turnstile[data-turnstile-bypassed="1"],
.header-account-turnstile:has([data-turnstile-bypassed="1"]) {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 0 !important;
	min-height: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
}

.header-account-turnstile .js-account-turnstile,
.header-account-turnstile .cf-turnstile {
	display: block;
	line-height: 0;
	min-height: 0;
	width: auto;
	margin: 0 auto;
}

.header-account-turnstile.is-turnstile-ready .js-account-turnstile,
.header-account-turnstile .js-account-turnstile[data-widget-id],
.header-account-turnstile .js-account-turnstile:has(iframe) {
	min-height: 65px;
}

.js-panel-account.is-register-mode .header-account-turnstile.is-turnstile-ready,
.js-panel-account.is-register-mode .header-account-turnstile:has([data-widget-id]),
.js-panel-account.is-register-mode .header-account-turnstile:has(iframe) {
	margin: 8px 0 12px;
}

.header-account-submit {
	border-radius: 999px !important;
	min-height: 50px;
	width: 100%;
	margin-top: 0;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--on-primary, #ffffff);
	box-shadow: 0 8px 22px color-mix(in srgb, var(--primary-color, #717fe0) 24%, transparent);
}

.header-account-submit.cl0 {
	color: var(--on-primary, #ffffff);
}

.header-account-submit:disabled,
.header-account-submit[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: none;
}

.header-account-check {
	display: flex;
	gap: 12px;
	font-size: 13px;
	color: #334155;
	line-height: 1.45;
	align-items: center;
}

.header-account-check.toggle-switchy > input + .toggle {
	flex-shrink: 0;
	margin-top: 0;
	align-self: center;
}

.account-drawer-footer {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #e9ecf3;
	background: #fff;
	box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.07);
}

.account-drawer-footer__hint {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #64748b;
	flex: 1;
	min-width: 0;
}

.account-drawer-footer__action {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border: 1.5px solid color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 45%, #e5e7eb);
	border-radius: 999px;
	background: var(--primary-soft, color-mix(in srgb, var(--primary-color, #717fe0) 9%, #ffffff));
	color: var(--primary-ink, var(--primary-color, #717fe0));
	font-family: var(--main-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.account-drawer-footer__action:hover,
.account-drawer-footer__action:focus-visible {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 14%, #ffffff);
	border-color: var(--primary-ink, var(--primary-color, #717fe0));
	color: var(--primary-ink, var(--primary-color, #717fe0));
	outline: none;
}

.js-panel-account .account-drawer-title {
	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 18px 14px 14px 16px !important;
	height: auto !important;
	min-height: 0 !important;
	border-bottom: 1px solid #e9ecf3;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: center !important;
}

.js-panel-account .account-drawer-title .mini-drawer-title-actions {
	position: absolute !important;
	top: 50%;
	right: 12px !important;
	left: auto !important;
	transform: translateY(-50%);
	z-index: 3;
	margin: 0;
}

.js-panel-account .account-drawer-title .mini-drawer-close {
	position: static !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	flex-shrink: 0;
	z-index: 2;
	margin: 0 !important;
}

.js-panel-account .account-drawer-title .header-drawer-title-text {
	flex: 0 1 auto;
	min-width: 0;
	justify-content: center !important;
	padding-left: 48px !important;
	padding-right: 48px !important;
	width: 100%;
	text-align: center;
}

.js-panel-account .account-drawer-title .mini-drawer-title-label {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
}

@media (min-width: 768px) {
	.js-panel-account .header-account.account-drawer-panel {
		width: min(420px, calc(100vw - 40px));
		max-width: 420px;
	}

	.js-panel-account .header-account-content {
		padding: 20px 24px 12px;
	}

	.js-panel-account .account-drawer-shell {
		background: #fff;
		border: 1px solid #e9ecf3;
		border-radius: 16px;
		padding: 20px;
		box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
	}

	.js-panel-account .account-drawer-title {
		padding: 26px 28px 20px !important;
	}

	.js-panel-account .account-drawer-title .mini-drawer-title-actions {
		right: 20px !important;
		left: auto !important;
	}

	.js-panel-account .account-drawer-title .mini-drawer-close {
		position: static !important;
		top: auto !important;
		right: auto !important;
		left: auto !important;
	}

	.js-panel-account .account-drawer-title .header-drawer-title-text {
		justify-content: center !important;
		padding-left: 52px !important;
		padding-right: 52px !important;
	}

	.js-panel-account .account-drawer-title .mini-drawer-title-label {
		font-size: 1.5rem;
	}

	.account-drawer-footer {
		padding: 16px 24px 24px;
	}
}

@media (max-width: 767px) {
	.js-panel-account .header-account.account-drawer-panel {
		background: #f6f7fb;
	}

	.js-panel-account .account-drawer-shell {
		background: #fff;
		border: 1px solid #e9ecf3;
		border-radius: 14px;
		padding: 16px;
		box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
	}

	.account-drawer-footer {
		margin-top: auto;
	}
}

@media (max-width: 767px) {
	.legal-page-modal {
		padding: 12px;
	}

	.legal-page-modal__dialog {
		max-height: 92vh;
		border-radius: 12px;
	}

	.legal-page-modal__body {
		padding: 16px 16px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.legal-page-modal,
	.legal-page-modal.is-open .legal-page-modal__dialog,
	.legal-page-modal[data-state="content"] .legal-page-modal__content,
	.legal-page-modal__fetching-spinner {
		animation: none !important;
		transition: none !important;
	}
}

/* Kayıt formu — ad/soyad ve şifre/şifre tekrar yan yana kompakt satırlar */
.account-register-form__row {
	display: flex;
	gap: 10px;
}

.account-register-form__row > .account-drawer-field,
.account-register-form__row > .js-fv-field {
	flex: 1 1 0;
	min-width: 0;
}

.account-register-form__row .header-account-field > input {
	padding-left: 14px;
	padding-right: 14px;
}

/* Disable submit butonu üzeri "zorunlu alanları doldurun" uyarısı */
.disabled-submit-hint-wrap {
	width: 100%;
}

/* Disabled buton click üretmez; tıklamanın sarıcıya düşmesi için */
.disabled-submit-hint-wrap > button:disabled,
.disabled-submit-hint-wrap > button[aria-disabled='true'] {
	pointer-events: none;
}

.disabled-submit-hint {
	margin: 0 0 8px;
	padding: 0 4px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
}

.disabled-submit-hint[hidden] {
	display: none !important;
}

.disabled-submit-hint--shake {
	animation: disabledSubmitHintShake 0.45s ease;
	color: #b42318;
}

@keyframes disabledSubmitHintShake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-6px); }
	40% { transform: translateX(6px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
	.disabled-submit-hint--shake {
		animation: none;
	}
}

/* Drawer share + shared basket preview */
.mini-drawer-title-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	flex-shrink: 0;
	overflow: visible;
}

.mini-drawer-share {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #fff);
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	overflow: visible;
	box-shadow:
		0 6px 16px color-mix(in srgb, var(--primary-color, #717fe0) 38%, transparent),
		0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 22%, transparent);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.mini-drawer-share::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid color-mix(in srgb, var(--primary-color, #717fe0) 70%, #fff);
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}

.mini-drawer-share i {
	position: relative;
	z-index: 1;
	display: block;
}

.show-header-cart .mini-drawer-share,
.show-header-wishlist .mini-drawer-share {
	animation: miniDrawerSharePop 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.show-header-cart .mini-drawer-share::before,
.show-header-wishlist .mini-drawer-share::before {
	animation: miniDrawerSharePing 1.4s ease-out 0.12s 3;
}

.show-header-cart .mini-drawer-share i,
.show-header-wishlist .mini-drawer-share i {
	animation: miniDrawerShareIcon 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.mini-drawer-share:hover,
.mini-drawer-share:focus-visible {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 86%, #111);
	color: var(--on-primary, #fff);
	outline: none;
	transform: translateY(-2px) scale(1.06);
	box-shadow:
		0 10px 22px color-mix(in srgb, var(--primary-color, #717fe0) 44%, transparent),
		0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 28%, transparent);
}

.mini-drawer-share:active {
	transform: translateY(0) scale(0.96);
}

@keyframes miniDrawerSharePop {
	0% { transform: scale(0.78); }
	58% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

@keyframes miniDrawerSharePing {
	0% {
		transform: scale(1);
		opacity: 0.65;
	}
	100% {
		transform: scale(1.72);
		opacity: 0;
	}
}

@keyframes miniDrawerShareIcon {
	0% { transform: translateX(0) rotate(0deg); }
	28% { transform: translateX(-2px) rotate(-14deg); }
	58% { transform: translateX(3px) rotate(12deg); }
	100% { transform: translateX(0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
	.mini-drawer-share,
	.mini-drawer-share::before,
	.mini-drawer-share i,
	.show-header-cart .mini-drawer-share,
	.show-header-wishlist .mini-drawer-share,
	.show-header-cart .mini-drawer-share::before,
	.show-header-wishlist .mini-drawer-share::before,
	.show-header-cart .mini-drawer-share i,
	.show-header-wishlist .mini-drawer-share i {
		animation: none;
	}

	.mini-drawer-share:hover,
	.mini-drawer-share:focus-visible {
		transform: none;
	}
}

html:has(body.share-basket-page) {
	height: auto;
	min-height: 100%;
	background-color: #eef1f6;
}

.share-basket-page {
	height: auto;
	min-height: 100vh;
	background-color: #eef1f6;
	background-image: radial-gradient(
		120% 28rem at 50% -6rem,
		color-mix(in srgb, var(--primary-color, #717fe0) 14%, transparent),
		transparent 72%
	);
	background-repeat: no-repeat;
	background-size: 100% 36rem;
	background-attachment: scroll;
}

.share-basket-main {
	padding: 2rem 0 5.5rem;
	background: transparent;
}

.share-basket {
	max-width: 40rem;
	margin: 0 auto;
}

.share-basket-recommend {
	margin-top: 2.75rem;
	padding-top: 2rem;
	padding-bottom: 0.5rem;
	border-top: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 10%, #e8ecf2);
	background: transparent;
}

@media (min-width: 768px) {
	.share-basket-main {
		padding-bottom: 3rem;
	}

	.share-basket__footer {
		position: static;
	}
}

.share-basket__card {
	position: relative;
	border-radius: 18px;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 12%, #e8ecf2);
	box-shadow:
		0 10px 28px rgba(15, 23, 42, 0.06),
		0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.share-basket__card--hero {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	padding: 1.15rem 1.15rem 1.2rem;
	margin-bottom: 1rem;
	background:
		linear-gradient(
			180deg,
			color-mix(in srgb, var(--primary-color, #717fe0) 8%, #fff) 0%,
			#fff 58%
		);
}

.share-basket__card--hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1.1rem;
	right: 1.1rem;
	height: 3px;
	border-radius: 0 0 999px 999px;
	background: linear-gradient(
		90deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 40%, #fff),
		var(--primary-color, #717fe0),
		color-mix(in srgb, var(--primary-color, #717fe0) 40%, #fff)
	);
}

.share-basket__hero-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 14px;
	font-size: 1.2rem;
	color: var(--primary-ink, var(--primary-color, #717fe0));
	background: color-mix(in srgb, var(--primary-color, #717fe0) 14%, #fff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 18%, #eef0f4);
}

.share-basket__hero-copy {
	min-width: 0;
	flex: 1 1 auto;
}

.share-basket__eyebrow {
	margin: 0 0 0.2rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 72%, #64748b);
}

.share-basket__title {
	margin: 0 0 0.35rem;
	font-size: 1.28rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
	line-height: 1.25;
}

.share-basket__lead {
	margin: 0;
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.45;
}

.share-basket__applied {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	width: 100%;
	margin: 0.85rem 0 0;
	padding: 0.65rem 0.85rem;
	border-radius: 12px;
	background: color-mix(in srgb, #16a34a 10%, #fff);
	color: #166534;
	font-size: 0.88rem;
	font-weight: 600;
}

.share-basket__list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.share-basket__item {
	display: grid;
	grid-template-columns: 5rem minmax(0, 1fr) auto;
	gap: 0.85rem;
	align-items: center;
	padding: 0.85rem;
	border-radius: 16px;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 10%, #e8ecf2);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.045);
}

.share-basket__img {
	display: block;
	width: 5rem;
	height: 5rem;
	border-radius: 12px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #eef1f6;
}

.share-basket__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.share-basket__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.share-basket__name {
	font-weight: 650;
	font-size: 0.95rem;
	color: #0f172a;
	text-decoration: none;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.share-basket__name:hover {
	color: var(--primary-ink, var(--primary-color, #717fe0));
}

.share-basket__variant,
.share-basket__qty {
	font-size: 0.8rem;
	color: #64748b;
}

.share-basket__chip {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	padding: 0.18rem 0.5rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.share-basket__chip--warn {
	color: #9a3412;
	background: color-mix(in srgb, #f97316 14%, #fff);
	border: 1px solid color-mix(in srgb, #f97316 22%, #fed7aa);
}

.share-basket__price {
	text-align: right;
	white-space: nowrap;
}

.share-basket__footer {
	position: sticky;
	bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
	z-index: 5;
	padding: 1rem 1.05rem 1.05rem;
	backdrop-filter: blur(8px);
}

.share-basket__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 10%, #eef1f6);
}

.share-basket__total-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #64748b;
}

.share-basket__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
}

.share-basket__footer .share-basket__btn {
	width: 100%;
	max-width: 20rem;
}

.share-basket__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3rem;
	padding: 0 1.15rem;
	border-radius: 999px;
	border: 0;
	font-family: var(--main-font, Poppins, sans-serif);
	font-weight: 700;
	font-size: 0.94rem;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background-color 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}

.share-basket__btn:disabled,
.share-basket__btn.is-loading {
	opacity: 0.7;
	cursor: wait;
}

.share-basket__btn--primary {
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #111);
	box-shadow: 0 10px 24px color-mix(in srgb, var(--primary-color, #717fe0) 30%, transparent);
}

.share-basket__btn--primary:hover:not(:disabled) {
	transform: translateY(-1px);
	filter: brightness(0.98);
}

.share-basket__btn--ghost {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 6%, #f1f5f9);
	color: #0f172a;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 12%, #e2e8f0);
}

.share-basket__feedback {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.55rem;
	width: 100%;
	max-width: 20rem;
	margin: 1rem auto 0;
	padding: 0.72rem 0.95rem;
	border-radius: 12px;
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.45;
	text-align: left;
}

.share-basket__feedback-icon {
	flex: 0 0 auto;
	margin-top: 0.08rem;
	font-size: 1.05rem;
	line-height: 1;
}

.share-basket__feedback-text {
	flex: 1 1 auto;
	min-width: 0;
}

.share-basket__hint.is-success {
	color: #166534;
	background: color-mix(in srgb, #16a34a 10%, #fff);
	border: 1px solid color-mix(in srgb, #16a34a 20%, #dcfce7);
}

.share-basket__hint.is-success .share-basket__feedback-icon {
	color: #15803d;
}

.share-basket__hint.is-error {
	color: #991b1b;
	background: color-mix(in srgb, #dc2626 8%, #fff);
	border: 1px solid color-mix(in srgb, #dc2626 18%, #fecaca);
}

.share-basket__hint.is-error .share-basket__feedback-icon {
	color: #dc2626;
}

.share-basket__progress {
	color: #475569;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 6%, #f8fafc);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 10%, #e8ecf2);
	text-align: center;
	justify-content: center;
}

.share-basket__progress .share-basket__feedback-text {
	flex: 0 1 auto;
	text-align: center;
}

@keyframes share-basket-spin {
	to { transform: rotate(360deg); }
}

.share-basket__feedback-icon--spin {
	animation: share-basket-spin 0.9s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
	.share-basket__feedback-icon--spin {
		animation: none;
	}
}

.share-basket__empty {
	text-align: center;
	padding: 2.4rem 1.25rem;
}

.share-basket__empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	margin-bottom: 0.85rem;
	border-radius: 16px;
	font-size: 1.45rem;
	color: #64748b;
	background: #f8fafc;
	border: 1px solid #e8ecf2;
}

.share-basket__empty .share-basket__btn {
	margin-top: 1rem;
	width: auto;
	min-width: 12rem;
	margin-left: auto;
	margin-right: auto;
}

.share-basket__empty--error .share-basket__title {
	margin-top: 0.35rem;
}

@media (min-width: 768px) {
	.share-basket-main {
		padding: 2.75rem 0 4rem;
	}

	.share-basket__footer {
		position: static;
	}
}

@media (max-width: 575px) {
	.share-basket-main {
		padding: 1.15rem 0 6.5rem;
	}

	.share-basket {
		padding: 0 0.75rem;
	}

	.share-basket__card--hero {
		padding: 1rem;
		gap: 0.75rem;
	}

	.share-basket__title {
		font-size: 1.12rem;
	}

	.share-basket__item {
		grid-template-columns: 4.25rem minmax(0, 1fr);
		gap: 0.7rem;
		padding: 0.75rem;
	}

	.share-basket__img {
		width: 4.25rem;
		height: 4.25rem;
	}

	.share-basket__price {
		grid-column: 2;
		text-align: left;
	}

	.share-basket__footer {
		bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
		margin-left: 0;
		margin-right: 0;
		border-radius: 18px;
	}
}

/* —— Homepage / landing / category produces: deferred + load more —— */
.home-page .home-produce-item--deferred,
.landing-page .home-produce-item--deferred,
.category-page .home-produce-item--deferred {
	display: none !important;
}

.home-produces-load-more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 12px 16px 40px;
}

.home-produces-load-more[hidden] {
	display: none !important;
}

.home-produces-load-more__btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	width: min(100%, 22rem);
	min-height: 3.25rem;
	padding: 0.72rem 1rem 0.72rem 1.35rem;
	border: 2px solid var(--primary-color, #f5c518);
	border-radius: 999px;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		color-mix(in srgb, var(--primary-color, #f5c518) 6%, #ffffff) 100%
	);
	color: var(--primary-ink, #111827);
	font-family: Poppins-Medium, Poppins-Regular, sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	cursor: pointer;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 8px 22px color-mix(in srgb, var(--primary-color, #f5c518) 22%, rgba(15, 23, 42, 0.1)),
		0 0 0 1px color-mix(in srgb, var(--primary-color, #f5c518) 12%, transparent);
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.home-produces-load-more__label {
	flex: 1 1 auto;
	text-align: center;
	white-space: nowrap;
}

.home-produces-load-more__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 2.1rem;
	height: 2.1rem;
	padding: 0 0.55rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--primary-color, #f5c518) 52%, #ffffff);
	border: 1.5px solid color-mix(in srgb, var(--primary-color, #f5c518) 72%, #111827 8%);
	color: var(--primary-ink, #111827);
	font-size: 0.875rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
	line-height: 1;
	box-shadow: 0 1px 3px color-mix(in srgb, var(--primary-color, #f5c518) 28%, rgba(15, 23, 42, 0.12));
}

.home-produces-load-more__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	margin-right: 0.05rem;
	font-size: 1.15rem;
	line-height: 1;
	opacity: 1;
	color: var(--primary-ink, #111827);
	background: color-mix(in srgb, var(--primary-color, #f5c518) 38%, #ffffff);
	border: 1.5px solid color-mix(in srgb, var(--primary-color, #f5c518) 65%, #111827 6%);
	border-radius: 999px;
	box-shadow: 0 1px 2px color-mix(in srgb, var(--primary-color, #f5c518) 22%, rgba(15, 23, 42, 0.1));
}

.home-produces-load-more__btn:hover .home-produces-load-more__count,
.home-produces-load-more__btn:focus-visible .home-produces-load-more__count {
	background: color-mix(in srgb, var(--primary-color, #f5c518) 62%, #ffffff);
	border-color: color-mix(in srgb, var(--primary-color, #f5c518) 78%, #111827 10%);
}

.home-produces-load-more__btn:hover .home-produces-load-more__icon,
.home-produces-load-more__btn:focus-visible .home-produces-load-more__icon {
	background: color-mix(in srgb, var(--primary-color, #f5c518) 48%, #ffffff);
	border-color: color-mix(in srgb, var(--primary-color, #f5c518) 72%, #111827 8%);
}

.home-produces-load-more__btn:hover,
.home-produces-load-more__btn:focus-visible {
	outline: none;
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--primary-color, #f5c518) 8%, #ffffff) 0%,
		color-mix(in srgb, var(--primary-color, #f5c518) 14%, #ffffff) 100%
	);
	border-color: var(--primary-color, #f5c518);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 10px 26px color-mix(in srgb, var(--primary-color, #f5c518) 28%, rgba(15, 23, 42, 0.12)),
		0 0 0 1px color-mix(in srgb, var(--primary-color, #f5c518) 18%, transparent);
}

.home-produces-load-more__btn:active {
	transform: scale(0.985);
}

.home-produces-load-more__btn.is-loading,
.home-produces-load-more__btn:disabled {
	opacity: 0.58;
	cursor: default;
	pointer-events: none;
}

@media (min-width: 992px) {
	.home-produces-load-more {
		padding: 16px 16px 48px;
	}

	.home-produces-load-more__btn {
		width: auto;
		min-width: 15rem;
		min-height: 3.35rem;
		padding: 0.75rem 1.05rem 0.75rem 1.5rem;
		font-size: 0.96875rem;
	}
}

@media (max-width: 991px) {
	.home-page .home-favorite-produces-section,
	.home-page .recently-viewed-produces-section,
	.home-page .home-produces-section,
	.home-page .home-blog-section {
		content-visibility: auto;
		contain-intrinsic-size: auto 520px;
	}

	.home-produces-sentinel {
		display: none;
	}

	.home-page .recently-viewed-produces-track-wrap,
	.home-page .recently-viewed-produces-slide .block2-pic {
		transform: translateZ(0);
	}

	.home-page .block2--vertical {
		-webkit-tap-highlight-color: transparent;
	}
}