﻿/* 
 * Tasario Antigravity Theme - WooCommerce Styles
 */

/* =========================================
   Empty Cart State
========================================= */
.tasario-empty-cart-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	background-color: transparent;
	box-shadow: none;
	margin: 60px auto 40px auto;
	max-width: 600px;
	min-height: calc(100vh - 400px);
}
.tasario-empty-cart-icon {
	color: var(--color-primary);
	margin-bottom: 24px;
}
.tasario-empty-cart-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-text-main);
	margin-bottom: 12px;
}
.tasario-empty-cart-subtitle {
	font-size: 16px;
	color: var(--color-text-muted);
	margin-bottom: 30px;
	max-width: 400px;
}
.return-to-shop .tasario-btn-primary {
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--radius-btn);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(233, 89, 2, 0.25);
}
.return-to-shop .tasario-btn-primary:hover {
	background-color: var(--color-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 89, 2, 0.35);
}

/* =========================================
   Full Cart State
========================================= */
.woocommerce-cart .woocommerce {
	margin-top: 20px;
	margin-bottom: 60px;
}

.tasario-cart-container {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 30px;
	align-items: start;
}

/* Cart Table Main */
.tasario-cart-main {
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 30px;
}

.woocommerce table.shop_table {
	border: none;
	border-collapse: separate;
	border-spacing: 0;
	margin: 0;
	border-radius: 0;
}
.woocommerce table.shop_table th {
	font-size: 14px;
	color: var(--color-text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0 0 15px 0;
	border-bottom: 1px solid var(--color-border);
}
.woocommerce table.shop_table td {
	padding: 24px 0;
	border-top: none;
	border-bottom: 1px solid #f3f4f6;
	vertical-align: middle;
}
.woocommerce table.shop_table tr:last-child td {
	border-bottom: none;
}

/* Product Thumbnail */
.woocommerce table.cart .product-thumbnail {
	width: 90px;
	padding-right: 20px;
}
.woocommerce table.cart .product-thumbnail img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
}

/* Product Name */
.woocommerce table.cart .product-name a {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text-main);
	text-decoration: none;
	transition: color 0.2s ease;
}
.woocommerce table.cart .product-name a:hover {
	color: var(--color-primary);
}

/* Remove Icon */
.woocommerce table.cart .product-remove {
	width: 40px;
}
.woocommerce a.remove {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ef4444 !important;
	background: #fee2e2 !important;
	border-radius: 50% !important;
	width: 28px !important;
	height: 28px !important;
	transition: all 0.2s ease !important;
}
.woocommerce a.remove:hover {
	background: #ef4444 !important;
	color: #ffffff !important;
	transform: scale(1.1);
}
.woocommerce a.remove svg {
	width: 14px;
	height: 14px;
}

/* Cart Actions (Coupon & Update) */
.woocommerce table.cart td.actions {
	padding: 30px 0 0 0;
}
.woocommerce table.cart td.actions .coupon {
	display: flex;
	gap: 10px;
	float: left;
}
.woocommerce table.cart td.actions .coupon .input-text {
	width: 200px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	padding: 10px 14px;
	height: 44px;
	font-size: 14px;
	outline: none;
}
.woocommerce table.cart td.actions .coupon .input-text:focus {
	border-color: var(--color-primary);
}
.woocommerce table.cart td.actions .button, 
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
	height: 44px;
	background-color: #f3f4f6;
	color: var(--color-text-main);
	font-weight: 600;
	border-radius: var(--radius-sm);
	padding: 0 24px;
	transition: all 0.2s ease;
	border: none;
}
.woocommerce table.cart td.actions .button:hover {
	background-color: #e5e7eb;
}
.woocommerce table.cart td.actions > .button {
	float: right;
}

/* Sidebar Totals */
.tasario-cart-sidebar {
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 30px;
	position: sticky;
	top: 100px;
}
.woocommerce .cart-collaterals .cart_totals {
	width: 100%;
	float: none;
}
.woocommerce .cart-collaterals .cart_totals h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-text-main);
}
.woocommerce .cart-collaterals .cart_totals table {
	border-collapse: collapse;
	margin: 0 0 24px 0;
	width: 100%;
}
.woocommerce .cart-collaterals .cart_totals table th,
.woocommerce .cart-collaterals .cart_totals table td {
	padding: 15px 0;
	border-top: none;
	border-bottom: 1px solid #f3f4f6;
}
.woocommerce .cart-collaterals .cart_totals table th {
	font-weight: 500;
	color: var(--color-text-muted);
}
.woocommerce .cart-collaterals .cart_totals table td {
	text-align: right;
	font-weight: 600;
	color: var(--color-text-main);
}
.woocommerce .cart-collaterals .cart_totals table tr.order-total th,
.woocommerce .cart-collaterals .cart_totals table tr.order-total td {
	border-bottom: none;
	padding-top: 24px;
	font-size: 20px;
}
.woocommerce .cart-collaterals .cart_totals table tr.order-total td {
	color: var(--color-primary);
	font-weight: 800;
}

/* Checkout Button */
.woocommerce .cart-collaterals .checkout-button {
	background-color: var(--color-primary) !important;
	color: var(--color-white) !important;
	width: 100%;
	text-align: center;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	border-radius: var(--radius-btn);
	box-shadow: 0 4px 14px rgba(233, 89, 2, 0.25);
}
.woocommerce .cart-collaterals .checkout-button:hover {
	background-color: var(--color-primary-hover) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 89, 2, 0.35);
}

/* =========================================
   My Account (Dashboard) State
========================================= */
.woocommerce-account .woocommerce {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 8px;
	margin-bottom: 8px;
	align-items: flex-start;
}

/* Sidebar Navigation */
.woocommerce-MyAccount-navigation {
	width: 300px;
	flex-shrink: 0;
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

/* Profile Banner inside Nav */
.tasario-myaccount-profile {
	padding: 30px 20px;
	background: linear-gradient(135deg, var(--color-primary), #ff7a29);
	color: var(--color-white);
	display: flex;
	align-items: center;
	gap: 15px;
}
.tasario-myaccount-profile .profile-avatar img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.3);
	object-fit: cover;
}
.tasario-myaccount-profile .profile-info {
	display: flex;
	flex-direction: column;
}
.tasario-myaccount-profile .greeting {
	font-size: 13px;
	opacity: 0.9;
}
.tasario-myaccount-profile .user-name {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 5px;
}
.wave {
	animation: wave-animation 2.5s infinite;
	transform-origin: 70% 70%;
	display: inline-block;
}
@keyframes wave-animation {
	0% { transform: rotate( 0.0deg) }
	10% { transform: rotate(14.0deg) }  /* The following five values can be played with to make the waving more or less extreme */
	20% { transform: rotate(-8.0deg) }
	30% { transform: rotate(14.0deg) }
	40% { transform: rotate(-4.0deg) }
	50% { transform: rotate(10.0deg) }
	60% { transform: rotate( 0.0deg) }  /* Reset for the last half to pause */
	100% { transform: rotate( 0.0deg) }
}

/* Nav Menu Items */
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 10px 0;
}
.woocommerce-MyAccount-navigation ul li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f3f4f6;
}
.woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}
.woocommerce-MyAccount-navigation ul li a {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	color: var(--color-text-main);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
}
.woocommerce-MyAccount-navigation ul li a:hover {
	background-color: #f9fafb;
	color: var(--color-primary);
}
.woocommerce-MyAccount-navigation ul li.is-active a {
	color: var(--color-primary);
	font-weight: 700;
	background-color: #fffaf7;
	border-left: 4px solid var(--color-primary);
}
.nav-icon-wrapper {
	width: 24px;
	height: 24px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	transition: color 0.2s ease;
}
.nav-icon-wrapper svg {
	width: 20px;
	height: 20px;
}
.woocommerce-MyAccount-navigation ul li a:hover .nav-icon-wrapper,
.woocommerce-MyAccount-navigation ul li.is-active a .nav-icon-wrapper {
	color: var(--color-primary);
}

/* Dashboard Content Area */
.woocommerce-MyAccount-content {
	flex: 1;
	min-width: 0;
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 40px;
}

.woocommerce-MyAccount-content p {
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}
.woocommerce-MyAccount-content a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
}
.woocommerce-MyAccount-content a:hover {
	text-decoration: underline;
}
.woocommerce-MyAccount-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 25px;
	color: var(--color-text-main);
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 15px;
}

/* My Account Tables (Orders etc) */
.woocommerce-MyAccount-content table.shop_table {
	width: 100%;
	border: none;
	margin-bottom: 30px;
}
.woocommerce-MyAccount-content table.shop_table th {
	background-color: #f9fafb;
	padding: 15px;
	color: var(--color-text-main);
	font-weight: 600;
	text-transform: capitalize;
	font-size: 14px;
	border-bottom: none;
}
.woocommerce-MyAccount-content table.shop_table th:first-child { border-top-left-radius: var(--radius-sm); border-bottom-left-radius: var(--radius-sm); }
.woocommerce-MyAccount-content table.shop_table th:last-child { border-top-right-radius: var(--radius-sm); border-bottom-right-radius: var(--radius-sm); }
.woocommerce-MyAccount-content table.shop_table td {
	padding: 20px 15px;
	border-bottom: 1px solid #f3f4f6;
	color: var(--color-text-muted);
	font-size: 14px;
}
.woocommerce-MyAccount-content table.shop_table .button {
	background-color: var(--color-primary);
	color: white;
	padding: 8px 16px;
	border-radius: var(--radius-btn);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	height: auto;
}
.woocommerce-MyAccount-content table.shop_table .button:hover {
	background-color: var(--color-primary-hover);
	text-decoration: none;
}

/* Order Status Badges */
.order-status {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
}
.status-completed { background-color: #dcfce7; color: #166534; }
.status-processing { background-color: #dbeafe; color: #1e40af; }
.status-on-hold { background-color: #fef9c3; color: #854d0e; }
.status-cancelled, .status-failed { background-color: #fee2e2; color: #991b1b; }

/* WooCommerce Notices (Info, Message, Error) - PREMIUM DESIGN V2 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background-color: #f9fafb !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 18px 20px 18px 58px !important;
    margin: 0 0 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    list-style: none !important;
    box-shadow: none !important;
    position: relative !important;
    display: block !important;
}

/* Remove default WooCommerce top/left border pseudo-elements */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    display: none !important;
}

/* Icons via FontAwesome */
.woocommerce-message::after,
.woocommerce-info::after,
.woocommerce-error::after {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 20px !important;
    top: 18px !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

/* Fix inner li spacing for errors */
.woocommerce-message li,
.woocommerce-info li,
.woocommerce-error li {
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    color: inherit !important;
}
.woocommerce-error li:last-child {
    margin-bottom: 0 !important;
}

/* SUCCESS (Message) - Yeşil */
.woocommerce-message {
    background-color: #edfdf5 !important; /* Soft yeşil arka plan */
    color: #065f46 !important; /* Koyu yeşil yazı */
}
.woocommerce-message::after {
    content: "\f058" !important; /* check-circle */
    color: #10b981 !important; /* Canlı yeşil ikon */
}

/* INFO - Mavi */
.woocommerce-info {
    background-color: #eff6ff !important;
    color: #1e3a8a !important;
}
.woocommerce-info::after {
    content: "\f05a" !important; /* info-circle */
    color: #3b82f6 !important;
}

/* ERROR - Turuncuya çalan kırmızı (Orange-Red) */
.woocommerce-error {
    background-color: #fff0ed !important; /* Soft turuncu-kırmızı arka plan */
    color: #9a2b16 !important; /* Koyu turuncu-kırmızı yazı */
}
.woocommerce-error::after {
    content: "\f071" !important; /* exclamation-triangle */
    color: #ff4e00 !important; /* Canlı turuncu-kırmızı ikon */
}

/* Buttons inside notices */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
    background-color: #ffffff !important;
    color: inherit !important;
    border: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    border-radius: 6px !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    float: right;
    margin-top: -4px;
    margin-left: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
    background-color: #f3f4f6 !important;
}
/* Clearfix for floating button */
.woocommerce-message::after, .woocommerce-info::after, .woocommerce-error::after {
    /* pseudo element is absolutely positioned, so clearfix on container */
}
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    clear: both;
}

/* My Account Empty State (SipariÅŸler, vb.) */
.tasario-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
}
.tasario-empty-state-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(135deg, #fff5ef, #ffe8d6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--color-primary);
	animation: emptyStatePulse 3s ease-in-out infinite;
}
.tasario-empty-state-icon svg {
	width: 42px;
	height: 42px;
}
@keyframes emptyStatePulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 89, 2, 0.15); }
	50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(233, 89, 2, 0); }
}
.tasario-empty-state-title {
	font-size: 19px;
	font-weight: 700;
	color: var(--color-text-main);
	margin-bottom: 8px;
	border-bottom: none !important;
	padding-bottom: 0 !important;
}
.tasario-empty-state-subtitle {
	font-size: 14px;
	color: var(--color-text-muted);
	max-width: 300px;
	line-height: 1.6;
	margin-bottom: 22px;
}
.tasario-empty-state-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--color-primary);
	color: var(--color-white) !important;
	padding: 11px 24px;
	border-radius: var(--radius-btn);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(233, 89, 2, 0.25);
}
.tasario-empty-state-btn:hover {
	background-color: var(--color-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 89, 2, 0.35);
	text-decoration: none !important;
}

/* =========================================
   Addresses - Custom Tasario Cards
========================================= */
.tasario-addresses-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
}
.tasario-address-card {
	background-color: #f9fafb;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: all 0.25s ease;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.tasario-address-card:hover {
	background-color: var(--color-white);
	box-shadow: 0 8px 25px rgba(0,0,0,0.06);
	border-color: var(--color-primary);
	transform: translateY(-2px);
}

/* Card Header */
.tasario-address-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	border-bottom: 1px solid var(--color-border);
	background-color: var(--color-white);
}
.tasario-address-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, #fff5ef, #ffe8d6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	flex-shrink: 0;
}
.tasario-address-card-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text-main);
	margin: 0 !important;
	border-bottom: none !important;
	padding-bottom: 0 !important;
}

/* Card Body */
.tasario-address-card-body {
	padding: 20px 22px;
	flex: 1;
}
.tasario-address-card-body address {
	font-style: normal;
	color: var(--color-text-muted);
	line-height: 1.8;
	font-size: 14px;
}

/* Empty State inside card */
.tasario-address-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 15px 0;
	color: #d1d5db;
}
.tasario-address-empty svg {
	margin-bottom: 10px;
	opacity: 0.5;
}
.tasario-address-empty p {
	font-size: 13px;
	color: var(--color-text-muted);
	margin: 0;
}

/* Card Footer */
.tasario-address-card-footer {
	padding: 0 22px 18px;
}
.tasario-address-edit-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 18px;
	border-radius: var(--radius-btn);
	font-size: 13px;
	font-weight: 600;
	transition: all 0.2s ease;
	text-decoration: none !important;
	background-color: var(--color-primary);
	color: var(--color-white) !important;
	box-shadow: 0 2px 8px rgba(233, 89, 2, 0.2);
}
.tasario-address-edit-btn:hover {
	background-color: var(--color-primary-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(233, 89, 2, 0.3);
	text-decoration: none !important;
}

/* My Account Form Inputs (Hesap DetaylarÄ±, Adres DÃ¼zenleme vb.) */
.woocommerce-EditAccountForm,
.woocommerce-address-fields {
	max-width: 680px;
}
.woocommerce form .form-row {
	margin-bottom: 20px;
	padding: 0;
}
.woocommerce form .form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--color-text-main);
	font-size: 14px;
}
.woocommerce form .form-row label .required {
	color: var(--color-primary);
}
/* Yan yana alanlar (Ad / Soyad) */
.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
	width: 48%;
	display: inline-block;
	vertical-align: top;
}
.woocommerce form .form-row-first {
	float: left;
}
.woocommerce form .form-row-last {
	float: right;
}
.woocommerce form .clear {
	clear: both;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input.woocommerce-Input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-main);
	font-size: 14px;
	transition: all 0.2s ease;
	outline: none;
	background-color: #f9fafb;
	box-sizing: border-box;
	-webkit-appearance: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row input.woocommerce-Input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	background-color: var(--color-white);
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(233, 89, 2, 0.1);
}
/* AÃ§Ä±klama metinleri */
.woocommerce form .form-row span em {
	font-size: 12px;
	color: var(--color-text-muted);
	display: block;
	margin-top: 6px;
	line-height: 1.5;
}
/* Åifre DeÄŸiÅŸtir fieldset */
.woocommerce-EditAccountForm fieldset {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 28px;
	margin: 30px 0 25px;
	background-color: #f9fafb;
}
.woocommerce-EditAccountForm fieldset legend {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text-main);
	padding: 0 12px;
	background-color: var(--color-white);
	border-radius: var(--radius-sm);
}
/* Kaydet butonu */
.woocommerce form .button {
	background-color: var(--color-primary);
	color: var(--color-white);
	border: none;
	padding: 14px 36px;
	font-weight: 700;
	border-radius: var(--radius-btn);
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 15px;
	box-shadow: 0 4px 14px rgba(233, 89, 2, 0.25);
}
.woocommerce form .button:hover {
	background-color: var(--color-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 89, 2, 0.35);
}

/* =========================================
   Modern Login & Register (Tabbed UI)
========================================= */
.tasario-auth-container {
	max-width: 480px;
	margin: 0 auto;
	padding: 40px 15px;
}
.tasario-auth-card {
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: 0 10px 40px rgba(0,0,0,0.06);
	overflow: hidden;
	border: 1px solid var(--color-border);
}
/* Tabs */
.tasario-auth-tabs {
	display: flex;
	border-bottom: 1px solid var(--color-border);
	background-color: #fcfcfc;
}
.tasario-auth-tab {
	flex: 1;
	background: transparent;
	border: none;
	padding: 20px 15px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text-muted);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	outline: none;
}
.tasario-auth-tab:hover {
	color: var(--color-primary);
	background-color: var(--color-white);
}
.tasario-auth-tab.active {
	color: var(--color-primary);
	background-color: var(--color-white);
}
.tasario-auth-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--color-primary);
}
/* Panels */
.tasario-auth-panel {
	display: none;
	padding: 35px 40px 40px;
	animation: fadeInAuth 0.3s ease;
}
.tasario-auth-panel.active {
	display: block;
}
@keyframes fadeInAuth {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Fallback Title */
.tasario-auth-title {
	font-size: 22px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 25px;
	padding-top: 30px;
	color: var(--color-text-main);
}

/* Auth Actions (Remember Me & Lost Password) */
.tasario-auth-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	font-size: 13px;
}
.tasario-auth-actions .woocommerce-form__label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	margin: 0;
	cursor: pointer;
}
.tasario-auth-actions .lost_password {
	margin: 0;
}
.tasario-auth-actions .lost_password a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
}
.tasario-auth-actions .lost_password a:hover {
	text-decoration: underline;
}

/* Override Form Row in Auth */
.tasario-auth-card .form-row {
	margin-bottom: 22px;
	padding: 0;
}
.tasario-auth-card .button {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	box-shadow: 0 4px 15px rgba(233, 89, 2, 0.2);
}
.tasario-auth-notice {
	font-size: 13px;
	color: var(--color-text-muted);
	background: #f9fafb;
	padding: 15px;
	border-radius: var(--radius-sm);
	margin-bottom: 20px;
	line-height: 1.5;
	border-left: 3px solid var(--color-primary);
}

/* =========================================
   Responsive Design (Mobile)
========================================= */
@media (max-width: 991px) {
	.tasario-cart-container {
		grid-template-columns: 1fr;
	}
	.tasario-cart-main {
		padding: 20px;
	}
	.tasario-cart-sidebar {
		padding: 20px;
		position: relative;
		top: 0;
	}
}

@media (max-width: 768px) {
	.woocommerce table.shop_table_responsive thead {
		display: none;
	}
	.woocommerce table.shop_table_responsive tbody tr {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		padding: 20px 0;
		border-bottom: 1px solid var(--color-border);
		position: relative;
	}
	.woocommerce table.shop_table_responsive tbody tr td {
		display: block;
		text-align: left;
		padding: 5px 0;
		border: none;
	}
	.woocommerce table.shop_table_responsive tbody tr td::before {
		display: none;
	}
	
	/* Restructure mobile item */
	.woocommerce table.cart .product-remove {
		position: absolute;
		top: 20px;
		right: 0;
		width: auto;
		padding: 0;
		z-index: 2;
	}
	.woocommerce table.cart .product-thumbnail {
		width: 90px;
		padding-right: 0;
		margin-right: 15px;
		text-align: left;
	}
	.woocommerce table.cart .product-thumbnail img {
		width: 80px;
		height: 80px;
		margin: 0;
	}
	/* Text area wraps */
	.woocommerce table.cart .product-name {
		width: calc(100% - 105px);
		padding-right: 30px; /* space for remove btn */
		font-size: 15px !important;
		text-align: left !important;
	}
	.woocommerce table.cart .product-price {
		display: none !important; /* Hide individual price on mobile */
	}
	.woocommerce table.cart .product-quantity {
		width: calc(100% - 105px);
		margin-left: 105px;
		text-align: left !important;
		display: flex;
		justify-content: flex-start;
	}
	.woocommerce table.cart .product-subtotal {
		width: calc(100% - 105px);
		margin-left: 105px;
		text-align: left !important;
		font-size: 16px;
		font-weight: 700;
		color: var(--color-primary);
	}
	
	/* Actions area mobile */
	.woocommerce table.cart td.actions {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.woocommerce table.cart td.actions .coupon {
		float: none;
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.woocommerce table.cart td.actions .coupon .input-text {
		width: 100%;
	}
	.woocommerce table.cart td.actions > .button {
		float: none;
		width: 100%;
	}
	/* My Account Mobile */
	.woocommerce-account .woocommerce {
		flex-direction: column;
		gap: 5px;
		margin-top: 5px !important;
		margin-bottom: 5px !important;
	}
	.woocommerce-MyAccount-navigation {
		width: 100%;
	}
	.woocommerce-MyAccount-content {
		width: 100%;
		padding: 25px 18px;
	}
	/* Adres kartlarÄ± mobilde alt alta */
	.tasario-addresses-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.tasario-address-card-header {
		padding: 14px 18px;
	}
	.tasario-address-card-body {
		padding: 16px 18px;
	}
	.tasario-address-card-footer {
		padding: 0 18px 14px;
	}
	/* Form alanlarÄ± mobilde alt alta */
	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last {
		width: 100%;
		float: none;
		display: block;
	}
	/* Fieldset mobilde sÄ±ÄŸdÄ±r */
	.woocommerce-EditAccountForm fieldset {
		padding: 20px 15px;
		margin: 20px 0 20px;
	}
	/* Login/Register mobilde */
	.u-columns.col2-set {
		grid-template-columns: 1fr;
	}
	.u-columns.col2-set .col-1, 
	.u-columns.col2-set .col-2 {
		padding: 25px 20px;
	}
	/* Buton tam geniÅŸlik */
	.woocommerce form .button {
		width: 100%;
		text-align: center;
	}
}

/* Custom Quantity Input */
.woocommerce .quantity .qty { width: 60px; height: 36px; padding: 0 10px; border: 1px solid var(--color-border); border-radius: 4px; text-align: center; font-size: 15px; }
.woocommerce .quantity .qty:focus { border-color: var(--color-primary); outline: none; }
/* =========================================
   Advanced Cart Styles (Sosyopix Clone)
========================================= */

/* Free Shipping Bar */
.tasario-free-shipping-bar-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.tasario-fs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}
.fs-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-main);
}
.fs-info-left i {
    color: #ff6a00;
}
.tasario-fs-link {
    color: #ff6a00;
    text-decoration: none;
    font-weight: 600;
}
.tasario-fs-progress {
    height: 6px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}
.tasario-fs-progress-bar {
    height: 100%;
    background: #ff6a00;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Cart Container */
.tasario-advanced-cart-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.tasario-cart-left {
    flex: 1;
}
.tasario-cart-right {
    width: 320px;
    flex-shrink: 0;
}

/* Cart Header */
.tasario-cart-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.tasario-cart-header a.back-to-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 18px;
}
.tasario-cart-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Cart Items */
.tasario-cart-items {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.tasario-cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.tasario-cart-item:first-child {
    padding-top: 0;
}
.tasario-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.item-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-main);
}
.item-title a {
    color: inherit;
    text-decoration: none;
}
.item-price-block {
    text-align: right;
    display: flex;
    flex-direction: column;
}
.item-price-block del {
    font-size: 13px;
    color: #999;
}
.item-price-block ins {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-main);
    text-decoration: none;
}

/* Quantity & Remove */
.item-actions-row {
    display: flex;
    justify-content: flex-end;
}
.item-quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 36px;
}
.item-remove {
    border-right: 1px solid #e0e0e0;
}
.item-remove a.remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #666 !important;
    text-decoration: none;
    font-size: 14px;
    background: transparent !important;
    border-radius: 0 !important;
}
.item-remove a.remove:hover {
    color: #ff3333 !important;
    background: #f5f5f5 !important;
    transform: none;
}
.item-quantity .quantity {
    display: flex;
    align-items: center;
    margin: 0;
}
.item-quantity .qty {
    width: 40px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
}
.item-quantity .qty:focus {
    outline: none;
    box-shadow: none;
}

/* Gift Note Block */
.tasario-gift-note-block {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.tasario-gift-note-block h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.gift-note-buttons {
    display: flex;
    gap: 15px;
}
.gift-note-buttons button {
    background: #fff;
    border: 1px solid #ffebe0;
    color: #ff6a00;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.gift-note-buttons button:hover {
    background: #fff5f0;
}
.gift-note-buttons button.btn-gift-ready {
    background: #fff5f0;
    border-color: #fff5f0;
}

/* Surprise Block */
.tasario-cart-surprise {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.surprise-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff6a00;
}
.tasario-cart-surprise h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.tasario-cart-surprise p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Cart Totals */
.cart-collaterals {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cart-collaterals h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}
.cart-collaterals table {
    width: 100%;
    border-collapse: collapse;
}
.cart-collaterals th,
.cart-collaterals td {
    padding: 8px 0 !important;
    border: none !important;
    font-size: 14px;
}
.cart-collaterals th {
    font-weight: 400 !important;
    color: #666 !important;
    text-align: left;
}
.cart-collaterals td {
    text-align: right !important;
    font-weight: 700 !important;
    color: var(--color-text-main) !important;
}
.cart-savings th,
.cart-savings td {
    color: #4caf50 !important;
    background: #f1f8e9;
    padding: 10px 15px !important;
}
.cart-savings th {
    border-radius: 4px 0 0 4px;
}
.cart-savings td {
    border-radius: 0 4px 4px 0;
}
.cart-collaterals .order-total th,
.cart-collaterals .order-total td {
    padding-top: 20px !important;
    font-size: 16px !important;
}
.wc-proceed-to-checkout {
    margin-top: 20px;
}
.wc-proceed-to-checkout .checkout-button {
    background: #8bc34a !important; /* Green like screenshot */
    color: #fff !important;
    border-radius: 6px !important;
    text-align: center;
    display: block;
    padding: 15px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    box-shadow: none !important;
}
.wc-proceed-to-checkout .checkout-button:hover {
    background: #7cb342 !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .tasario-advanced-cart-container {
        flex-direction: column;
    }
    .tasario-cart-right {
        width: 100%;
    }
    .tasario-fs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .tasario-gift-note-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .gift-note-buttons {
        width: 100%;
        flex-direction: column;
    }
    .gift-note-buttons button {
        width: 100%;
        justify-content: center;
    }
    .item-title-row {
        flex-direction: column;
        gap: 5px;
    }
    .item-price-block {
        text-align: left;
    }
}

/* Fix desktop proportions and font sizes */
.tasario-cart-right { width: 360px !important; }
.item-image { width: 120px !important; height: 120px !important; }
.cart-collaterals h2 { font-size: 18px !important; }
.cart-collaterals th, .cart-collaterals td { padding: 12px 0 !important; font-size: 14px !important; }
.cart-collaterals .order-total th, .cart-collaterals .order-total td { font-size: 16px !important; padding-top: 15px !important; }

/* =========================================================
   CATEGORY / ARCHIVE PAGE STYLES (Sonsuz Kaydirma)
   ========================================================= */
.tasario-archive-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.woocommerce-products-header {
    text-align: center;
    margin-bottom: 40px;
}
.woocommerce-products-header__title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.term-description {
    color: inherit;
    font-size: 15px;
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Grid Layout */
.tasario-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -25px;
}

/* Spinner Animation */
.tasario-spinner-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
}
.tasario-spinner {
    animation: rotate 2s linear infinite;
    width: 40px;
    height: 40px;
}
.tasario-spinner .path {
    stroke: var(--color-primary, #E95902);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .tasario-archive-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .tasario-archive-container {
        width: 95%;
        margin: 20px auto;
        padding: 0;
    }
    .woocommerce-products-header {
        margin-bottom: 24px;
    }
    .woocommerce-products-header__title {
        font-size: 24px;
    }
    .tasario-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Kategori Aciklamasi (En Altta, Scrollable) */
.tasario-category-description-bottom {
    margin-top: 20px;
    padding: 16px 14px;
    background: #ffffff; /* TasarÄ±ma uygun soft arka plan */
    border-radius: 12px;
    border: 1px solid rgba(233, 89, 2, 0.1); /* TasarÄ±ma uygun ince kenarlÄ±k */
    max-height: 250px;
    overflow-y: auto;
    font-size: 15px;
    color: var(--color-text-main, #111827); /* Ana metin rengi */
    line-height: 1.6;
    text-align: justify; /* Ä°ki yana yasla */
}
.tasario-category-description-bottom h1,
.tasario-category-description-bottom h2 {
    font-size: 20px;
    color: var(--color-primary, #E95902);
    margin-bottom: 12px;
}
.tasario-category-description-bottom p {
    margin-bottom: 16px;
}
.tasario-category-description-bottom p:last-child {
    margin-bottom: 0;
}
/* Scrollbar Styling for description */
.tasario-category-description-bottom::-webkit-scrollbar {
    width: 6px;
}
.tasario-category-description-bottom::-webkit-scrollbar-track {
    background: rgba(233, 89, 2, 0.05);
    border-radius: 4px;
}
.tasario-category-description-bottom::-webkit-scrollbar-thumb {
    background: rgba(233, 89, 2, 0.2);
    border-radius: 4px;
}
.tasario-category-description-bottom::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 89, 2, 0.4);
}

/* =========================================================
   CATEGORY FAQ ACCORDION (SEO)
   ========================================================= */
.tasario-faq-accordion-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(233, 89, 2, 0.1);
}
.tasario-faq-title {
    font-size: 22px;
    color: var(--color-primary, #E95902);
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}
.tasario-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tasario-faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.tasario-faq-item:hover {
    border-color: rgba(233, 89, 2, 0.3);
    box-shadow: 0 4px 12px rgba(233, 89, 2, 0.05);
}
.tasario-faq-item.active {
    border-color: var(--color-primary, #E95902);
    box-shadow: 0 4px 12px rgba(233, 89, 2, 0.08);
}
.tasario-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main, #111827);
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}
.tasario-faq-item.active .tasario-faq-question {
    color: var(--color-primary, #E95902);
}
.tasario-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: transform 0.3s ease;
}
.tasario-faq-item.active .tasario-faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary, #E95902);
}
.tasario-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tasario-faq-answer-inner {
    padding: 0 20px 20px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}
.tasario-faq-answer-inner p {
    margin-bottom: 12px;
}
.tasario-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* Kategori Sayfasi - Kucultulmus Yuvarlaklar */
.tasario-archive-circles {
    margin-top: 25px;
    margin-bottom: 18px;
}
@media (min-width: 769px) {
    .tasario-archive-circles .category-circle-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .tasario-archive-circles .category-circle-title {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .tasario-archive-circles {
        margin-top: 5px; /* BaÅŸlÄ±kla olan boÅŸluÄŸa dokunulmadÄ± */
        margin-bottom: 8px; /* ÃœrÃ¼nler ile arasÄ±ndaki boÅŸluk kÄ±sÄ±ldÄ± */
    }
    .tasario-archive-circles .category-circle-icon {
        font-size: 18px;
    }
}

/* =========================================================
   SKELETON LOADERS
   ========================================================= */
@keyframes skeleton-pulse {
    0% { background-color: #f3f4f6; }
    50% { background-color: #e5e7eb; }
    100% { background-color: #f3f4f6; }
}

.tasario-skeleton {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
    display: block;
    width: 100%;
}

/* Image Skeleton Wrapper */
.tpc-image.is-loading {
    position: relative;
    overflow: hidden;
}
.tpc-image.is-loading::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    background-color: #f3f4f6;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.tpc-image.is-loading img {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tpc-image.is-loaded::before {
    display: none;
}
.tpc-image.is-loaded img {
    opacity: 1;
}

/* Full Card Skeleton (AJAX Infinite Scroll) */
.tasario-skeleton-card {
    background: #fff;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.tasario-skeleton-card .tpc-image {
    background-color: #f3f4f6;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}
.tasario-skeleton-card .tpc-image::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #f3f4f6;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.tasario-skeleton-card .tpc-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tasario-skeleton-card .skeleton-title {
    height: 18px;
    width: 80%;
    background-color: #f3f4f6;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
}

/* =========================================================
   FOUC (ZÄ±plama) Ã‡Ã¶zÃ¼mÃ¼ & Swiper Ä°lk YÃ¼kleme
   ========================================================= */
.swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 15px;
}
.swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 calc(50% - 15px);
    width: auto;
}
@media (min-width: 640px) {
    .swiper:not(.swiper-initialized) .swiper-slide {
        flex: 0 0 calc(40% - 15px); /* YaklaÅŸÄ±k 2.5 slide */
    }
}
@media (min-width: 768px) {
    .swiper:not(.swiper-initialized) .swiper-slide {
        flex: 0 0 calc(28% - 15px); /* YaklaÅŸÄ±k 3.5 slide */
    }
}
@media (min-width: 1024px) {
    .swiper:not(.swiper-initialized) .swiper-slide {
        flex: 0 0 calc(22% - 15px); /* YaklaÅŸÄ±k 4.5 slide */
    }
}

/* =========================================================
   FULL CARD SKELETON (Ä°lk AÃ§Ä±lÄ±ÅŸ Ä°Ã§in)
   ========================================================= */
.tasario-product-card.is-loading-full {
    pointer-events: none;
}
.tasario-product-card.is-loading-full .tpc-details * {
    opacity: 0 !important;
}
.tasario-product-card.is-loading-full .tpc-details {
    position: relative;
}
.tasario-product-card.is-loading-full .tpc-details::before {
    content: "";
    position: absolute;
    top: 15px; left: 15px; right: 15px; height: 18px;
    background-color: #f3f4f6;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
    width: 80%;
    z-index: 10;
}
.tasario-product-card.is-loading-full .tpc-details::after {
    content: "";
    position: absolute;
    top: 50px; left: 15px; height: 22px;
    background-color: #f3f4f6;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
    width: 40%;
    z-index: 10;
}
.tasario-skeleton-card .skeleton-price {
    height: 22px;
    width: 40%;
    background-color: #f3f4f6;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
}



