/* Catalog is scoped to the embedded İFÖP Kitap app. */
.tc-ifopkitap-app .tc-catalog-shell { font-family: Inter, "Segoe UI", Arial, sans-serif; }
:root {
	--tc-shop-burgundy: #5d2b86;
	--tc-shop-deep: #35134f;
	--tc-shop-orange: #db6d26;
	--tc-shop-cream: #f8f0ea;
	--tc-shop-ink: #3f2528;
	--tc-shop-line: rgba(93, 43, 134, 0.17);
}

.tc-ifopkitap-app * {
	box-sizing: border-box;
}

.tc-catalog-shell {
	min-height: 100vh;
	color: var(--tc-shop-ink);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 15%, rgba(219, 109, 38, 0.09), transparent 24%),
		linear-gradient(180deg, #fffaf6, #f6ece6);
}

.tc-shop-header {
	position: relative;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	min-height: 126px;
	padding: 13px max(36px, 5vw);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	background:
		radial-gradient(circle at 14% -10%, rgba(255, 190, 60, 0.22), transparent 27%),
		linear-gradient(105deg, #35134f, #5d2b86 62%, #7f4ab3);
	box-shadow: 0 15px 40px rgba(46, 6, 13, 0.18);
}

.tc-shop-header__logo {
	display: block;
	flex: 0 0 auto;
	height: 98px;
	text-decoration: none;
}

.tc-shop-header__logo-card {
	display: grid;
	height: 100%;
	padding: 5px 13px;
	border: 1px solid rgba(255,255,255,.72);
	border-radius: 20px;
	background: rgba(255,255,255,.96);
	box-shadow: 0 12px 28px rgba(25, 7, 37, .24);
	place-items: center;
}

.tc-shop-header__logo img {
	display: block;
	width: auto;
	height: 86px;
	object-fit: contain;
}

.tc-shop-header__nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.3vw, 42px);
}

.tc-shop-header__nav > a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-decoration: none;
	transition: color 180ms ease;
}

.tc-shop-header__nav > a:hover,
.tc-shop-header__nav > a:focus-visible {
	color: #fff;
}

.tc-shop-cart-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 0 17px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}

.tc-shop-cart-link svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.tc-shop-cart-link b {
	display: grid;
	min-width: 24px;
	height: 24px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--tc-shop-orange);
	color: #fff;
	font-size: 0.67rem;
	place-items: center;
}

.tc-products-page,
.tc-product-detail,
.tc-cart-page {
	width: min(1640px, calc(100% - max(48px, 8vw)));
	margin: 0 auto;
}

.tc-products-page {
	padding: clamp(54px, 5vw, 92px) 0 clamp(80px, 7vw, 130px);
}

.tc-products-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: clamp(32px, 4vw, 62px);
	padding-bottom: 25px;
	border-bottom: 1px solid var(--tc-shop-line);
}

.tc-products-hero p,
.tc-product-detail__head > p,
.tc-cart-page__hero > p {
	margin: 0 0 8px;
	color: var(--tc-shop-orange);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.2em;
}

.tc-products-hero h1,
.tc-cart-page__hero h1 {
	margin: 0;
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.9rem, 5vw, 6.5rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.9;
}

.tc-products-hero > span {
	color: rgba(63, 37, 40, 0.47);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.15em;
}

.tc-product-list {
	display: grid;
	gap: 15px;
}

.tc-product-row {
	position: relative;
	display: grid;
	grid-template-columns: 42px clamp(116px, 9vw, 158px) minmax(260px, 1fr) minmax(230px, 0.36fr);
	gap: clamp(20px, 2.4vw, 46px);
	align-items: center;
	min-height: clamp(154px, 12vw, 196px);
	padding: 18px clamp(22px, 2.6vw, 44px) 18px 18px;
	border: 1px solid var(--tc-shop-line);
	border-radius: 19px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 30px rgba(69, 19, 27, 0.055);
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.tc-product-row:hover {
	border-color: rgba(113, 31, 44, 0.34);
	box-shadow: 0 20px 48px rgba(69, 19, 27, 0.1);
	transform: translateY(-3px);
}

.tc-product-row__number {
	align-self: start;
	padding-top: 8px;
	color: rgba(113, 31, 44, 0.28);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.82rem;
}

.tc-product-row__image {
	display: block;
	overflow: hidden;
	border: 1px solid rgba(113, 31, 44, 0.11);
	border-radius: 13px;
	background: #eee7e1;
	box-shadow: 0 10px 24px rgba(55, 12, 20, 0.12);
	aspect-ratio: 1 / 1;
}

.tc-product-row__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.tc-product-row:hover .tc-product-row__image img {
	transform: scale(1.035);
}

.tc-product-row__info {
	min-width: 0;
}

.tc-product-row__info > a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

.tc-product-row__info h2 {
	margin: 0 0 11px;
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.65rem, 2.2vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1;
}

.tc-product-row__info a:hover h2,
.tc-product-row__info a:focus-visible h2 {
	color: var(--tc-shop-orange);
}

.tc-product-row__author,
.tc-product-row__publisher {
	margin: 0;
}

.tc-product-row__author {
	color: var(--tc-shop-burgundy);
	font-size: clamp(0.78rem, 0.82vw, 0.96rem);
	font-weight: 800;
}

.tc-product-row__publisher {
	margin-top: 5px;
	color: rgba(63, 37, 40, 0.52);
	font-size: clamp(0.69rem, 0.7vw, 0.82rem);
}

.tc-product-row__purchase {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(13px, 1.5vw, 24px);
}

.tc-product-row__purchase > strong {
	color: var(--tc-shop-burgundy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.25rem, 1.65vw, 2.1rem);
	font-weight: 700;
	white-space: nowrap;
}

.tc-add-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 17px;
	border: 0;
	border-radius: 999px;
	background: var(--tc-shop-burgundy);
	box-shadow: 0 10px 23px rgba(113, 31, 44, 0.2);
	color: #fff;
	font: inherit;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.075em;
	white-space: nowrap;
	cursor: pointer;
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tc-add-cart svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.tc-add-cart:hover,
.tc-add-cart:focus-visible,
.tc-add-cart.is-added {
	background: var(--tc-shop-orange);
	box-shadow: 0 13px 27px rgba(186, 79, 17, 0.24);
	transform: translateY(-2px);
}

.tc-product-list__empty {
	padding: 70px 24px;
	border: 1px dashed var(--tc-shop-line);
	border-radius: 18px;
	color: rgba(63, 37, 40, 0.58);
	text-align: center;
}

/* Single product */
.tc-product-detail {
	padding: 38px 0 clamp(90px, 8vw, 150px);
}

.tc-product-detail__back {
	display: inline-flex;
	margin: 0 0 32px;
	color: rgba(63, 37, 40, 0.57);
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
}

.tc-product-detail__back:hover,
.tc-product-detail__back:focus-visible {
	color: var(--tc-shop-orange);
}

.tc-product-detail__grid {
	display: grid;
	grid-template-columns: minmax(380px, 0.86fr) minmax(560px, 1.14fr);
	gap: clamp(50px, 7vw, 125px);
	align-items: start;
}

.tc-product-detail__visual {
	position: sticky;
	top: 24px;
	overflow: hidden;
	border: 1px solid rgba(113, 31, 44, 0.13);
	border-radius: clamp(20px, 2vw, 30px);
	background: #e9e1dc;
	box-shadow: 0 25px 65px rgba(55, 12, 20, 0.16);
	aspect-ratio: 1 / 1;
}

.tc-product-detail__visual::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.tc-product-detail__visual > span {
	position: absolute;
	z-index: 2;
	top: 21px;
	left: 21px;
	padding: 9px 13px;
	border-radius: 999px;
	background: rgba(113, 31, 44, 0.92);
	box-shadow: 0 8px 20px rgba(55, 12, 20, 0.2);
	color: #fff;
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.tc-product-detail__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tc-product-detail__content {
	padding-top: clamp(16px, 2.5vw, 42px);
}

.tc-product-detail__head h1 {
	margin: 0;
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3.2rem, 6vw, 8rem);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 0.86;
}

.tc-product-detail__meta {
	display: flex;
	gap: clamp(36px, 5vw, 80px);
	margin-top: clamp(28px, 3vw, 47px);
}

.tc-product-detail__meta span {
	display: grid;
	gap: 6px;
}

.tc-product-detail__meta small {
	color: var(--tc-shop-orange);
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.tc-product-detail__meta strong {
	color: var(--tc-shop-burgundy);
	font-size: clamp(0.83rem, 0.9vw, 1.03rem);
}

.tc-product-detail__description {
	margin-top: clamp(90px, 9vw, 160px);
}

.tc-product-detail__description h2 {
	margin: 0 0 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--tc-shop-line);
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.5rem, 2vw, 2.4rem);
	font-weight: 400;
}

.tc-product-detail__description p {
	margin: 0 0 21px;
	color: rgba(63, 37, 40, 0.7);
	font-size: clamp(0.82rem, 0.84vw, 0.98rem);
	line-height: 1.85;
}

.tc-product-detail__buy {
	margin-top: clamp(52px, 6vw, 90px);
}

.tc-product-detail__price-line {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 25px;
	align-items: center;
}

.tc-product-detail__price-line > span {
	height: 2px;
	background: linear-gradient(90deg, var(--tc-shop-burgundy), rgba(113, 31, 44, 0.15));
}

.tc-product-detail__price-line strong {
	color: var(--tc-shop-burgundy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3.1vw, 4rem);
	font-weight: 700;
	white-space: nowrap;
}

.tc-product-detail__actions {
	display: grid;
	grid-template-columns: 1fr 0.7fr;
	gap: 14px;
	margin-top: 25px;
}

.tc-add-cart--primary,
.tc-product-detail__cart-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	border-radius: 999px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
}

.tc-product-detail__cart-button {
	gap: 10px;
	border: 1px solid var(--tc-shop-line);
	background: rgba(255, 255, 255, 0.55);
	color: var(--tc-shop-burgundy);
	font-weight: 800;
	text-decoration: none;
	transition: border-color 180ms ease, background 180ms ease;
}

.tc-product-detail__cart-button:hover,
.tc-product-detail__cart-button:focus-visible {
	border-color: var(--tc-shop-burgundy);
	background: #fff;
}

.tc-product-detail__cart-button span {
	display: grid;
	min-width: 25px;
	height: 25px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--tc-shop-orange);
	color: #fff;
	font-size: 0.65rem;
	place-items: center;
}

/* Browser cart */
.tc-cart-page {
	padding: clamp(55px, 5vw, 90px) 0 clamp(90px, 8vw, 145px);
}

.tc-cart-page__hero {
	margin-bottom: 42px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--tc-shop-line);
}

.tc-cart-page__hero h1 {
	font-size: clamp(2.8rem, 4.8vw, 6rem);
}

.tc-cart-page__hero > span {
	display: block;
	margin-top: 16px;
	color: rgba(63, 37, 40, 0.52);
	font-size: 0.78rem;
}

.tc-cart-mount {
	min-height: 220px;
}

.tc-cart-loading,
.tc-cart-empty {
	margin: 0;
	padding: 65px 24px;
	border: 1px dashed var(--tc-shop-line);
	border-radius: 18px;
	color: rgba(63, 37, 40, 0.56);
	text-align: center;
}

.tc-cart-empty a {
	display: inline-flex;
	margin-top: 18px;
	padding: 13px 20px;
	border-radius: 999px;
	background: var(--tc-shop-burgundy);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.tc-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
	gap: 30px;
	align-items: start;
}

.tc-cart-items {
	display: grid;
	gap: 13px;
}

.tc-cart-item {
	display: grid;
	grid-template-columns: 112px minmax(180px, 1fr) auto auto;
	gap: 22px;
	align-items: center;
	padding: 15px 19px 15px 15px;
	border: 1px solid var(--tc-shop-line);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.72);
}

.tc-cart-item__image {
	display: block;
	overflow: hidden;
	border-radius: 11px;
	aspect-ratio: 1 / 1;
}

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

.tc-cart-item__info a {
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	font-weight: 700;
	text-decoration: none;
}

.tc-cart-item__info p {
	margin: 7px 0 0;
	color: rgba(63, 37, 40, 0.53);
	font-size: 0.72rem;
}

.tc-cart-item__quantity {
	display: grid;
	grid-template-columns: 34px 38px 34px;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--tc-shop-line);
	border-radius: 999px;
	background: #fff;
}

.tc-cart-item__quantity button {
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--tc-shop-burgundy);
	font-size: 1.1rem;
	cursor: pointer;
}

.tc-cart-item__quantity span {
	font-size: 0.76rem;
	font-weight: 800;
	text-align: center;
}

.tc-cart-item__price {
	display: grid;
	gap: 9px;
	justify-items: end;
}

.tc-cart-item__price strong {
	color: var(--tc-shop-burgundy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
	white-space: nowrap;
}

.tc-cart-item__remove {
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(113, 31, 44, 0.55);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	cursor: pointer;
}

.tc-cart-summary {
	position: sticky;
	top: 24px;
	padding: 29px;
	border-radius: 19px;
	background: linear-gradient(135deg, #4a1019, #76202f);
	box-shadow: 0 20px 50px rgba(54, 8, 16, 0.2);
	color: #fff;
}

.tc-cart-summary > span {
	color: #f0a56c;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.tc-cart-summary h2 {
	margin: 10px 0 25px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.8rem;
	font-weight: 400;
}

.tc-cart-summary__row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.75rem;
}

.tc-cart-summary__row strong {
	color: #fff;
}

.tc-cart-summary__total {
	align-items: flex-end;
	margin-top: 7px;
	color: #fff;
}

.tc-cart-summary__total strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.8rem;
}

.tc-cart-summary__note {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.64rem;
	line-height: 1.5;
}

.tc-cart-summary__checkout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 54px;
	margin-top: 24px;
	padding: 0 19px;
	border-radius: 999px;
	background: var(--tc-shop-orange);
	box-shadow: 0 12px 28px rgba(35, 3, 8, 0.24);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-decoration: none;
	transition: background 180ms ease, transform 180ms ease;
}

.tc-cart-summary__checkout:hover,
.tc-cart-summary__checkout:focus-visible {
	background: #ef7d30;
	transform: translateY(-2px);
}

/* Tami checkout */
.tc-checkout-page {
	width: min(1540px, calc(100% - max(48px, 8vw)));
	margin: 0 auto;
	padding: clamp(52px, 5vw, 86px) 0 clamp(90px, 8vw, 145px);
}

.tc-checkout-page__hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: clamp(34px, 4vw, 60px);
	padding-bottom: 25px;
	border-bottom: 1px solid var(--tc-shop-line);
}

.tc-checkout-page__hero p {
	margin: 0 0 8px;
	color: var(--tc-shop-orange);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.2em;
}

.tc-checkout-page__hero h1 {
	margin: 0;
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.9rem, 5vw, 6.3rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.9;
}

.tc-checkout-page__hero > span {
	color: rgba(63, 37, 40, 0.46);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.11em;
}

.tc-checkout-page__hero > span b {
	margin: 0 8px;
	color: var(--tc-shop-orange);
}

.tc-checkout-alert {
	display: grid;
	gap: 5px;
	margin-bottom: 20px;
	padding: 16px 19px;
	border: 1px solid transparent;
	border-radius: 13px;
	font-size: 0.76rem;
	line-height: 1.55;
}

.tc-checkout-alert--error {
	border-color: rgba(156, 33, 42, 0.22);
	background: #fff1f1;
	color: #831c28;
}

.tc-checkout-alert--warning {
	border-color: rgba(219, 109, 38, 0.23);
	background: #fff6ed;
	color: #7c3a10;
}

.tc-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
	gap: clamp(26px, 3.5vw, 56px);
	align-items: start;
}

.tc-checkout-form {
	display: grid;
	gap: 18px;
}

.tc-checkout-panel {
	padding: clamp(22px, 2.5vw, 38px);
	border: 1px solid var(--tc-shop-line);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 16px 42px rgba(69, 19, 27, 0.055);
}

.tc-checkout-panel__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 29px;
}

.tc-checkout-panel__head > span {
	display: grid;
	flex: 0 0 auto;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: var(--tc-shop-burgundy);
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.82rem;
	place-items: center;
}

.tc-checkout-panel__head p {
	margin: 0 0 5px;
	color: var(--tc-shop-orange);
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.tc-checkout-panel__head h2 {
	margin: 0;
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 1.8vw, 2.15rem);
	font-weight: 400;
}

.tc-checkout-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 17px;
}

.tc-checkout-fields label {
	display: grid;
	gap: 8px;
}

.tc-checkout-fields label > span {
	color: rgba(63, 37, 40, 0.72);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.035em;
}

.tc-checkout-fields label > span small {
	margin-left: 4px;
	color: rgba(63, 37, 40, 0.42);
	font-weight: 500;
}

.tc-checkout-fields input,
.tc-checkout-fields textarea {
	width: 100%;
	min-height: 49px;
	padding: 12px 14px;
	border: 1px solid rgba(113, 31, 44, 0.17);
	border-radius: 10px;
	outline: none;
	background: #fffdfa;
	color: var(--tc-shop-ink);
	font: inherit;
	font-size: 0.82rem;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.tc-checkout-fields textarea {
	min-height: 92px;
	resize: vertical;
}

.tc-checkout-fields input:focus,
.tc-checkout-fields textarea:focus {
	border-color: var(--tc-shop-orange);
	box-shadow: 0 0 0 3px rgba(219, 109, 38, 0.12);
}

.tc-checkout-fields__wide {
	grid-column: 1 / -1;
}

.tc-shopier-assurance {
	display: flex;
	align-items: center;
	gap: 17px;
	padding: 18px;
	border: 1px solid rgba(62, 129, 92, 0.18);
	border-radius: 14px;
	background: rgba(232, 247, 239, 0.64);
}

.tc-shopier-assurance__lock {
	display: grid;
	flex: 0 0 auto;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: #377e57;
	color: #fff;
	place-items: center;
}

.tc-shopier-assurance__lock svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.tc-shopier-assurance strong {
	display: block;
	color: #23533a;
	font-size: 0.79rem;
}

.tc-shopier-assurance p {
	margin: 5px 0 0;
	color: rgba(35, 83, 58, 0.68);
	font-size: 0.69rem;
	line-height: 1.55;
}

.tc-checkout-consent {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin-top: 19px;
	color: rgba(63, 37, 40, 0.61);
	font-size: 0.68rem;
	line-height: 1.55;
}

.tc-checkout-consent input {
	flex: 0 0 auto;
	margin-top: 3px;
	accent-color: var(--tc-shop-burgundy);
}

.tc-checkout-consent a {
	color: var(--tc-shop-burgundy);
	font-weight: 700;
}

.tc-checkout-submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 62px;
	padding: 0 23px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(105deg, #53101c, var(--tc-shop-burgundy));
	box-shadow: 0 15px 35px rgba(78, 12, 24, 0.22);
	color: #fff;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.tc-checkout-submit:hover:not(:disabled),
.tc-checkout-submit:focus-visible:not(:disabled) {
	background: var(--tc-shop-orange);
	transform: translateY(-2px);
}

.tc-checkout-submit:disabled {
	opacity: 0.46;
	cursor: not-allowed;
}

.tc-checkout-form__message {
	margin: 0;
	color: #8b1c29;
	font-size: 0.72rem;
}

.tc-checkout-summary {
	position: sticky;
	top: 24px;
	overflow: hidden;
	padding: 31px;
	border-radius: 21px;
	background:
		radial-gradient(circle at 100% 0, rgba(219, 109, 38, 0.22), transparent 30%),
		linear-gradient(145deg, #3b0c14, #681b28);
	box-shadow: 0 24px 60px rgba(54, 8, 16, 0.22);
	color: #fff;
}

.tc-checkout-summary > p {
	margin: 0;
	color: #f0a56c;
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.17em;
}

.tc-checkout-summary > h2 {
	margin: 9px 0 25px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	font-weight: 400;
}

.tc-checkout-summary__items {
	display: grid;
	gap: 12px;
}

.tc-checkout-summary__loading {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.73rem;
}

.tc-checkout-summary__item {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.tc-checkout-summary__item img {
	display: block;
	width: 62px;
	height: 62px;
	border-radius: 9px;
	object-fit: cover;
}

.tc-checkout-summary__item div {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.tc-checkout-summary__item strong {
	overflow: hidden;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.98rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tc-checkout-summary__item span,
.tc-checkout-summary__item small {
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.59rem;
}

.tc-checkout-summary__item b {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.88rem;
	white-space: nowrap;
}

.tc-checkout-summary__totals {
	display: grid;
	gap: 0;
	margin-top: 24px;
}

.tc-checkout-summary__totals > div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.7rem;
}

.tc-checkout-summary__totals strong {
	color: #fff;
}

.tc-checkout-summary__totals .tc-checkout-summary__grand {
	align-items: flex-end;
	margin-top: 4px;
	color: #fff;
}

.tc-checkout-summary__grand strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.8rem;
}

.tc-checkout-summary__edit {
	display: inline-flex;
	margin-top: 23px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.tc-checkout-summary__edit:hover,
.tc-checkout-summary__edit:focus-visible {
	color: #fff;
}

.tc-checkout-summary__empty {
	display: grid;
	gap: 15px;
	padding: 23px 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.72rem;
}

.tc-checkout-summary__empty a {
	color: #f0a56c;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.tc-payment-result {
	width: min(820px, 100%);
	margin: 20px auto;
	padding: clamp(34px, 5vw, 70px);
	border: 1px solid var(--tc-shop-line);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 25px 70px rgba(69, 19, 27, 0.1);
	text-align: center;
}

.tc-payment-result__icon {
	display: grid;
	width: 68px;
	height: 68px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: #377e57;
	box-shadow: 0 13px 30px rgba(55, 126, 87, 0.22);
	color: #fff;
	font-size: 1.7rem;
	place-items: center;
}

.tc-payment-result--pending .tc-payment-result__icon {
	background: var(--tc-shop-orange);
}

.tc-payment-result > p:first-of-type {
	margin: 0 0 9px;
	color: #377e57;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.tc-payment-result h2 {
	margin: 0 auto 23px;
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 4.2rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1;
}

.tc-payment-result__number {
	color: rgba(63, 37, 40, 0.55);
	font-size: 0.72rem;
}

.tc-payment-result__summary {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin: 34px 0 0;
	padding: 22px 0;
	border-top: 1px solid var(--tc-shop-line);
	border-bottom: 1px solid var(--tc-shop-line);
	color: rgba(63, 37, 40, 0.58);
	font-size: 0.75rem;
}

.tc-payment-result__summary strong {
	color: var(--tc-shop-burgundy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
}

.tc-payment-result__note {
	margin: 24px auto 0;
	max-width: 610px;
	color: rgba(63, 37, 40, 0.62);
	font-size: 0.78rem;
	line-height: 1.75;
}

.tc-payment-result__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.tc-payment-result__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--tc-shop-line);
	border-radius: 999px;
	background: #fff;
	color: var(--tc-shop-burgundy);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.tc-shop-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 74px;
	padding: 18px max(36px, 5vw);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--tc-shop-deep);
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.64rem;
	letter-spacing: 0.045em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	white-space: nowrap !important;
}

@media (max-width: 1050px) {
	.tc-product-row {
		grid-template-columns: 32px 130px minmax(220px, 1fr) minmax(180px, 0.4fr);
		gap: 20px;
	}

	.tc-product-row__purchase {
		align-items: flex-end;
		flex-direction: column;
	}

	.tc-product-detail__grid {
		grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
		gap: 50px;
	}

	.tc-cart-layout {
		grid-template-columns: 1fr;
	}

	.tc-cart-summary {
		position: static;
	}

	.tc-checkout-layout {
		grid-template-columns: 1fr;
	}

	.tc-checkout-summary {
		position: static;
	}
}

@media (max-width: 782px) {
	.tc-shop-header {
		min-height: 104px;
		padding: 10px 16px;
	}

	.tc-shop-header__logo {
		height: 72px;
	}

	.tc-shop-header__logo-card {
		padding: 4px 8px;
		border-radius: 16px;
	}

	.tc-shop-header__logo img {
		height: 62px;
	}

	.tc-shop-header__nav {
		gap: 8px;
	}

	.tc-shop-header__nav > a:not(.tc-shop-cart-link) {
		display: none;
	}

	.tc-shop-cart-link {
		min-height: 42px;
		padding: 0 12px;
	}

	.tc-products-page,
	.tc-product-detail,
	.tc-cart-page,
	.tc-checkout-page {
		width: calc(100% - 28px);
	}

	.tc-checkout-page__hero {
		align-items: flex-start;
		flex-direction: column;
	}

	.tc-checkout-page__hero > span {
		line-height: 1.7;
	}

	.tc-checkout-fields {
		grid-template-columns: 1fr;
	}

	.tc-checkout-fields__wide {
		grid-column: auto;
	}

	.tc-checkout-summary {
		padding: 24px 18px;
	}

	.tc-payment-result__actions {
		flex-direction: column;
	}

	.tc-products-page {
		padding-top: 43px;
	}

	.tc-products-hero {
		align-items: flex-start;
		flex-direction: column;
	}

	.tc-product-row {
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 14px;
		padding: 13px;
	}

	.tc-product-row__number {
		display: none;
	}

	.tc-product-row__image {
		grid-column: 1;
		grid-row: 1;
	}

	.tc-product-row__info {
		grid-column: 2;
		grid-row: 1;
	}

	.tc-product-row__info h2 {
		font-size: 1.45rem;
	}

	.tc-product-row__purchase {
		display: grid;
		grid-column: 1 / -1;
		grid-template-columns: 1fr auto;
		align-items: center;
		padding-top: 13px;
		border-top: 1px solid var(--tc-shop-line);
	}

	.tc-add-cart--row {
		min-height: 42px;
	}

	.tc-product-detail {
		padding-top: 27px;
	}

	.tc-product-detail__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.tc-product-detail__visual {
		position: relative;
		top: auto;
	}

	.tc-product-detail__content {
		padding-top: 8px;
	}

	.tc-product-detail__head h1 {
		font-size: clamp(3.2rem, 18vw, 5.7rem);
	}

	.tc-product-detail__meta {
		gap: 28px;
		flex-direction: column;
	}

	.tc-product-detail__description {
		margin-top: 65px;
	}

	.tc-product-detail__actions {
		grid-template-columns: 1fr;
	}

	.tc-cart-item {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 14px;
	}

	.tc-cart-item__quantity {
		grid-column: 1;
		grid-row: 2;
	}

	.tc-cart-item__price {
		grid-column: 2;
		grid-row: 2;
	}

	.tc-shop-footer {
		align-items: flex-start;
		flex-direction: column;
		padding: 22px 16px;
	}
}


/* Public order lookup */
.tc-my-orders-page {
	padding-bottom: clamp(70px, 7vw, 120px);
}

.tc-my-orders-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: clamp(22px, 3vw, 42px);
	align-items: start;
}

.tc-my-orders-card {
	border: 1px solid var(--tc-shop-line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 20px 55px rgba(69, 19, 27, 0.08);
}

.tc-my-orders-lookup,
.tc-my-orders-result,
.tc-my-orders-note {
	padding: clamp(26px, 3vw, 46px);
}

.tc-my-orders-kicker,
.tc-my-orders-result__head p {
	margin: 0 0 8px;
	color: var(--tc-shop-orange);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.tc-my-orders-lookup > h2,
.tc-my-orders-result__head h2 {
	margin: 0;
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3.2vw, 4rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
}

.tc-my-orders-intro,
.tc-my-orders-help,
.tc-my-orders-note p,
.tc-my-orders-address p {
	color: rgba(63, 37, 40, 0.62);
	font-size: 0.8rem;
	line-height: 1.75;
}

.tc-my-orders-intro {
	max-width: 670px;
	margin: 18px 0 26px;
}

.tc-my-orders-form {
	display: grid;
	gap: 14px;
}

.tc-my-orders-form label {
	display: grid;
	gap: 8px;
}

.tc-my-orders-form label > span {
	color: var(--tc-shop-burgundy);
	font-size: 0.67rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tc-my-orders-form input {
	width: 100%;
	min-height: 54px;
	padding: 0 16px;
	border: 1px solid rgba(113, 31, 44, 0.2);
	border-radius: 12px;
	outline: 0;
	background: #fff;
	color: var(--tc-shop-ink);
	font: inherit;
}

.tc-my-orders-form input:focus {
	border-color: var(--tc-shop-orange);
	box-shadow: 0 0 0 3px rgba(219, 109, 38, 0.12);
}

.tc-my-orders-form button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 56px;
	margin-top: 4px;
	padding: 0 20px;
	border: 0;
	border-radius: 12px;
	background: var(--tc-shop-burgundy);
	color: #fff;
	cursor: pointer;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.tc-my-orders-form button:hover,
.tc-my-orders-form button:focus-visible {
	background: var(--tc-shop-deep);
}

.tc-my-orders-help {
	margin: 18px 0 0;
	font-size: 0.7rem;
}

.tc-my-orders-note {
	background: linear-gradient(150deg, rgba(113,31,44,.98), rgba(59,12,20,.99));
	color: #fff;
}

.tc-my-orders-note > span {
	display: inline-grid;
	width: 34px;
	height: 34px;
	margin-top: 2px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 50%;
	place-items: center;
	color: var(--tc-shop-orange);
	font-size: .65rem;
	font-weight: 900;
}

.tc-my-orders-note h3 {
	margin: 12px 0 6px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.55rem;
	font-weight: 400;
}

.tc-my-orders-note p {
	margin: 0 0 28px;
	color: rgba(255,255,255,.68);
}

.tc-my-orders-note p:last-child {
	margin-bottom: 0;
}

.tc-my-orders-result {
	grid-column: 2;
}

.tc-my-orders-result__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--tc-shop-line);
}

.tc-my-orders-result__head h2 {
	font-size: clamp(1.8rem, 2.5vw, 3rem);
}

.tc-my-orders-status {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(219, 109, 38, .12);
	color: #a34a15;
	font-size: .62rem;
	font-weight: 900;
	letter-spacing: .05em;
	white-space: nowrap;
}

.tc-my-orders-status--paid {
	background: rgba(40, 132, 77, .11);
	color: #23713f;
}

.tc-my-orders-status--failed {
	background: rgba(173, 35, 45, .1);
	color: #9d1f2a;
}

.tc-my-orders-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 24px 0;
	border-bottom: 1px solid var(--tc-shop-line);
}

.tc-my-orders-meta div {
	display: grid;
	gap: 5px;
}

.tc-my-orders-meta span,
.tc-my-orders-product span {
	color: rgba(63,37,40,.48);
	font-size: .66rem;
}

.tc-my-orders-meta strong {
	color: var(--tc-shop-deep);
	font-size: .82rem;
}

.tc-my-orders-products,
.tc-my-orders-address {
	padding-top: 22px;
}

.tc-my-orders-products h3,
.tc-my-orders-address h3 {
	margin: 0 0 14px;
	color: var(--tc-shop-burgundy);
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.tc-my-orders-product {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(113,31,44,.1);
}

.tc-my-orders-product > div {
	display: grid;
	gap: 4px;
}

.tc-my-orders-product > div:last-child {
	text-align: right;
}

.tc-my-orders-product strong {
	color: var(--tc-shop-deep);
	font-size: .8rem;
}

.tc-my-orders-address p {
	margin: 0;
}

@media (max-width: 900px) {
	.tc-my-orders-layout {
		grid-template-columns: 1fr;
	}

	.tc-my-orders-result {
		grid-column: auto;
	}
}

@media (max-width: 560px) {
	.tc-my-orders-result__head {
		flex-direction: column;
	}

	.tc-my-orders-meta {
		grid-template-columns: 1fr;
	}
}

/* Dual payment selector: Havale/EFT + Shopier */
.tc-payment-methods {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 18px;
}

.tc-payment-method {
	position: relative;
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	gap: 13px;
	min-height: 118px;
	padding: 17px;
	border: 1px solid rgba(113, 31, 44, 0.16);
	border-radius: 16px;
	background: #fffdfa;
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tc-payment-method:hover:not(.is-disabled) {
	border-color: rgba(219, 109, 38, 0.48);
	transform: translateY(-1px);
}

.tc-payment-method:has(input:checked) {
	border-color: var(--tc-shop-orange);
	box-shadow: 0 0 0 3px rgba(219, 109, 38, 0.10);
}

.tc-payment-method > input {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var(--tc-shop-burgundy);
}

.tc-payment-method__icon {
	display: grid;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(83, 16, 28, 0.08);
	color: var(--tc-shop-burgundy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	font-weight: 700;
	place-items: center;
}

.tc-payment-method__icon--card {
	font-family: system-ui, sans-serif;
	font-size: 1.1rem;
}

.tc-payment-method__body {
	display: grid;
	gap: 4px;
}

.tc-payment-method__body small {
	color: var(--tc-shop-orange);
	font-size: 0.52rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.tc-payment-method__body strong {
	color: var(--tc-shop-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.02rem;
	font-weight: 600;
}

.tc-payment-method__body em {
	color: rgba(63, 37, 40, 0.58);
	font-size: 0.64rem;
	font-style: normal;
	line-height: 1.45;
}

.tc-payment-method > b {
	align-self: start;
	padding: 5px 7px;
	border-radius: 999px;
	background: rgba(55, 126, 87, 0.10);
	color: #2f714e;
	font-size: 0.5rem;
	letter-spacing: 0.08em;
}

.tc-payment-method.is-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.tc-payment-method.is-disabled > b {
	background: rgba(120, 120, 120, 0.10);
	color: #777;
}

.tc-bank-payment-box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 22px 0 4px;
	padding: 18px;
	border: 1px solid rgba(219, 109, 38, 0.24);
	border-radius: 15px;
	background: #fff8f0;
	text-align: left;
}

.tc-bank-payment-box > div {
	display: grid;
	gap: 5px;
	padding: 11px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.72);
}

.tc-bank-payment-box__iban,
.tc-bank-payment-box__note {
	grid-column: 1 / -1;
}

.tc-bank-payment-box small {
	color: var(--tc-shop-orange);
	font-size: 0.5rem;
	font-weight: 900;
	letter-spacing: 0.11em;
}

.tc-bank-payment-box strong {
	color: var(--tc-shop-deep);
	font-size: 0.82rem;
	word-break: break-word;
}

.tc-bank-payment-box__iban strong {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: clamp(0.78rem, 1.35vw, 1rem);
	letter-spacing: 0.035em;
}

.tc-bank-payment-box p {
	margin: 1px 0 0;
	color: rgba(63, 37, 40, 0.55);
	font-size: 0.64rem;
	line-height: 1.45;
}

.tc-my-orders-status--awaiting_transfer,
.tc-my-orders-status--redirected {
	background: #fff1df;
	color: #8a4a14;
}

@media (max-width: 760px) {
	.tc-payment-methods,
	.tc-bank-payment-box {
		grid-template-columns: 1fr;
	}
	.tc-bank-payment-box__iban,
	.tc-bank-payment-box__note {
		grid-column: auto;
	}
	.tc-payment-method {
		grid-template-columns: auto auto 1fr;
	}
	.tc-payment-method > b {
		grid-column: 3;
		justify-self: start;
	}
}

/* v3.2.0 catalog harmonization */
:root {
	--tc-shop-burgundy: #4f2495;
	--tc-shop-deep: #21104f;
	--tc-shop-orange: #ef4d90;
	--tc-shop-cream: #fff8ee;
	--tc-shop-ink: #20183f;
	--tc-shop-line: rgba(75, 42, 130, .14);
}
.tc-catalog-shell { background: linear-gradient(180deg, #fff8ee, #fffdf8); color: var(--tc-shop-ink); }
.tc-shop-header {
	background:
		radial-gradient(circle at 14% -10%, rgba(255, 185, 63, .20), transparent 28%),
		linear-gradient(135deg, #21104f, #371a7b 54%, #5a2fb3);
	box-shadow: 0 18px 44px rgba(30,16,79,.18);
}
.tc-shop-header__logo-card { border-radius: 44% 56% 51% 49% / 47% 42% 58% 53%; }
.tc-shop-header__nav > a { color: rgba(255,255,255,.82); }
.tc-shop-cart-link { background: rgba(255,255,255,.1); }
.tc-shop-cart-link b { background: #ef4d90; }
.tc-products-hero h1,
.tc-cart-page__hero h1,
.tc-product-row__info h2 { font-family: "Nunito", Inter, sans-serif; font-weight: 950; color: #21104f; }
.tc-product-row { border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 16px 38px rgba(30,16,79,.08); }
.tc-add-cart { background: linear-gradient(135deg, #4f2495, #ef4d90) !important; color: #fff !important; }
.tc-shop-footer { background: #21104f; color: rgba(255,255,255,.78); }

/* v3.2.19 — mağaza menüsü, pembe ödeme/sepet özeti düzeni */
.tc-shop-header__nav {
	margin-left: auto;
	justify-content: flex-end;
}
.tc-shop-header__nav .tc-shop-cart-link {
	order: 99;
}
@media (max-width: 782px) {
	.tc-shop-header {
		align-items: center;
		gap: 10px;
	}
	.tc-shop-header__nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 8px;
	}
	.tc-shop-header__nav > a:not(.tc-shop-cart-link) {
		display: inline-flex;
	}
	.tc-shop-header__nav > a {
		font-size: .56rem;
		letter-spacing: .06em;
	}
	.tc-shop-cart-link {
		min-height: 36px;
		padding: 0 10px;
	}
	.tc-shop-cart-link svg {
		width: 18px;
		height: 18px;
	}
}

.tc-payment-method {
	border: 1px solid rgba(239, 77, 144, .22);
	background:
		radial-gradient(circle at 100% 0%, rgba(255,255,255,.28), transparent 32%),
		linear-gradient(135deg, #fff2f8 0%, #ffddec 44%, #f5a9ca 100%);
	box-shadow: 0 16px 38px rgba(198, 42, 112, .13);
}
.tc-payment-method:hover:not(.is-disabled) {
	border-color: rgba(239, 77, 144, .52);
	box-shadow: 0 20px 48px rgba(198, 42, 112, .18);
}
.tc-payment-method:has(input:checked) {
	border-color: #ef4d90;
	background:
		radial-gradient(circle at 100% 0%, rgba(255,255,255,.34), transparent 34%),
		linear-gradient(135deg, #ffddec 0%, #f79ac1 48%, #ef4d90 100%);
	box-shadow: 0 0 0 3px rgba(239, 77, 144, .14), 0 24px 56px rgba(198, 42, 112, .24);
}
.tc-payment-method > input {
	accent-color: #ef4d90;
}
.tc-payment-method__icon {
	background: rgba(255, 255, 255, .58);
	color: #b92f6e;
	box-shadow: inset 0 0 0 1px rgba(239, 77, 144, .18);
}
.tc-payment-method__body small {
	color: #b92f6e;
}
.tc-payment-method__body strong {
	color: #541435;
}
.tc-payment-method__body em {
	color: rgba(84, 20, 53, .67);
}
.tc-payment-method > b {
	background: rgba(255,255,255,.62);
	color: #9d235d;
}
.tc-payment-method.is-disabled {
	filter: grayscale(.25);
}

.tc-cart-summary,
.tc-checkout-summary {
	background:
		radial-gradient(circle at 100% 0%, rgba(255,255,255,.22), transparent 32%),
		radial-gradient(circle at 0% 100%, rgba(255,223,132,.22), transparent 34%),
		linear-gradient(145deg, #8c2258 0%, #d83f82 48%, #ef78a7 100%) !important;
	box-shadow: 0 24px 62px rgba(198, 42, 112, .26) !important;
	color: #fff;
}
.tc-cart-summary > span,
.tc-checkout-summary > p {
	color: #ffe3ef;
}
.tc-cart-summary__row,
.tc-checkout-summary__totals > div,
.tc-checkout-summary__item {
	border-color: rgba(255,255,255,.18);
	color: rgba(255,255,255,.76);
}
.tc-cart-summary__note,
.tc-checkout-summary__item span,
.tc-checkout-summary__item small,
.tc-checkout-summary__loading,
.tc-checkout-summary__edit {
	color: rgba(255,255,255,.76);
}
.tc-cart-summary__checkout {
	background: #fff;
	color: #b92f6e;
	box-shadow: 0 16px 34px rgba(84, 20, 53, .18);
}
.tc-cart-summary__checkout:hover,
.tc-cart-summary__checkout:focus-visible {
	background: #ffe3ef;
	color: #8c2258;
}
.tc-checkout-summary__edit:hover,
.tc-checkout-summary__edit:focus-visible {
	color: #fff;
}

/* v3.2.21 — Siparişlerim sağ bilgi kutusu pembe dolgulu */
.tc-my-orders-note {
	border: 1px solid rgba(239, 77, 144, .22) !important;
	background:
		radial-gradient(circle at 100% 0%, rgba(255,255,255,.24), transparent 34%),
		radial-gradient(circle at 0% 100%, rgba(255,223,132,.18), transparent 34%),
		linear-gradient(145deg, #8c2258 0%, #d83f82 50%, #ef78a7 100%) !important;
	box-shadow: 0 24px 62px rgba(198, 42, 112, .26) !important;
	color: #fff !important;
}
.tc-my-orders-note > span {
	border-color: rgba(255,255,255,.30) !important;
	background: rgba(255,255,255,.18) !important;
	color: #ffe3ef !important;
}
.tc-my-orders-note h3 {
	color: #fff !important;
}
.tc-my-orders-note p {
	color: rgba(255,255,255,.78) !important;
}


/* v3.2.23 — Ürün detayında Favori / Okudum butonları */
.tc-product-flags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 15px;
}
.tc-product-flag-form {
	margin: 0;
}
.tc-product-flag-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 0 23px;
	border: 1px solid rgba(113, 31, 44, .16);
	border-radius: 999px;
	background: rgba(255,255,255,.72);
	box-shadow: 0 12px 28px rgba(54, 8, 16, .07);
	color: var(--tc-shop-burgundy);
	font: inherit;
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.tc-product-flag-btn span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(239, 111, 154, .13);
	color: #c63c73;
	font-size: .9rem;
	line-height: 1;
}
.tc-product-flag-btn:hover,
.tc-product-flag-btn:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(239, 111, 154, .42);
	background: #fff;
	box-shadow: 0 18px 38px rgba(54, 8, 16, .11);
}
.tc-product-flag-btn.is-active {
	border-color: rgba(239, 111, 154, .58);
	background: linear-gradient(135deg, #ef6f9a, #d84d85);
	box-shadow: 0 18px 38px rgba(216, 77, 133, .22);
	color: #fff;
}
.tc-product-flag-btn.is-active span {
	background: rgba(255,255,255,.22);
	color: #fff;
}
@media (max-width: 560px) {
	.tc-product-flags,
	.tc-product-flag-form,
	.tc-product-flag-btn {
		width: 100%;
	}
}


/* v3.2.27 — Ürünler / Sepetim / Siparişlerim uçuşan felsefe dekoru */
.tc-shop-hero--decorated {
	position: relative;
	overflow: hidden;
	min-height: clamp(190px, 18vw, 280px);
	padding: clamp(28px, 3vw, 48px) clamp(22px, 3.2vw, 50px) 28px;
	border: 1px solid rgba(104, 44, 91, .11);
	border-radius: 30px;
	background:
		radial-gradient(circle at 12% 18%, rgba(243, 200, 97, .20), transparent 25%),
		radial-gradient(circle at 88% 18%, rgba(239, 111, 154, .15), transparent 25%),
		radial-gradient(circle at 73% 80%, rgba(107, 211, 176, .12), transparent 26%),
		rgba(255, 255, 255, .68);
	box-shadow: 0 22px 58px rgba(69, 19, 27, .055);
}
.tc-shop-hero--decorated > *:not(.tc-shop-hero-decor) {
	position: relative;
	z-index: 2;
}
.tc-shop-hero-decor {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}
.tc-shop-word {
	position: absolute;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 800;
	letter-spacing: .045em;
	text-transform: uppercase;
	color: rgba(104, 44, 91, .115);
	animation: tcShopWordFloat327 28s ease-in-out infinite alternate;
	white-space: nowrap;
}
.tc-shop-word:nth-child(1){ left: 5%; top: 18%; font-size: 31px; transform: rotate(-9deg); animation-delay: -1s; }
.tc-shop-word:nth-child(2){ left: 18%; top: 62%; font-size: 19px; transform: rotate(7deg); animation-delay: -4s; }
.tc-shop-word:nth-child(3){ left: 30%; top: 13%; font-size: 24px; transform: rotate(10deg); animation-delay: -7s; }
.tc-shop-word:nth-child(4){ left: 43%; top: 52%; font-size: 28px; transform: rotate(-6deg); animation-delay: -9s; }
.tc-shop-word:nth-child(5){ left: 57%; top: 23%; font-size: 22px; transform: rotate(5deg); animation-delay: -12s; }
.tc-shop-word:nth-child(6){ left: 69%; top: 65%; font-size: 20px; transform: rotate(-12deg); animation-delay: -14s; }
.tc-shop-word:nth-child(7){ left: 76%; top: 16%; font-size: 30px; transform: rotate(8deg); animation-delay: -17s; }
.tc-shop-word:nth-child(8){ left: 86%; top: 46%; font-size: 19px; transform: rotate(-5deg); animation-delay: -20s; }
.tc-shop-word:nth-child(9){ left: 12%; top: 79%; font-size: 23px; transform: rotate(-3deg); animation-delay: -23s; }
.tc-shop-word:nth-child(10){ left: 52%; top: 78%; font-size: 24px; transform: rotate(9deg); animation-delay: -26s; }
.tc-shop-float {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(104, 44, 91, .30);
	opacity: .72;
	filter: drop-shadow(0 2px 8px rgba(69, 19, 27, .10));
	animation: tcShopShapeFloat327 19s ease-in-out infinite alternate;
}
.tc-shop-float:nth-of-type(3n+1) {
	border-radius: 50%;
	border-color: rgba(107, 211, 176, .46);
	background: rgba(107, 211, 176, .055);
}
.tc-shop-float:nth-of-type(3n+2) {
	border-color: rgba(239, 111, 154, .46);
	background: rgba(239, 111, 154, .052);
	transform: rotate(18deg);
}
.tc-shop-float:nth-of-type(3n) {
	width: 0;
	height: 0;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-bottom: 19px solid rgba(243, 200, 97, .50);
	border-top: 0;
}
.tc-shop-float--1 { left: 4%; top: 16%; animation-delay: -1s; }
.tc-shop-float--2 { left: 10%; top: 48%; animation-delay: -2s; }
.tc-shop-float--3 { left: 17%; top: 31%; animation-delay: -3s; }
.tc-shop-float--4 { left: 25%; top: 76%; animation-delay: -4s; }
.tc-shop-float--5 { left: 33%; top: 38%; animation-delay: -5s; }
.tc-shop-float--6 { left: 41%; top: 14%; animation-delay: -6s; }
.tc-shop-float--7 { left: 47%; top: 66%; animation-delay: -7s; }
.tc-shop-float--8 { left: 55%; top: 43%; animation-delay: -8s; }
.tc-shop-float--9 { left: 62%; top: 18%; animation-delay: -9s; }
.tc-shop-float--10 { left: 68%; top: 82%; animation-delay: -10s; }
.tc-shop-float--11 { left: 72%; top: 36%; animation-delay: -11s; }
.tc-shop-float--12 { left: 79%; top: 62%; animation-delay: -12s; }
.tc-shop-float--13 { left: 84%; top: 21%; animation-delay: -13s; }
.tc-shop-float--14 { left: 90%; top: 73%; animation-delay: -14s; }
.tc-shop-float--15 { left: 94%; top: 42%; animation-delay: -15s; }
.tc-shop-float--16 { left: 6%; top: 82%; animation-delay: -16s; }
.tc-shop-float--17 { left: 37%; top: 82%; animation-delay: -17s; }
.tc-shop-float--18 { left: 58%; top: 70%; animation-delay: -18s; }
.tc-shop-float--19 { left: 73%; top: 12%; animation-delay: -19s; }
.tc-shop-float--20 { left: 96%; top: 12%; animation-delay: -20s; }
@keyframes tcShopWordFloat327 {
	0% { translate: 0 0; opacity: .78; }
	100% { translate: 15px -10px; opacity: .42; }
}
@keyframes tcShopShapeFloat327 {
	0% { transform: translate3d(0,0,0) rotate(0deg) scale(1); opacity: .48; }
	50% { transform: translate3d(-7px,-16px,0) rotate(18deg) scale(1.08); opacity: .92; }
	100% { transform: translate3d(22px,-24px,0) rotate(36deg) scale(1.04); opacity: .62; }
}
@media (max-width: 760px) {
	.tc-shop-hero--decorated {
		min-height: 210px;
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}
	.tc-shop-word { font-size: 18px !important; }
	.tc-shop-float { opacity: .55; transform: scale(.85); }
}

/* v3.2.28 — Uçuşan şekiller ve silik kavramlar sadece üstteki mor mağaza alanında */
.tc-shop-header--decorated {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.tc-shop-header--decorated > *:not(.tc-shop-hero-decor) {
	position: relative;
	z-index: 2;
}
.tc-shop-header--decorated .tc-shop-hero-decor {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}
.tc-shop-header--decorated .tc-shop-word {
	color: rgba(255,255,255,.18);
	text-shadow: none;
}
.tc-shop-header--decorated .tc-shop-float {
	border-color: rgba(255,255,255,.30);
	filter: drop-shadow(0 2px 8px rgba(17,6,34,.18));
}
.tc-shop-header--decorated .tc-shop-float:nth-of-type(3n+1) {
	border-color: rgba(107,211,176,.50);
	background: rgba(107,211,176,.055);
}
.tc-shop-header--decorated .tc-shop-float:nth-of-type(3n+2) {
	border-color: rgba(239,111,154,.50);
	background: rgba(239,111,154,.055);
}
.tc-shop-header--decorated .tc-shop-float:nth-of-type(3n) {
	border-bottom-color: rgba(255,223,132,.48);
}
.tc-products-hero,
.tc-cart-page__hero,
.tc-checkout-page__hero {
	min-height: 0;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}


/* v3.2.29 — katalog ürün adları ve mor alan tipografisi */
.tc-products-hero h1,
.tc-cart-page__hero h1,
.tc-product-detail__head h1,
.tc-order-hero h1,
.tc-checkout-hero h1 {
    font-family: "Fraunces", "Georgia Pro", Georgia, serif !important;
    font-weight: 900 !important;
    letter-spacing: -.052em;
    line-height: .9;
}

.tc-product-row__info h2,
.tc-product-detail__head h1,
.tc-cart-item h3,
.tc-order-card h3,
.tc-order-row h3 {
    font-family: "Nunito", Inter, "Segoe UI", Arial, sans-serif !important;
    font-weight: 950 !important;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.tc-product-row__info h2 {
    font-size: clamp(1.45rem, 2vw, 2.6rem);
}

.tc-product-row__author,
.tc-product-row__publisher,
.tc-product-detail__head > p,
.tc-products-hero p,
.tc-cart-page__hero > p {
    font-family: "Nunito", Inter, "Segoe UI", Arial, sans-serif;
}

.tc-shop-header {
    background:
        radial-gradient(circle at 14% -10%, rgba(255, 185, 63, .18), transparent 27%),
        radial-gradient(circle at 88% 18%, rgba(239, 77, 144, .14), transparent 26%),
        linear-gradient(115deg, #25104d, #4b1f79 56%, #642987);
}

.tc-shop-header .tc-catalog-wall {
    inset: 0;
    opacity: .25;
}

.tc-shop-header .tc-catalog-wall span {
    color: rgba(255,255,255,.22);
}

/* v3.2.40 - stronger product search */
.tc-product-search { margin: -28px 0 34px; padding: 18px; border: 1px solid rgba(117, 43, 74, .14); border-radius: 24px; background: rgba(255,255,255,.76); box-shadow: 0 18px 44px rgba(85, 26, 44, .07); }
.tc-product-search label { display: block; margin: 0 0 10px; color: rgba(36,20,71,.62); font-family: "Nunito", Inter, "Segoe UI", Arial, sans-serif; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tc-product-search__bar { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 8px 8px 8px 17px; border-radius: 999px; background: #fff; border: 1px solid rgba(117,43,74,.13); }
.tc-product-search__bar > span { color: #ef4d90; font-size: 1.25rem; font-weight: 900; line-height: 1; }
.tc-product-search input[type="search"] { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #241447; font: 800 1rem/1.2 "Nunito", Inter, "Segoe UI", Arial, sans-serif; }
.tc-product-search input[type="search"]::placeholder { color: rgba(36,20,71,.38); }
.tc-product-search button { min-height: 44px; padding: 0 22px; border: 0; border-radius: 999px; background: linear-gradient(135deg, #6426a7, #ef4d90); color: #fff; font-family: "Nunito", Inter, "Segoe UI", Arial, sans-serif; font-size: .76rem; font-weight: 1000; letter-spacing: .1em; cursor: pointer; box-shadow: 0 12px 26px rgba(126,47,139,.22); }
.tc-product-search__result { margin: 12px 4px 0; color: rgba(36,20,71,.68); font-family: "Nunito", Inter, "Segoe UI", Arial, sans-serif; font-size: .92rem; font-weight: 800; }
.tc-product-search__result a { color: #ef4d90; font-weight: 1000; text-decoration: none; }
@media (max-width: 640px) { .tc-product-search { margin-top: -12px; padding: 14px; } .tc-product-search__bar { grid-template-columns: 1fr; border-radius: 22px; padding: 14px; } .tc-product-search__bar > span { display: none; } .tc-product-search button { width: 100%; } }

/* v3.2.56 — Bağış & Felsefe & Burs bakiye sistemi */
.tc-wallet-chip{display:inline-flex;align-items:center;gap:.55rem;padding:.55rem .78rem;border-radius:999px;background:linear-gradient(135deg,rgba(69,45,129,.94),rgba(164,72,146,.88));color:#fff!important;text-decoration:none!important;box-shadow:0 14px 30px rgba(47,28,91,.22);border:1px solid rgba(255,255,255,.25);white-space:nowrap;font-family:Manrope,system-ui,sans-serif;line-height:1}
.tc-wallet-chip span{display:block;font-size:.62rem;letter-spacing:.08em;text-transform:uppercase;opacity:.82;font-weight:800}
.tc-wallet-chip strong{display:block;font-size:.88rem;font-weight:900;color:#fff}.tc-wallet-chip--guest{background:linear-gradient(135deg,#194a7a,#1e8a8a)}
.tc-ifop-menu-wrap{gap:.65rem}.tc-wallet-page-bar{padding:12px 18px;background:linear-gradient(135deg,#fff7e2,#f8ecff);border-bottom:1px solid rgba(77,48,122,.12)}
.tc-wallet-page-bar__inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:flex-end;gap:14px}.tc-wallet-page-bar__inner>span{font:800 .74rem/1 Manrope,system-ui,sans-serif;letter-spacing:.08em;text-transform:uppercase;color:#6a4b7a}
.tc-donation-main{width:min(1180px,calc(100% - 28px));margin:0 auto;padding:42px 0 64px;display:flex;flex-direction:column;gap:28px}.tc-donation-hero__copy span{display:block;max-width:720px;margin-top:12px;color:rgba(255,255,255,.86);font:700 1rem/1.6 Manrope,system-ui,sans-serif}
.tc-donation-explain{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:22px;align-items:stretch}.tc-donation-explain>div,.tc-donation-explain>aside,.tc-donation-login,.tc-donation-bank,.tc-donation-thanks,.tc-donation-history__col,.tc-donation-services article,.tc-donation-balance-card{background:rgba(255,255,255,.94);border:1px solid rgba(77,48,122,.12);border-radius:30px;box-shadow:0 24px 60px rgba(31,23,62,.09)}
.tc-donation-explain>div{padding:34px}.tc-donation-eyebrow,.tc-donation-bank p{margin:0 0 8px;font:900 .75rem/1 Manrope,system-ui,sans-serif;letter-spacing:.14em;text-transform:uppercase;color:#a76420}.tc-donation-explain h2,.tc-donation-bank h2,.tc-donation-login h2,.tc-donation-thanks h2{margin:0;color:#2f2157;font:900 clamp(1.7rem,3vw,2.7rem)/1.05 Fraunces,serif}.tc-donation-explain p,.tc-donation-bank span,.tc-donation-login span,.tc-donation-services p,.tc-donation-thanks p{color:#5e5871;font:700 .98rem/1.7 Manrope,system-ui,sans-serif}.tc-donation-explain>aside{padding:28px;background:linear-gradient(155deg,#4b2f7d,#a84a91);color:#fff}.tc-donation-explain aside span,.tc-donation-explain aside strong{display:block}.tc-donation-explain aside span{font:900 .72rem/1 Manrope,system-ui,sans-serif;letter-spacing:.16em;text-transform:uppercase;opacity:.82}.tc-donation-explain aside strong{margin:12px 0;font:900 1.55rem/1.1 Fraunces,serif}.tc-donation-explain aside p{color:rgba(255,255,255,.88)}
.tc-donation-login{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,420px);gap:22px;padding:30px;background:linear-gradient(135deg,#fff,#fff8e8)}.tc-donation-login__text p{margin:0 0 8px;font:900 .75rem/1 Manrope,system-ui,sans-serif;letter-spacing:.14em;color:#8b5a21}.tc-donation-login__form{background:#fff;border-radius:24px;padding:22px;border:1px solid rgba(77,48,122,.12)}.tc-donation-login__form a{font-weight:900;color:#6c3ea3;text-decoration:none}
.tc-donation-dashboard{display:grid;grid-template-columns:1.25fr repeat(3,1fr);gap:16px}.tc-donation-balance-card{padding:24px}.tc-donation-balance-card span{display:block;font:900 .72rem/1 Manrope,system-ui,sans-serif;letter-spacing:.12em;text-transform:uppercase;color:#7b6d8d}.tc-donation-balance-card strong{display:block;margin:10px 0;color:#332258;font:900 clamp(1.5rem,2vw,2.3rem)/1 Fraunces,serif}.tc-donation-balance-card small{color:#746b82;font-weight:800}.tc-donation-balance-card--main{background:linear-gradient(135deg,#2f2157,#6b3d98);color:#fff}.tc-donation-balance-card--main span,.tc-donation-balance-card--main small,.tc-donation-balance-card--main strong{color:#fff}.tc-donation-balance-card--burs{background:linear-gradient(135deg,#fff2c9,#fff)}
.tc-donation-services__grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.tc-donation-services article{padding:22px}.tc-donation-services article span{display:inline-grid;place-items:center;width:38px;height:38px;border-radius:14px;background:#f0e7ff;color:#5b348a;font:900 .84rem/1 Manrope,system-ui,sans-serif}.tc-donation-services h3{margin:16px 0 8px;color:#2f2157;font:900 1.12rem/1.15 Fraunces,serif}.tc-donation-services p{font-size:.88rem;line-height:1.55}
.tc-donation-bank{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,520px);gap:22px;padding:30px;background:linear-gradient(135deg,#fbf7ff,#fff)}.tc-donation-bank ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}.tc-donation-bank li{display:flex;justify-content:space-between;gap:14px;padding:14px 16px;border-radius:16px;background:rgba(255,255,255,.8);border:1px solid rgba(77,48,122,.1)}.tc-donation-bank li span{font-size:.75rem;text-transform:uppercase;letter-spacing:.12em;color:#7c6a87}.tc-donation-bank li strong{font:900 .92rem/1.35 Manrope,system-ui,sans-serif;color:#2f2157;text-align:right;overflow-wrap:anywhere}
.tc-donation-history{display:grid;grid-template-columns:1fr 1fr;gap:20px}.tc-donation-history__col{padding:26px}.tc-donation-history h2{margin:0 0 16px;color:#2f2157;font:900 1.5rem/1.1 Fraunces,serif}.tc-donation-table-wrap{overflow:auto;border-radius:18px;border:1px solid rgba(77,48,122,.12)}.tc-donation-table-wrap table{width:100%;border-collapse:collapse;background:#fff}.tc-donation-table-wrap th,.tc-donation-table-wrap td{padding:13px 14px;text-align:left;border-bottom:1px solid rgba(77,48,122,.08);font:750 .86rem/1.35 Manrope,system-ui,sans-serif}.tc-donation-table-wrap th{background:#f7f1ff;color:#50326f;text-transform:uppercase;letter-spacing:.08em;font-size:.7rem}.tc-donation-empty{margin:0;padding:18px;border-radius:18px;background:#f8f3ff;color:#675d78;font-weight:800}
.tc-donation-thanks{text-align:center;padding:34px;background:linear-gradient(135deg,#2f2157,#4a8b88);color:#fff}.tc-donation-thanks span{display:inline-block;margin-bottom:8px;font:900 .76rem/1 Manrope,system-ui,sans-serif;letter-spacing:.18em;text-transform:uppercase;color:#ffe2a3}.tc-donation-thanks h2{color:#fff}.tc-donation-thanks p{max-width:720px;margin:14px auto 0;color:rgba(255,255,255,.86)}
@media(max-width:960px){.tc-donation-explain,.tc-donation-login,.tc-donation-bank,.tc-donation-history{grid-template-columns:1fr}.tc-donation-dashboard{grid-template-columns:1fr 1fr}.tc-donation-services__grid{grid-template-columns:1fr 1fr}.tc-wallet-page-bar__inner{justify-content:space-between}.tc-wallet-chip{padding:.48rem .62rem;max-width:170px}.tc-wallet-chip span{display:block;font-size:.54rem;letter-spacing:.06em}.tc-wallet-chip strong{font-size:.8rem}}
@media(max-width:620px){.tc-donation-main{width:min(100% - 18px,1180px);padding:28px 0}.tc-donation-dashboard,.tc-donation-services__grid{grid-template-columns:1fr}.tc-donation-explain>div,.tc-donation-explain>aside,.tc-donation-login,.tc-donation-bank,.tc-donation-history__col,.tc-donation-thanks{padding:22px;border-radius:22px}.tc-wallet-page-bar__inner>span{display:none}.tc-wallet-page-bar__inner{justify-content:center}.tc-donation-bank li{display:block}.tc-donation-bank li strong{text-align:left;display:block;margin-top:5px}.tc-donation-table-wrap th,.tc-donation-table-wrap td{white-space:nowrap}}
.tc-min-donation-label{display:block;margin-bottom:4px;font:900 .62rem/1 Manrope,system-ui,sans-serif;letter-spacing:.09em;text-transform:uppercase;color:#8d6b2a}

/* v3.2.57 — maliyet / kargo / hizmet / burs */
.tc-product-allocation{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:12px 0 14px}.tc-product-allocation span{display:flex;flex-direction:column;gap:3px;padding:9px 10px;border:1px solid rgba(17,65,67,.13);border-radius:8px;background:#f8fbfa}.tc-product-allocation small{font-size:9px;letter-spacing:.04em;color:#6c7d7c}.tc-product-allocation b{font-size:13px;color:#123f40}.tc-balance-payment-box{padding:14px;border:1px solid rgba(17,65,67,.16);border-radius:12px;background:#f6faf9}.tc-balance-payment-box strong{display:block;font-size:17px;color:#123f40}.tc-balance-payment-box p{margin:5px 0 0;color:#647574;font-size:11px}.tc-balance-payment-box a{display:inline-flex;margin-top:9px;padding:8px 11px;border-radius:7px;background:#123f40;color:#fff;text-decoration:none;font-size:10px;font-weight:800}@media(max-width:560px){.tc-product-allocation{grid-template-columns:1fr 1fr}}


/* v3.2.71 — Harcama durumu / iade ve canlı burs toplamı */
.tc-donation-table-wrap tr.tc-donation-row--refunded td{background:rgba(112,96,130,.045)}
.tc-donation-table-wrap tr.tc-donation-row--refunded td strong{color:#776a83}
.tc-donation-status{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;padding:6px 9px;border-radius:999px;font:900 .66rem/1 Manrope,system-ui,sans-serif;letter-spacing:.035em;background:#f2eef7;color:#655577}
.tc-donation-status--completed{background:#e8f6ef;color:#257252}
.tc-donation-status--pending{background:#fff4d8;color:#8a6620}
.tc-donation-status--rejected,.tc-donation-status--cancelled{background:#fdebea;color:#a04a46}
.tc-donation-status--refunded{background:#ece8f1;color:#685b73}
.tc-donation-refund-note{display:block;margin-top:3px;color:#8a7d94;font:800 .62rem/1.2 Manrope,system-ui,sans-serif}


/* v3.2.74 — İFÖP Kitap Cüzdan Bakiyesi: sabit yuvarlak + sağa açılan panel */
body.ifop-kitap-page .ifop-bagis-floating-balance{display:none!important}
.tc-floating-wallet{
    --tc-wallet-orb:68px;
    --tc-wallet-panel:176px;
    position:fixed;
    left:max(18px,calc(100vw - 282px));
    bottom:18px;
    z-index:999999;
    display:flex;
    align-items:center;
    width:var(--tc-wallet-orb);
    height:var(--tc-wallet-orb);
    text-decoration:none!important;
    color:#fff!important;
    filter:drop-shadow(0 18px 32px rgba(32,18,99,.28));
    isolation:isolate;
}
.tc-floating-wallet__orb{
    position:relative;
    z-index:3;
    flex:0 0 var(--tc-wallet-orb);
    width:var(--tc-wallet-orb);
    height:var(--tc-wallet-orb);
    display:grid;
    place-items:center;
    border-radius:50%;
    background:radial-gradient(circle at 34% 28%,rgba(255,255,255,.24),transparent 25%),linear-gradient(145deg,#3a217f,#5d33cc 52%,#08c7d5);
    border:1px solid rgba(139,236,255,.75);
    box-shadow:0 0 0 4px rgba(105,64,218,.12),0 0 28px rgba(28,205,231,.32),inset 0 1px 0 rgba(255,255,255,.32);
    overflow:hidden;
    left:-22px;
    transition:transform .28s ease,box-shadow .28s ease;
}
.tc-floating-wallet.is-spinning .tc-floating-wallet__orb{animation:tcWalletSpin .43s cubic-bezier(.38,.02,.2,1)}
@keyframes tcWalletSpin{0%{transform:rotate(0)}82%{transform:rotate(1120deg)}100%{transform:rotate(1080deg)}}
.tc-floating-wallet__orb svg{width:60px;height:60px;display:block}
.tc-floating-wallet__panel{
    position:absolute;
    z-index:2;
    left:calc(var(--tc-wallet-orb) - 46px);
    top:8px;
    height:50px;
    width:0;
    opacity:0;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-rows:auto auto;
    align-content:center;
    column-gap:8px;
    padding:0;
    border-radius:0 22px 22px 0;
    background:radial-gradient(circle at 85% 16%,rgba(54,229,235,.24),transparent 30%),linear-gradient(112deg,rgba(26,29,98,.98),rgba(70,39,155,.98) 58%,rgba(13,133,164,.96));
    border:1px solid rgba(117,224,245,.58);
    border-left:0;
    box-shadow:0 12px 34px rgba(26,19,91,.25),inset 0 1px 0 rgba(255,255,255,.18);
    transform-origin:left center;
    transition:width .34s cubic-bezier(.2,.9,.2,1),opacity .14s ease,padding .34s cubic-bezier(.2,.9,.2,1);
}
.tc-floating-wallet.is-open .tc-floating-wallet__panel,
.tc-floating-wallet:hover .tc-floating-wallet__panel,
.tc-floating-wallet:focus-visible .tc-floating-wallet__panel{
    width:var(--tc-wallet-panel);
    opacity:1;
    padding:0 8px 0 32px;
}
.tc-floating-wallet__panel small{
    grid-column:1;
    grid-row:1;
    align-self:end;
    white-space:nowrap;
    color:#bfefff;
    font:900 .48rem/1 Manrope,system-ui,sans-serif;
    letter-spacing:.10em;
}
.tc-floating-wallet__panel strong{
    grid-column:1;
    grid-row:2;
    align-self:start;
    margin-top:4px;
    white-space:nowrap;
    color:#fff;
    font:900 .76rem/1.08 Manrope,system-ui,sans-serif;
    letter-spacing:-.03em;
}
.tc-floating-wallet__panel i{
    grid-column:2;
    grid-row:1/3;
    align-self:center;
    display:grid;
    place-items:center;
    width:22px;
    height:22px;
    border-radius:50%;
    color:#fff;
    font:400 .8rem/1 sans-serif;
    font-style:normal;
    background:linear-gradient(145deg,#7046e2,#0ecfe0);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.28);
}
.tc-floating-wallet:hover .tc-floating-wallet__orb,
.tc-floating-wallet:focus-visible .tc-floating-wallet__orb{transform:translateY(-2px) scale(1.025);box-shadow:0 0 0 5px rgba(105,64,218,.13),0 0 34px rgba(28,205,231,.43),inset 0 1px 0 rgba(255,255,255,.35)}
@media(max-width:640px){
  .tc-floating-wallet{
    --tc-wallet-orb:58px;
    --tc-wallet-panel:min(151px,calc(100vw - 81px));
    left:max(10px,calc(100vw - 222px));
    bottom:12px;
    width:var(--tc-wallet-orb);
    height:var(--tc-wallet-orb);
  }
  .tc-floating-wallet__orb{left:-18px}.tc-floating-wallet__orb svg{width:51px;height:51px}
  .tc-floating-wallet__panel{top:5px;height:48px;left:calc(var(--tc-wallet-orb) - 40px)}
  .tc-floating-wallet.is-open .tc-floating-wallet__panel,
  .tc-floating-wallet:hover .tc-floating-wallet__panel,
  .tc-floating-wallet:focus-visible .tc-floating-wallet__panel{padding-left:27px;padding-right:7px}
  .tc-floating-wallet__panel small{font-size:.42rem}
  .tc-floating-wallet__panel strong{font-size:.68rem}
  .tc-floating-wallet__panel i{width:20px;height:20px;font-size:.74rem}
}
@media(prefers-reduced-motion:reduce){
  .tc-floating-wallet__panel,.tc-floating-wallet__orb{transition:none!important;animation:none!important}
}


/* v3.2.77 — cüzdan ve yatay taşma düzeltmesi */
.tc-floating-wallet{max-width:calc(100vw - 24px)}
html,body,.ifop-kitap-page{overflow-x:hidden!important}


/* v3.2.79 — yuvarlak cüzdan panelden ayrıldı */
.tc-floating-wallet{overflow:visible!important}


/* v3.2.81 — yuvarlak/panel arasındaki açıklığı kapat; metin konumu sabit */
.tc-floating-wallet__panel{box-sizing:border-box}


/* v3.2.82 — panel yuvarlağın altına uzatıldı; metin konumu sabit */
.tc-floating-wallet__orb{z-index:4}
.tc-floating-wallet__panel{z-index:2}


/* v3.2.84 — Cüzdan metni belirgin sola; stale 0 bakiye PHP tarafında giderildi */
.tc-floating-wallet__panel small,.tc-floating-wallet__panel strong{transform:translateX(6px);text-align:center;justify-self:center;width:100%}


/* v3.2.86 — panel içi metin boşluklarını dengele */
@media(max-width:640px){.tc-floating-wallet__panel small,.tc-floating-wallet__panel strong{transform:translateX(4px)}}


/* v3.2.93 — İFÖP Kitap/Cüzdan koşut sipariş geçmişi */
.tc-my-orders-layout--unified .tc-my-orders-history__head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:16px}
.tc-my-orders-layout--unified .tc-my-orders-history__head p{margin:0 0 4px;font-size:11px;font-weight:900;letter-spacing:.08em;color:#7b6b55}
.tc-my-orders-layout--unified .tc-my-orders-history__head h2{margin:0;font-size:28px}
.tc-my-orders-layout--unified .tc-my-orders-history__head>span{display:inline-flex;align-items:center;border:1px solid rgba(0,0,0,.08);border-radius:999px;padding:7px 11px;font-size:12px;font-weight:900;color:#7b6b55;background:#fff8ef}
.tc-my-orders-history__list{display:grid;gap:10px}
.tc-my-orders-history__item{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(120px,.6fr);gap:12px;align-items:center;border:1px solid rgba(0,0,0,.08);border-radius:18px;background:#fff;padding:14px}
.tc-my-orders-history__item strong{display:block;color:#201812;font-size:15px}
.tc-my-orders-history__item small{display:block;color:#8a7a68;margin-top:3px}
.tc-my-orders-history__item>div:last-child{text-align:right}
.tc-my-orders-source{display:inline-flex;align-items:center;border-radius:999px;padding:4px 8px;margin-bottom:6px;font-size:10px;font-weight:900;letter-spacing:.06em;background:#f4eadc;color:#7b5a2a}
.tc-my-orders-source--cuzdan{background:#eaf5ff;color:#256182}
.tc-my-orders-track{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin:14px 0 18px}
.tc-my-orders-track span{display:flex;align-items:center;gap:8px;border:1px solid rgba(0,0,0,.08);border-radius:14px;background:#fffaf2;padding:10px;color:#9a8b78;font-size:11px;font-weight:900}
.tc-my-orders-track i{width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:#e8dccd;color:#7b6b55;font-style:normal;flex:0 0 auto}
.tc-my-orders-track .is-done{background:#edf8ef;color:#357f4b;border-color:rgba(53,127,75,.16)}
.tc-my-orders-track .is-done i{background:#35a85c;color:#fff}
.tc-my-orders-track .is-current{background:#fff3d7;color:#8b6114;border-color:rgba(139,97,20,.18)}
.tc-my-orders-track .is-current i{background:#d49b2c;color:#fff}
.tc-my-orders-cargo{margin-top:12px;border:1px dashed rgba(0,0,0,.16);border-radius:14px;padding:12px;background:#fff8ef}
.tc-my-orders-cargo strong{display:block;color:#201812;margin-bottom:4px}
.tc-my-orders-cargo span{display:block;color:#6f5f4f}
@media(max-width:720px){.tc-my-orders-history__item{grid-template-columns:1fr}.tc-my-orders-history__item>div:last-child{text-align:left}.tc-my-orders-track{grid-template-columns:1fr 1fr}.tc-my-orders-track span{font-size:10px}}

.tc-cart-item__initial,.tc-checkout-summary__initial{display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-height:54px;border-radius:14px;background:linear-gradient(135deg,#f1f5f9,#fff7ed);font-weight:900;color:#7c2d12;}


/* v3.3.1 — sağ alt cüzdan logosu sürekli canlı animasyon */
.tc-floating-wallet__orb::before,
.tc-floating-wallet__orb::after{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:1px solid rgba(126,239,255,.42);
    box-shadow:0 0 22px rgba(31,217,236,.30);
    animation:tcWalletHalo331 2.8s ease-in-out infinite;
    pointer-events:none;
}
.tc-floating-wallet__orb::after{
    inset:-15px;
    border-color:rgba(255,214,112,.30);
    animation-delay:-1.4s;
}
.tc-floating-wallet__orb{animation:tcWalletBreath331 3.6s ease-in-out infinite}
.tc-floating-wallet.is-spinning .tc-floating-wallet__orb{animation:tcWalletSpin .43s cubic-bezier(.38,.02,.2,1),tcWalletBreath331 3.6s ease-in-out infinite}
@keyframes tcWalletHalo331{
    0%,100%{transform:scale(.82);opacity:.16}
    48%{transform:scale(1.08);opacity:.92}
}
@keyframes tcWalletBreath331{
    0%,100%{box-shadow:0 0 0 4px rgba(105,64,218,.12),0 0 28px rgba(28,205,231,.32),inset 0 1px 0 rgba(255,255,255,.32)}
    50%{box-shadow:0 0 0 7px rgba(105,64,218,.18),0 0 44px rgba(28,205,231,.52),0 0 18px rgba(255,210,95,.25),inset 0 1px 0 rgba(255,255,255,.38)}
}
@media(prefers-reduced-motion:reduce){.tc-floating-wallet__orb::before,.tc-floating-wallet__orb::after{animation:none!important}}


/* v3.3.2 — İFÖP Kitap sayfalarında sağ alt Cüzdan logosu gerçekten hareket eder */
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim{
  filter:drop-shadow(0 18px 32px rgba(32,18,99,.28)) drop-shadow(0 0 18px rgba(16,211,225,.28))!important;
}
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim .ifop-universal-wallet__orb,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim .tc-floating-wallet__orb{
  transition:transform .28s ease,box-shadow .28s ease!important;
  animation:ifopKitapWalletBreath332 2.6s ease-in-out infinite!important;
  overflow:visible!important;
}
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim .ifop-universal-wallet__panel,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim .tc-floating-wallet__panel{
  transition:width .34s cubic-bezier(.2,.9,.2,1),opacity .14s ease,padding .34s cubic-bezier(.2,.9,.2,1)!important;
}
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim .ifop-universal-wallet__orb::before,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim .tc-floating-wallet__orb::before,
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim .ifop-universal-wallet__orb::after,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim .tc-floating-wallet__orb::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:999px;
  border:2px solid rgba(37,217,233,.42);
  pointer-events:none;
  animation:ifopKitapWalletRing332 2.15s ease-out infinite!important;
}
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim .ifop-universal-wallet__orb::after,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim .tc-floating-wallet__orb::after{
  inset:-15px;
  border-color:rgba(255,209,86,.34);
  animation-delay:.72s!important;
}
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim.is-spinning .ifop-universal-wallet__orb,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim.is-spinning .tc-floating-wallet__orb{
  animation:ifopKitapWalletSpin332 .76s cubic-bezier(.34,.01,.18,1) 1!important;
  box-shadow:0 0 0 7px rgba(255,214,91,.18),0 0 42px rgba(28,205,231,.58),0 0 26px rgba(255,164,50,.35),inset 0 1px 0 rgba(255,255,255,.42)!important;
}
body.ifop-kitap-page .ifop-universal-wallet.ifop-kitap-wallet-anim.is-sparkling::before,
body.ifop-kitap-page .tc-floating-wallet.ifop-kitap-wallet-anim.is-sparkling::before{
  content:"";
  position:absolute;
  width:10px;
  height:10px;
  right:10px;
  top:5px;
  border-radius:50%;
  background:#ffe28a;
  box-shadow:-18px 30px 0 -3px rgba(255,255,255,.9),22px 38px 0 -2px rgba(47,231,241,.85),-3px -15px 0 -2px rgba(255,160,48,.95);
  animation:ifopKitapWalletSpark332 1.1s ease-out infinite!important;
  z-index:8;
  pointer-events:none;
}
@keyframes ifopKitapWalletBreath332{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-3px) scale(1.045)}
}
@keyframes ifopKitapWalletRing332{
  0%{opacity:.78;transform:scale(.82)}
  70%{opacity:.12;transform:scale(1.28)}
  100%{opacity:0;transform:scale(1.38)}
}
@keyframes ifopKitapWalletSpin332{
  0%{transform:rotate(0) scale(1)}
  62%{transform:rotate(720deg) scale(1.08)}
  100%{transform:rotate(720deg) scale(1.02)}
}
@keyframes ifopKitapWalletSpark332{
  0%,100%{opacity:.25;transform:scale(.65) rotate(0deg)}
  45%{opacity:1;transform:scale(1.25) rotate(35deg)}
}

/* v3.3.4 — ürün detayında maliyet/kargo/hizmet/burs dağılım kutuları görünmez */
.tc-product-allocation{display:none!important}


/* v3.3.15 — mobil ürün görseli ve isimleri ekran dışına taşmasın */
@media (max-width: 782px) {
    .tc-catalog-shell,
    .tc-catalog-shell--embedded,
    .tc-products-page,
    .tc-product-detail,
    .tc-product-list,
    .tc-product-row,
    .tc-product-row__info,
    .tc-product-row__info > a,
    .tc-product-detail__grid,
    .tc-product-detail__content,
    .tc-product-detail__head {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .tc-catalog-shell,
    .tc-catalog-shell--embedded {
        overflow-x: clip !important;
    }

    .tc-products-page,
    .tc-product-detail {
        width: calc(100% - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .tc-product-list {
        width: 100% !important;
        overflow: visible !important;
    }

    .tc-product-row {
        width: 100% !important;
        grid-template-columns: 84px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 12px !important;
        overflow: hidden !important;
    }

    .tc-product-row__image {
        width: 84px !important;
        max-width: 84px !important;
        min-width: 0 !important;
        aspect-ratio: 1 / 1 !important;
        justify-self: start !important;
        overflow: hidden !important;
    }

    .tc-product-row__image img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .tc-product-row__info {
        width: 100% !important;
        overflow: hidden !important;
    }

    .tc-product-row__info > a {
        display: block !important;
        width: 100% !important;
    }

    .tc-product-row__info h2 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 8px !important;
        font-size: clamp(1.05rem, 5.2vw, 1.35rem) !important;
        line-height: 1.08 !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        hyphens: auto !important;
    }

    .tc-product-row__author,
    .tc-product-row__publisher {
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    .tc-product-row__purchase {
        width: 100% !important;
        min-width: 0 !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 10px !important;
    }

    .tc-product-detail__grid {
        width: 100% !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .tc-product-detail__visual {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .tc-product-detail__visual img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .tc-product-detail__head h1 {
        max-width: 100% !important;
        font-size: clamp(2rem, 10vw, 3.35rem) !important;
        line-height: .98 !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        hyphens: auto !important;
    }
}

@media (max-width: 430px) {
    .tc-product-row {
        grid-template-columns: 74px minmax(0, 1fr) !important;
        gap: 10px !important;
        padding: 10px !important;
    }
    .tc-product-row__image {
        width: 74px !important;
        max-width: 74px !important;
    }
    .tc-product-row__info h2 {
        font-size: 1.05rem !important;
    }
}


/* v3.3.16 — Genel / Özel / Kazı-Kazan indirim görünümü */
.tc-cart-summary__discount,
.tc-checkout-summary__discount {
	color: #6f1f2c;
	background: rgba(113,31,44,.055);
	border-radius: 12px;
	padding: 10px 12px !important;
	margin: 4px 0;
}
.tc-cart-summary__discount span,
.tc-checkout-summary__discount span { display:flex; align-items:center; gap:7px; flex-wrap:wrap; }
.tc-cart-summary__discount small,
.tc-checkout-summary__discount small {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:38px;
	padding:4px 7px;
	border-radius:999px;
	background:#6f1f2c;
	color:#fff;
	font-size:11px;
	font-weight:800;
}
.tc-cart-summary__discount strong,
.tc-checkout-summary__discount strong { color:#6f1f2c !important; }
.tc-cart-campaign-note {
	margin:-1px 0 8px;
	padding:0 4px;
	font-size:11px;
	line-height:1.4;
	color:rgba(48,39,42,.68);
}
@media (max-width:720px){
	.tc-cart-summary__discount,
	.tc-checkout-summary__discount{padding:9px 10px !important}
	.tc-cart-campaign-note{font-size:10.5px}
}


/* v3.3.24 — doğrudan ücretsiz PDF kütüphanesi */
.tc-download-button{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:44px;padding:0 18px;border:0;border-radius:999px;background:#2f735f;color:#fff!important;text-decoration:none!important;font-weight:900;letter-spacing:.05em;box-shadow:0 9px 20px rgba(47,115,95,.18);transition:transform .18s ease,box-shadow .18s ease}
.tc-download-button:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(47,115,95,.24)}
.tc-download-button__icon{font-size:1.25em;line-height:1}.tc-download-unavailable{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 15px;border-radius:999px;background:#f1eee8;color:#7b746b;font-size:.72rem;font-weight:900;letter-spacing:.04em}
.tc-product-comment-form__row--identity{grid-template-columns:repeat(3,minmax(0,1fr))!important}.tc-product-comments__school,.tc-comment-card__school{display:block;color:#7a7181;font-size:.78rem;font-weight:800;margin-top:3px}
body.ifop-kitap-page .tc-floating-wallet,body.ifop-kitap-page [data-tc-floating-wallet],body.ifop-kitap-page .ifop-universal-wallet,body.ifop-kitap-page [data-ifop-universal-wallet]{display:none!important}
@media(max-width:720px){.tc-product-comment-form__row--identity{grid-template-columns:1fr!important}.tc-download-button{width:100%}}

.tc-download-button--disabled{opacity:.46;cursor:not-allowed;box-shadow:none!important;transform:none!important}
