/*//////////////////////////////////////////////////////////////////
[ Table Shopping Cart ]*/
.wrap-table-shopping-cart {
	overflow: auto;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
}

.table-shopping-cart {
	border-collapse: collapse;
	width: 100%;
	min-width: 680px;
}

.table-shopping-cart tr {
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
	width: 133px;
	padding-left: 50px;
}

.table-shopping-cart .column-2 {
	width: 220px;
	font-size: 15px;
}

.table-shopping-cart .column-3 {
	width: 120px;
	font-size: 16px;
}

.table-shopping-cart .column-4 {
	width: 145px;
	text-align: right;
}

.table-shopping-cart .column-5 {
	width: 172px;
	padding-right: 50px;
	text-align: right;
	font-size: 16px;
}

.table-shopping-cart .table_row {
	height: 185px;
}

.table-shopping-cart .table_row td {
	padding-bottom: 20px;
}

.table-shopping-cart .table_row td.column-1 {
	padding-bottom: 30px;
}

.table-shopping-cart .table_head th {
	font-family: Poppins-Bold;
	font-size: 13px;
	color: #555;
	text-transform: uppercase;
	line-height: 1.6;
	padding-top: 15px;
	padding-bottom: 15px;
}

.table-shopping-cart td {
	font-family: Poppins-Regular;
	color: #555;
	line-height: 1.6;
}

/* Shared cart card layout (checkout + shopping cart) */
.checkout-cart-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
}

.checkout-cart-item {
	display: grid;
	grid-template-columns: 84px 1fr auto;
	grid-template-areas:
		"img info total"
		"img meta qty";
	gap: 8px 14px;
	padding: 14px;
	border: 1px solid #ececec;
	border-radius: 4px;
	background: #fff;
}

.checkout-cart-img {
	grid-area: img;
	width: 84px;
	height: 84px;
	border: 1px solid #e9e9e9;
	border-radius: 4px;
	overflow: hidden;
}

.checkout-cart-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.checkout-cart-info {
	grid-area: info;
	min-width: 0;
}

.checkout-cart-name {
	font-weight: 500;
	color: #222;
	line-height: 1.25;
	font-family: var(--main-font);
}

.checkout-cart-meta {
	grid-area: meta;
	font-size: 16px;
	color: #666;
	font-family: var(--main-font);
}

.checkout-cart-total {
	grid-area: total;
	text-align: right;
	font-size: 18px;
	font-weight: 700;
	color: #222;
	white-space: nowrap;
	font-family: var(--main-font);
}

.shopping-cart-totals .mtext-110 {
	font-family: var(--main-font);
	font-weight: 700;
}

/* Shopping cart page: rounded surfaces (match site cards) */
.shopping-cart-page .wrap-table-shopping-cart {
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	overflow: hidden;
	background: #fafbfc;
}

.shopping-cart-page .checkout-cart-list {
	padding: 14px;
	gap: 12px;
}

.shopping-cart-page .checkout-cart-item {
	border-radius: 12px;
	border-color: #e3e8f2;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05);
}

.shopping-cart-page .checkout-cart-img {
	border-radius: 10px;
	border-color: #e5e7eb;
}

.shopping-cart-page .shopping-cart-totals {
	border-radius: 14px !important;
	border: 1px solid #e9ecf3 !important;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	background: #fff;
}

.shopping-cart-page .shopping-cart-empty {
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 28px;
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
}

.shopping-cart-page .shopping-cart-page-title {
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.2px;
}

/* Shopping cart premium layout (aligned with checkout-order-page) */
.shopping-cart-page.checkout-order-page .shopping-cart-summary-card {
	padding: 1.35rem 1.4rem 1.5rem !important;
}

.shopping-cart-page.checkout-order-page .shopping-cart-proceed-btn {
	margin-top: 1.15rem;
}

.shopping-cart-page.checkout-order-page .checkout-premium-payment-logos {
	margin-top: 1rem;
}

.shopping-cart-empty-wrap {
	display: flex;
	justify-content: center;
	padding: 1.5rem 0 0.5rem;
}

.shopping-cart-page .shopping-cart-empty {
	max-width: 480px;
	width: 100%;
	margin: 0;
	padding: 2.5rem 2rem 2.25rem;
	border: 1px solid #e9ecf3;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	text-align: center;
}

.shopping-cart-empty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	margin-bottom: 1rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	color: var(--primary-ink, var(--primary-color, #717fe0));
	font-size: 2rem;
}

.shopping-cart-empty__title {
	margin: 0 0 0.5rem;
	font-family: var(--accent-font);
	font-size: 1.35rem;
	font-weight: 700;
	color: #111827;
}

.shopping-cart-empty__text {
	margin: 0 0 1.25rem;
	font-size: 0.98rem;
	line-height: 1.55;
	color: #6b7280;
}

.shopping-cart-empty__perks {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
	text-align: left;
}

.shopping-cart-empty__perk {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	background: #f7f8fb;
	border: 1px solid #eef1f6;
	font-size: 0.875rem;
	line-height: 1.35;
	color: #374151;
}

.shopping-cart-empty__perk i {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #ffffff);
	color: var(--primary-ink, var(--primary-color, #717fe0));
	font-size: 1rem;
}

.shopping-cart-empty__cta {
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
}

.shopping-cart-recommend {
	margin-top: 2.75rem;
	padding-top: 2rem;
	border-top: 1px solid #e9ecf3;
	width: 100%;
}

.shopping-cart-recommend__title {
	font-family: var(--accent-font);
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1.25rem;
	text-align: left;
}

@media (min-width: 992px) {
	.shopping-cart-page.checkout-order-page section.checkout-page.main-content {
		padding-top: 1.25rem !important;
	}

	.shopping-cart-page.checkout-order-page .checkout-page .col-lg-7 h4.mtext-105.m-t-50,
	.shopping-cart-page.checkout-order-page .checkout-summary-head {
		margin-top: 0 !important;
	}

	body.shopping-cart-page.checkout-order-page {
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}

	body.shopping-cart-page.checkout-order-page section.checkout-page.main-content {
		flex: 1 0 auto;
	}

	body.shopping-cart-page.checkout-order-page footer.site-footer {
		flex-shrink: 0;
		margin-top: auto;
	}
}

@media (max-width: 991px) {
	.shopping-cart-page.checkout-order-page section.checkout-page.main-content {
		padding-top: 1.15rem !important;
		padding-bottom: 4.5rem !important;
	}

	.shopping-cart-page.checkout-order-page .checkout-page h4.mtext-105 {
		margin-top: 0.65rem !important;
		padding-bottom: 0.45rem !important;
	}

	.shopping-cart-page.checkout-order-page .wrap-table-shopping-cart {
		margin-bottom: 0.85rem !important;
	}

	.shopping-cart-page.checkout-order-page .checkout-cart-list {
		padding: 0.65rem 0.75rem !important;
		gap: 0.65rem !important;
	}

	.shopping-cart-page.checkout-order-page .checkout-summary-head {
		margin-top: 0.5rem !important;
		padding-bottom: 0.4rem !important;
	}

	.shopping-cart-page.checkout-order-page .shopping-cart-summary-card {
		padding: 0.85rem 0.9rem 1rem !important;
	}

	.shopping-cart-page.checkout-order-page .checkout-premium-summary {
		padding: 0.75rem 0.8rem;
	}

	.shopping-cart-page.checkout-order-page .checkout-premium-total {
		padding: 0.85rem 0.9rem;
	}

	.shopping-cart-page.checkout-order-page .sticky-summary {
		margin-top: 0.75rem !important;
	}

	.shopping-cart-page.checkout-order-page .shopping-cart-recommend {
		margin-top: 2rem;
		padding-top: 1.5rem;
	}
}

.wishlist-page .wishlist-page-title {
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.2px;
}

/* Wishlist (desktop): footer at viewport bottom like shopping cart */
@media ( min-width : 768px) {
	body.wishlist-page {
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}

	body.wishlist-page section.checkout-page.main-content {
		flex: 1 0 auto;
	}

	body.wishlist-page footer.site-footer {
		flex-shrink: 0;
		margin-top: auto;
	}
}

@media ( max-width : 767px) {
	.shopping-cart-page .shopping-cart-page-title {
		padding-bottom: 16px !important;
	}
	.wishlist-page .wishlist-page-title {
		padding-bottom: 16px !important;
	}
	.shopping-cart-page .shopping-cart-list-gutter {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.shopping-cart-page .shopping-cart-totals {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.shopping-cart-page .shopping-cart-main > .container > .row > [class*="col-"] {
		margin-bottom: 28px !important;
	}
	.shopping-cart-page .shopping-cart-main > .container > .row > [class*="col-"]:last-child {
		margin-bottom: 0 !important;
	}
	/* Genel mobil kuralı border sıfırlıyor; sepet kartını wishlist ile hizala */
	.shopping-cart-page .wrap-table-shopping-cart {
		border: 1px solid #e9ecf3 !important;
		border-radius: 14px !important;
		box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07) !important;
		background: #fafbfc !important;
		overflow: hidden;
	}
	.shopping-cart-page .checkout-cart-list {
		padding: 12px !important;
		gap: 10px !important;
	}
	.shopping-cart-page .shopping-cart-main {
		padding-bottom: 72px !important;
	}
}

/* Wishlist page: same rounded surfaces as shopping cart */
.wishlist-page .account-store-panel {
	max-width: 920px;
}

/* Account / wishlist store cards (myAccount tabs + wishlist page) */
.account-store-panel {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.account-store-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.account-store-card {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.95rem 1rem;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 82%);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 2px 14px rgba(17, 24, 39, 0.04);
}

.account-store-card__img {
	display: block;
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 78%);
}

.account-store-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.account-store-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.account-store-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.65rem;
}

.account-store-card__info {
	flex: 1;
	min-width: 0;
}

.account-store-card__name {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--account-text, #1f2937);
	text-decoration: none;
}

.account-store-card__variant {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.78rem;
	color: color-mix(in srgb, var(--account-text, #1f2937), #888 45%);
}

.account-store-card__badge-slot {
	margin-top: 0.35rem;
}

.account-store-card__remove,
.account-store-card__remove.checkout-cart-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 22%, #e5e7eb);
	border-radius: 10px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	color: var(--primary-ink, var(--primary-color, #717fe0));
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.account-store-card__remove:hover,
.account-store-card__remove:focus-visible,
.account-store-card__remove.checkout-cart-remove:hover,
.account-store-card__remove.checkout-cart-remove:focus-visible {
	color: color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 90%, #111827);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 16%, #ffffff);
	border-color: color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 34%, #e5e7eb);
	outline: none;
}

.account-store-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.account-store-card__bottom--wishlist {
	flex-wrap: wrap;
}

.account-store-card__price {
	text-align: right;
	flex-shrink: 0;
}

.account-store-card__price .ecom-price {
	justify-content: flex-end;
}

.account-store-qty {
	display: inline-flex;
	align-items: center;
	height: 34px;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 72%);
	border-radius: 10px;
	overflow: hidden;
	background: color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 96%);
}

.account-store-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #64748b;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.account-store-qty__btn:hover {
	background: color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 88%);
	color: var(--account-text, #1f2937);
}

.account-store-qty__value {
	min-width: 34px;
	padding: 0 0.35rem;
	text-align: center;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--account-text, #1f2937);
}

.account-store-card__view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 38px;
	padding: 0 0.95rem;
	border-radius: 999px;
	background: var(--account-primary, var(--primary-color, #717fe0));
	color: var(--account-on-primary, var(--on-primary, #fff)) !important;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)) 28%, transparent);
	transition: filter 0.15s ease, transform 0.15s ease;
}

.account-store-card__view:hover {
	color: var(--account-on-primary, var(--on-primary, #fff)) !important;
	filter: brightness(1.04);
	transform: translateY(-1px);
}

.account-store-summary {
	margin-top: 0.35rem;
	padding: 1.15rem 1.2rem;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 82%);
	border-radius: 16px;
	background: linear-gradient(135deg,
			color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 94%) 0%,
			#fff 58%);
	box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
}

.account-store-summary__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0;
}

.account-store-summary__title {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--account-text, #1f2937);
	text-transform: none;
	letter-spacing: 0;
}

.account-store-summary__meta {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.82rem;
	color: color-mix(in srgb, var(--account-text, #1f2937), #888 40%);
}

.account-store-summary__total .ecom-price {
	justify-content: flex-end;
	font-size: 1.05rem;
}

.account-store-summary--desktop-checkout .account-store-summary__row {
	margin-bottom: 0.95rem;
}

.account-store-summary__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	padding: 0.7rem 1rem;
	border-radius: 16px;
	background: var(--account-primary, var(--primary-color, #717fe0));
	color: var(--account-on-primary, var(--on-primary, #fff)) !important;
	text-decoration: none;
	box-shadow: 0 10px 24px color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)) 32%, transparent);
	transition: filter 0.15s ease, transform 0.15s ease;
}

.account-store-summary__cta:hover,
.account-store-summary__cta:focus-visible {
	color: var(--account-on-primary, var(--on-primary, #fff)) !important;
	filter: brightness(1.04);
	transform: translateY(-1px);
}

.account-store-summary__cta-title {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
}

.account-store-summary__cta-meta {
	margin-top: 0.2rem;
	font-size: 0.78rem;
	font-weight: 500;
	opacity: 0.92;
}

@media (max-width: 991px) {
	#account-cart .account-store-sticky-bar--desktop-checkout {
		display: none !important;
	}
}

.cart-sticky-bar-mount--embedded {
	flex-shrink: 0;
	margin-top: 0.85rem;
}

.account-store-sticky-bar.cart-sticky-bar-mount--embedded {
	margin-top: 1rem;
}

#account-cart .account-store-sticky-bar--desktop-checkout {
	margin-top: 1.15rem;
	padding: 14px;
	border: 1px solid #e9ecf3;
	border-radius: 16px;
	background: #f6f7fb;
}

@media (max-width: 575px) {
	.account-store-card {
		padding: 0.85rem;
	}

	.account-store-card__img {
		width: 64px;
		height: 64px;
	}

	.account-store-card__bottom--wishlist {
		flex-direction: column;
		align-items: stretch;
	}

	.account-store-card__price {
		text-align: left;
	}

	.account-store-card__price .ecom-price {
		justify-content: flex-start;
	}

	.account-store-card__view {
		width: 100%;
	}

	.account-store-summary__row {
		flex-direction: column;
		align-items: flex-start;
	}

	.account-store-summary__total .ecom-price {
		justify-content: flex-start;
	}
}

.wishlist-page .wrap-table-shopping-cart {
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	overflow: hidden;
	background: #fafbfc;
}

.wishlist-page .checkout-cart-list {
	padding: 14px;
	gap: 12px;
}

.wishlist-page .checkout-cart-item {
	border-radius: 12px;
	border-color: #e3e8f2;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05);
}

.wishlist-page .checkout-cart-img {
	border-radius: 10px;
	border-color: #e5e7eb;
}

.wishlist-page .checkout-cart-actions .size-103 {
	border-radius: 999px;
}

.wishlist-page .wishlist-remove-btn {
	border-radius: 10px;
}

.wishlist-page .wishlist-empty {
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 28px;
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
}

/* Checkout order page: cart review + shipping + summary (align with cart/wishlist) */
.checkout-order-page .wrap-table-shopping-cart {
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	overflow: hidden;
	background: #fafbfc;
}

.checkout-order-page .checkout-cart-list {
	padding: 14px;
	gap: 12px;
}

.checkout-order-page .checkout-cart-item {
	border-radius: 12px;
	border-color: #e3e8f2;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05);
}

.checkout-order-page .checkout-cart-img {
	border-radius: 10px;
	border-color: #e5e7eb;
}

.checkout-order-page .checkout-box.shipping-card {
	border-radius: 14px !important;
	border: 1px solid #e9ecf3 !important;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	background: #fff;
}

/* Free shipping threshold hints (sticky bar + checkout summary) */
.free-shipping-hint {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	color: #64748b;
	min-width: 0;
}

.free-shipping-hint__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.1rem;
	height: 1.1rem;
	color: var(--primary-ink, var(--primary-color, #717fe0));
	font-size: 0.95rem;
	line-height: 1;
}

.free-shipping-hint__text {
	flex: 1;
	min-width: 0;
	font-size: 0.75rem;
	line-height: 1.35;
	font-weight: 600;
	color: #475569;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.free-shipping-hint__text--success,
.free-shipping-hint--qualified .free-shipping-hint__text {
	color: #15803d;
	font-weight: 700;
	white-space: normal;
}

.free-shipping-hint--sticky {
	padding: 0.48rem 0.95rem 0.42rem;
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 5%, #fafbfc) 0%,
		color-mix(in srgb, var(--primary-color, #717fe0) 2%, #ffffff) 100%
	);
	border-bottom: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 10%, #e8ecf2);
}

.free-shipping-hint--sticky .free-shipping-hint__icon {
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 11%, #fff);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 14%, transparent);
}

.free-shipping-hint--sticky .free-shipping-hint__text {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.free-shipping-hint--summary {
	margin: 0.5rem 0 0;
	padding: 0.62rem 0.75rem;
	border-radius: 10px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 7%, #ffffff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 14%, #eef0f4);
}

.checkout-order-page .checkout-summary-box .js-checkout-shipping-row {
	padding-bottom: 0;
}

/* Checkout order summary — premium card */
.checkout-premium-card {
	padding: 1.35rem 1.4rem 1.5rem !important;
}

.checkout-premium-summary {
	padding: 1rem 1.05rem;
	border-radius: 14px;
	background: linear-gradient(180deg, #fafbfc 0%, #f4f6f9 100%);
	border: 1px solid #eef0f4;
}

.checkout-premium-summary .checkout-premium-total {
	margin-top: 0.65rem;
}

.checkout-premium-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.65rem 1rem;
	align-items: baseline;
	padding: 0.42rem 0;
	font-size: 0.9rem;
}

.checkout-premium-row + .checkout-premium-row {
	border-top: 1px solid #e8ecf2;
	margin-top: 0.15rem;
	padding-top: 0.58rem;
}

.checkout-premium-row__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.65rem 1rem;
	align-items: baseline;
	width: 100%;
	grid-column: 1 / -1;
}

.checkout-premium-row--stacked {
	display: block;
}

.checkout-premium-row--stacked .free-shipping-hint--summary {
	margin-top: 0.55rem;
}

.checkout-summary-carrier {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
}

.checkout-summary-carrier__logo {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	object-fit: contain;
	border-radius: 7px;
	background: #fff;
	padding: 2px;
	border: 1px solid #e8ecf2;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.checkout-summary-carrier__logo-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 7px;
	font-size: 0.62rem;
	font-weight: 700;
	color: var(--primary-ink, var(--primary-color, #717fe0));
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #fff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 14%, #eef0f4);
}

.checkout-summary-carrier__text {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
	min-width: 0;
}

.checkout-summary-carrier__label {
	font-size: 0.7rem;
	font-weight: 600;
	color: #9ca3af;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.checkout-summary-carrier__name {
	font-size: 0.82rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 11rem;
}

.checkout-premium-row--carrier .checkout-premium-row__main {
	align-items: center;
}

/* Ücretsiz kargo: rakam + TL aynı ağırlık/renk; sadece rakam çizili */
.checkout-order-page .checkout-summary-shipping--free.ecom-price--discounted {
	align-items: flex-end;
	gap: 0.15rem;
}

.checkout-order-page .checkout-summary-shipping--free .ecom-price__old {
	display: inline-flex;
	align-items: baseline;
	gap: 0.25em;
	text-decoration: none !important;
	color: #6b7280;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
}

.checkout-order-page .checkout-summary-shipping--free .ecom-price__old .ecom-price__amount,
.checkout-order-page .checkout-summary-shipping--free .ecom-price__old .ecom-price__currency {
	color: inherit;
	font-weight: inherit;
	font-size: 1em;
	letter-spacing: 0.01em;
}

.checkout-order-page .checkout-summary-shipping--free .ecom-price__old .ecom-price__amount {
	text-decoration: line-through;
	text-decoration-thickness: 1px;
	text-decoration-color: currentColor;
}

.checkout-order-page .checkout-summary-shipping--free .ecom-price__old .ecom-price__currency {
	text-decoration: none !important;
}

.checkout-order-page .checkout-summary-shipping--free .ecom-price__current.checkout-premium-free {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
}

.checkout-summary-carrier.is-updating {
	animation: checkoutCarrierPulse 0.35s ease;
}

@keyframes checkoutCarrierPulse {
	0% { opacity: 0.45; transform: translateX(-4px); }
	100% { opacity: 1; transform: translateX(0); }
}

.checkout-premium-row__label {
	font-weight: 500;
	color: #6b7280;
	font-size: 0.875rem;
}

.checkout-premium-row__meta {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.1rem 0.45rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--primary-ink, var(--primary-color, #717fe0));
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #fff);
}

.checkout-premium-row__value {
	text-align: right;
	font-weight: 600;
	color: #111827;
	font-variant-numeric: tabular-nums;
}

.checkout-premium-row--discount .checkout-premium-row__label,
.checkout-premium-row--discount .checkout-premium-row__value--discount {
	color: #059669;
}

.checkout-premium-free {
	color: #059669 !important;
	font-weight: 600;
}

.checkout-premium-price.ecom-price {
	justify-content: flex-end;
}

.checkout-premium-card .ecom-price--discounted {
	align-items: flex-end;
}

.checkout-premium-card .ecom-price--discounted .ecom-price__old {
	display: inline-flex;
	align-items: baseline;
	gap: 0.25em;
	text-decoration: none;
	color: #6b7280;
	font-weight: 500;
}

.checkout-premium-card .ecom-price--discounted .ecom-price__old .ecom-price__amount {
	text-decoration: line-through;
	text-decoration-thickness: 1px;
	text-decoration-color: currentColor;
	color: inherit;
	font-weight: inherit;
}

.checkout-premium-card .ecom-price--discounted .ecom-price__old .ecom-price__currency {
	text-decoration: none;
	color: inherit;
	font-weight: inherit;
	font-size: 1em;
}

.checkout-premium-price--total .ecom-price__current,
.checkout-premium-total .checkout-premium-price--total .ecom-price__amount {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-ink, var(--primary-color, #717fe0));
}

.checkout-premium-card .checkout-premium-price--total.ecom-price--discounted .ecom-price__current,
.checkout-premium-card .checkout-premium-price--total.ecom-price--discounted .ecom-price__current .ecom-price__amount,
.checkout-premium-card .checkout-premium-price--total.ecom-price--discounted .ecom-price__current .ecom-price__currency {
	color: var(--block2-discount-accent, #dc2626);
}

.checkout-premium-section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b7280;
}

.checkout-premium-section-title .zmdi {
	font-size: 1.05rem;
	color: var(--primary-ink, var(--primary-color, #717fe0));
}

.checkout-premium-section-title--compact {
	margin-bottom: 0.65rem;
}

.checkout-premium-coupon {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.checkout-coupon-form {
	display: flex;
	align-items: stretch;
	gap: 0.65rem;
}

.checkout-coupon-form__input {
	flex: 1 1 auto;
	min-width: 0;
}

.checkout-coupon-form__field {
	display: flex;
	align-items: stretch;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 16%, #e2e8f0);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-coupon-form__field:focus-within {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 48%, #e2e8f0);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #717fe0) 14%, transparent);
}

.checkout-coupon-form__field input {
	width: 100%;
	min-height: 2.75rem;
	border: 0;
	border-radius: 12px;
	background: transparent;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #0f172a;
}

.checkout-coupon-form__field input::placeholder {
	color: #94a3b8;
	font-weight: 500;
}

.checkout-coupon-form__btn {
	flex: 0 0 auto;
	align-self: stretch;
	min-height: 2.75rem;
	padding: 0 1.15rem;
	border: none;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--primary-color, #717fe0), color-mix(in srgb, var(--primary-color, #717fe0) 72%, #4338ca));
	color: var(--on-primary, #171717);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	white-space: nowrap;
	box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-color, #717fe0) 32%, transparent);
	transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.checkout-coupon-form__btn:hover:not(:disabled),
.checkout-coupon-form__btn:focus:not(:disabled) {
	color: var(--on-primary, #171717);
	filter: brightness(1.05);
	box-shadow: 0 8px 22px color-mix(in srgb, var(--primary-color, #717fe0) 38%, transparent);
	outline: none;
}

.checkout-coupon-form__btn:active:not(:disabled) {
	transform: translateY(1px);
}

.checkout-coupon-form__btn:disabled {
	opacity: 1;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #f8fafc);
	color: color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 38%, #94a3b8);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 14%, #e2e8f0);
	cursor: not-allowed;
	filter: none;
}

.checkout-coupon-applied {
	display: flex;
	align-items: stretch;
	gap: 0;
	padding: 0;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 22%, #e8ecf2);
	background:
		radial-gradient(120% 90% at 100% 0%,
			color-mix(in srgb, var(--primary-color, #717fe0) 12%, transparent) 0%,
			transparent 55%),
		linear-gradient(165deg, #fffefb 0%, #ffffff 55%, #fafbff 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 8px 22px rgba(15, 23, 42, 0.05);
}

.checkout-coupon-applied__accent {
	flex: 0 0 5px;
	background: linear-gradient(180deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 70%, #fbbf24) 0%,
		var(--primary-color, #717fe0) 55%,
		color-mix(in srgb, var(--primary-color, #717fe0) 75%, #22c55e) 100%);
}

.checkout-coupon-applied__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 0.85rem 0.9rem 0.8rem;
}

.checkout-coupon-applied__main {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
}

.checkout-coupon-applied__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 11px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 14%, #fff);
	color: var(--primary-ink, var(--primary-color, #717fe0));
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 22%, #eef0f4);
	font-size: 1rem;
	flex-shrink: 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.checkout-coupon-applied__text {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
	min-width: 0;
	flex: 1 1 auto;
}

.checkout-coupon-applied__eyebrow {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #64748b;
}

.checkout-coupon-applied__code {
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: #0f172a;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	word-break: break-all;
}

.checkout-coupon-applied__hint {
	flex: 0 0 auto;
	margin-left: auto;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #fff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 20%, #e8ecf2);
	font-size: 0.82rem;
	font-weight: 800;
	color: color-mix(in srgb, var(--primary-ink, var(--primary-color, #717fe0)) 75%, #0f172a);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.checkout-coupon-applied__remove {
	align-self: stretch;
	width: 100%;
	padding: 0.48rem 0.75rem;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	color: #64748b;
	font-size: 0.78rem;
	font-weight: 700;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.checkout-coupon-applied__remove:hover,
.checkout-coupon-applied__remove:focus {
	border-color: #cbd5e1;
	color: #334155;
	background: #f8fafc;
	outline: none;
}

.checkout-premium-payment {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.checkout-premium-payment-fields {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.checkout-premium-payment-split {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 0.65rem;
}

.checkout-premium-field {
	margin-bottom: 0 !important;
}

.checkout-premium-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.1rem;
	padding: 1rem 1.05rem;
	border-radius: 14px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color, #717fe0) 7%, #fff) 0%, #f8fafc 100%);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 16%, #e5e7eb);
}

.checkout-premium-total__label {
	font-size: 0.95rem;
	font-weight: 700;
	color: #111827;
}

.checkout-premium-total__value {
	text-align: right;
}

.checkout-premium-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
	padding: 0.95rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(145deg, var(--primary-color, #717fe0), color-mix(in srgb, var(--primary-color, #717fe0) 75%, #4338ca));
	color: var(--on-primary, #171717);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-color, #717fe0) 32%, transparent);
	transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
	text-decoration: none;
}

.checkout-premium-submit.is-shipping-pending {
	opacity: 0.55;
	cursor: not-allowed;
	filter: grayscale(0.15);
	box-shadow: none;
}

a.checkout-premium-submit,
a.checkout-premium-submit:hover,
a.checkout-premium-submit:focus {
	text-decoration: none;
}

.checkout-premium-submit:hover,
.checkout-premium-submit:focus {
	color: var(--on-primary, #171717);
	filter: brightness(1.04);
	box-shadow: 0 10px 28px color-mix(in srgb, var(--primary-color, #717fe0) 38%, transparent);
	outline: none;
}

.checkout-premium-submit:active {
	transform: translateY(1px);
}

.checkout-premium-submit:disabled,
.checkout-premium-submit[aria-disabled="true"] {
	opacity: 0.55;
	cursor: not-allowed;
	filter: grayscale(0.12);
	box-shadow: none;
	pointer-events: none;
}

.checkout-premium-submit:disabled:hover,
.checkout-premium-submit:disabled:focus,
.checkout-premium-submit[aria-disabled="true"]:hover,
.checkout-premium-submit[aria-disabled="true"]:focus {
	filter: grayscale(0.12);
	box-shadow: none;
	transform: none;
}

.checkout-premium-submit.is-loading {
	opacity: 0.78;
	pointer-events: none;
}

.checkout-submit-hint {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 10px 0 0;
	padding: 10px 14px;
	color: #b42318;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
	background: #fef3f2;
	border: 1px solid #fecdca;
	border-radius: 10px;
}

.checkout-submit-hint i {
	flex: 0 0 auto;
	font-size: 1.05rem;
	color: #d92d20;
}

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

.checkout-premium-payment-logos {
	margin-top: 1.15rem;
	padding-top: 1rem;
	border-top: 1px solid #f1f3f6;
}

.free-shipping-hint--summary {
	margin: 0;
	padding: 0.55rem 0.65rem;
	border-radius: 10px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 5%, #fff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 12%, #eef0f4);
}

.free-shipping-hint--summary .free-shipping-hint__text {
	font-size: 0.72rem;
	font-weight: 600;
	white-space: normal;
}

@media (max-width: 575px) {
	.checkout-premium-card {
		padding: 1rem 1rem 1.15rem !important;
	}

	.checkout-premium-summary {
		padding: 0.85rem 0.9rem;
	}

	.checkout-coupon-form__btn {
		min-height: 40px;
		padding: 0 0.85rem;
		font-size: 0.78rem;
	}

	.checkout-coupon-applied__main {
		flex-wrap: wrap;
	}

	.checkout-coupon-applied__hint {
		margin-left: 0;
	}

	.checkout-premium-payment-split {
		grid-template-columns: 1fr;
	}
}

/* Premium inputs + Select2 — checkout shipping, myAccount addresses, add-address modal */
.premium-form-surface {
	position: relative;
}

.premium-form-surface .checkout-rounded-field {
	border-radius: 12px;
	border-color: #e5e9f2;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 {
	overflow: visible;
}

.premium-form-surface .checkout-rounded-field:not(.rs1-select2) {
	overflow: hidden;
}

.premium-form-surface .checkout-rounded-field:focus-within {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 42%, #e5e9f2);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #717fe0) 14%, transparent);
}

.premium-form-surface .checkout-rounded-field input,
.premium-form-surface .checkout-rounded-field textarea {
	border: 0;
	border-radius: 12px;
	background: transparent;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container .select2-selection--single {
	border-radius: 12px;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single {
	height: 45px;
	background: #fff;
	border: 0;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 15px;
	padding-right: 2.75rem;
	line-height: 43px;
	font-size: 14px;
	color: #334155;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 2.25rem;
	height: 100%;
	top: 0;
	right: 0;
	border-left: 0;
	border-radius: 0 12px 12px 0;
	background: transparent;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after {
	content: "\f107";
	font-family: FontAwesome;
	font-size: 14px;
	color: #64748b;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.premium-form-surface .select2-container--open .select2-selection--single {
	box-shadow: none;
}

.premium-form-surface .select2-dropdown {
	border: 1px solid #e5e9f2 !important;
	border-radius: 12px !important;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14) !important;
	margin-top: 6px;
	z-index: 1300;
}

.premium-form-surface .select2-dropdown--above {
	margin-top: 0;
	margin-bottom: 6px;
}

.premium-form-surface .select2-results__options {
	max-height: 240px;
	padding: 6px 0;
}

.premium-form-surface .select2-container .select2-results__option {
	padding: 10px 16px;
	font-size: 14px;
	color: #334155;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.premium-form-surface .select2-container .select2-results__option--highlighted[aria-selected] {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #ffffff) !important;
	color: #1e293b !important;
}

.premium-form-surface .select2-container .select2-results__option[aria-selected="true"] {
	background: var(--primary-color, #717fe0) !important;
	color: var(--on-primary, #fff) !important;
}

.premium-form-surface .select2-search--dropdown {
	padding: 8px 10px 4px;
}

.premium-form-surface .select2-search--dropdown .select2-search__field {
	border: 1px solid #e5e9f2 !important;
	border-radius: 10px !important;
	padding: 8px 12px;
	font-size: 14px;
	color: #334155;
	outline: none;
}

.premium-form-surface .select2-search--dropdown .select2-search__field:focus {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 45%, #e5e9f2) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #717fe0) 12%, transparent);
}

.address-modal-backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(15, 23, 42, 0.48);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

body.address-modal-open {
	overflow: hidden;
}

#addressModal.premium-form-surface {
	overflow: visible;
}

#addressModal.premium-form-surface .modal-content {
	overflow: visible;
}

#addressModal.premium-form-surface .modal-body {
	overflow-y: auto;
	overflow-x: visible;
}

.free-shipping-hint--summary .free-shipping-hint__text {
	white-space: normal;
}

.free-shipping-hint--summary.free-shipping-hint--qualified {
	background: color-mix(in srgb, #15803d 8%, #ffffff);
	border-color: color-mix(in srgb, #15803d 18%, #e8f5ec);
}

