/* ==========================================================================
   Jhomesia - WooCommerce stil uyumlamalari (Trendyol turuncu tema)
   ========================================================================== */

/* Swiper nokta/ok rengi -> tema turuncusu */
.swiper { --swiper-theme-color: #f27a1a; }

/* ---- Genel WooCommerce butonlari -> tema amber butonu ---- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce .single_add_to_cart_button {
	background-color: #f27a1a;
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 12px 26px;
	font-weight: 600;
	transition: background-color .2s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce .single_add_to_cart_button:hover {
	background-color: #d96c12;
	color: #fff;
}

/* ---- Urun karti "Sepete Ekle" baglantisi (anasayfa + magaza) ---- */
.product-item .add_to_cart_button,
.product-item a.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: #222;
	text-decoration: none;
}
.product-item .add_to_cart_button:hover {
	color: #d96c12;
}
.product-item .add_to_cart_button.loading {
	opacity: .6;
	pointer-events: none;
}
.product-item .add_to_cart_button.added {
	color: #2e7d32;
}

/* ---- Magaza ust bilgi: sonuc sayisi + siralama ---- */
.woocommerce .woocommerce-result-count {
	margin-bottom: 1.5rem;
	color: #6c757d;
}
.woocommerce .woocommerce-ordering {
	margin-bottom: 1.5rem;
}
.woocommerce .woocommerce-ordering select {
	padding: 8px 12px;
	border: 1px solid #eee;
	border-radius: 6px;
	background: #f8f8f8;
}

/* ---- Sayfalama ---- */
.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	gap: 8px;
	display: flex;
	justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	border-radius: 6px;
	background: #f6f6f6;
	padding: 8px 14px;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: #f27a1a;
	color: #fff;
}

/* ---- Tekil urun sayfasi ---- */
.single-product div.product {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.single-product div.product .woocommerce-product-gallery {
	flex: 1 1 380px;
	max-width: 480px;
}
.single-product div.product .summary {
	flex: 1 1 380px;
	margin: 0;
}
.single-product div.product .woocommerce-product-gallery__image img {
	border-radius: 16px;
	background: #f9f9f9;
}
.single-product .product_title {
	font-weight: 700;
	font-size: 30px;
	margin-bottom: .5rem;
}
.single-product .summary .price {
	font-size: 26px;
	font-weight: 700;
	color: #222;
	margin: .5rem 0 1rem;
}
.single-product .summary .stock.in-stock {
	color: #2e7d32;
	font-weight: 600;
}
.single-product .summary .stock.out-of-stock {
	color: #d32f2f;
	font-weight: 700;
}
.single-product .woocommerce-tabs {
	flex: 1 1 100%;
	margin-top: 20px;
}
.single-product .quantity input.qty {
	height: 46px;
	width: 70px;
	border: 1px solid #eee;
	border-radius: 6px;
	text-align: center;
}
.single-product .product_meta {
	margin-top: 1.5rem;
	font-size: 14px;
	color: #6c757d;
}

/* ---- Sepete eklendi / hata bildirimleri ---- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 8px;
	border-top: 0;
	padding: 14px 18px 14px 48px;
}
.woocommerce-message::before { color: #2e7d32; }
.woocommerce-message { border-left: 4px solid #2e7d32; background: #f1f8f2; }
.woocommerce-info    { border-left: 4px solid #f27a1a; background: #fef1e7; }
.woocommerce-error   { border-left: 4px solid #d32f2f; background: #fdecea; }

/* ---- Hesabim sayfasi ---- */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	border-bottom: 1px solid #f0f0f0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 12px 4px;
	color: #222;
	text-decoration: none;
	font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	color: #d96c12;
}

/* Responsive: tekil urun tek sutun */
@media (max-width: 767px) {
	.single-product div.product { gap: 24px; }
	.single-product div.product .woocommerce-product-gallery,
	.single-product div.product .summary { flex: 1 1 100%; max-width: 100%; }
}

/* ==========================================================================
   Trendyol benzeri urun karti (.jh-product)
   ========================================================================== */
.product-grid { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }

.jh-product {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow .18s ease, border-color .18s ease;
}
.jh-product:hover {
	box-shadow: 0 8px 26px rgba(0, 0, 0, .09);
	border-color: #e4e4e4;
}

.jh-product-media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #f7f7f8;
}
.jh-product-imglink {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}
.jh-product-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 14px;
	mix-blend-mode: multiply;
}
.jh-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 5px 8px;
	border-radius: 6px;
}
.jh-badge.sale { background: #ff3d57; color: #fff; }
.jh-badge.out  { background: #6c757d; color: #fff; }
.jh-wish {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 4;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	color: #b8b8b8;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .12);
	transition: color .15s ease;
}
.jh-wish:hover { color: #ff3d57; }

.jh-product-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 12px 12px 14px;
	flex: 1 1 auto;
}
.jh-product-cat {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: #9aa0a6;
}
.jh-product-title {
	margin: 0;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 700;
	min-height: 2.7em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.jh-product-title a { color: #1f2430; text-decoration: none; }
.jh-product-title a:hover { color: #f27a1a; }

/* ---- Blog kartlari (anasayfa + blog listesi) ---- */
.jh-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.jh-blog-card { background: #fff; border: 1px solid #eef0f4; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.05); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.jh-blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.1); border-color: #f7d9c2; }
.jh-blog-thumb { display: block; overflow: hidden; }
/* Konuya ozel inline SVG kapak (foto yerine) */
.jh-blog-cover { display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #ef7314; }
.jh-blog-cover .jh-cover-bg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.jh-blog-cover > .bi { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 58px; line-height: 1; color: #fff; opacity: .97; text-shadow: 0 6px 18px rgba(0,0,0,.18); transition: transform .3s ease; }
.jh-blog-card:hover .jh-blog-cover > .bi { transform: translate(-50%, -50%) scale(1.1); }
.jh-single-cover .jh-blog-cover { aspect-ratio: 24 / 8; border-radius: 16px; }
.jh-single-cover .jh-blog-cover > .bi { font-size: 84px; }
.jh-blog-body { padding: 15px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.jh-blog-date { font-size: 12px; color: #9aa0a6; display: inline-flex; align-items: center; gap: 5px; }
.jh-blog-title { font-size: 16.5px; font-weight: 700; line-height: 1.35; margin: 0; }
.jh-blog-title a { color: #1f2430; text-decoration: none; }
.jh-blog-title a:hover { color: #f27a1a; }
.jh-blog-excerpt { font-size: 13.5px; color: #6b7280; line-height: 1.6; margin: 0; flex: 1; }
.jh-blog-more { margin-top: 2px; font-weight: 600; font-size: 13.5px; color: #f27a1a; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .15s ease, color .15s ease; }
.jh-blog-more:hover { color: #d96c12; gap: 9px; }
.jh-blog-pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.jh-blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 10px; border: 1px solid #eef0f4; color: #444; text-decoration: none; font-weight: 600; }
.jh-blog-pagination .page-numbers.current,
.jh-blog-pagination .page-numbers:hover { background: #f27a1a; border-color: #f27a1a; color: #fff; }

.jh-product-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: #8a8f94;
}
.jh-product-rating .stars { display: inline-flex; color: #f27a1a; }

.jh-product-price {
	margin-top: auto;
	padding-top: 6px;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
}
.jh-product-price .woocommerce-Price-amount { font-size: 19px; font-weight: 800; color: #16161a; }
.jh-product-price del { order: 2; }
.jh-product-price del .woocommerce-Price-amount { font-size: 13px; font-weight: 500; color: #9aa0a6; text-decoration: line-through; }
.jh-product-price ins { text-decoration: none; }
.jh-product-price ins .woocommerce-Price-amount { color: #e53935; }

.jh-add {
	margin-top: 10px;
	display: block;
	text-align: center;
	background: #f27a1a;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	padding: 9px 12px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color .15s ease;
}
.jh-add:hover { background: #d96c12; color: #fff; }
.jh-add.loading { opacity: .65; pointer-events: none; }
.jh-add.added::after { content: " ✓"; }

/* Adet (- 1 +) + sepet ikon buton */
.jh-card-actions { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.jh-qty { display: flex; align-items: center; flex: 1 1 auto; border: 1px solid #ececec; border-radius: 8px; overflow: hidden; }
.jh-qty-btn { width: 32px; height: 36px; border: 0; background: #f7f7f7; color: #333; font-size: 16px; line-height: 1; cursor: pointer; padding: 0; transition: background-color .15s, color .15s; }
.jh-qty-btn:hover { background: #fef1e7; color: #f27a1a; }
.jh-qty-input { width: 100%; min-width: 28px; flex: 1 1 auto; height: 36px; border: 0; text-align: center; font-weight: 700; font-size: 14px; color: #222; background: #fff; outline: none; -moz-appearance: textfield; }
.jh-add-icon { flex: 0 0 auto; width: 44px; height: 36px; display: flex; align-items: center; justify-content: center; background: #f27a1a; color: #fff; border-radius: 8px; text-decoration: none; transition: background-color .15s ease; }
.jh-add-icon:hover { background: #d96c12; color: #fff; }
.jh-add-icon.loading { opacity: .6; pointer-events: none; }
.jh-add-icon.added { background: #2e7d32; }

/* bi ikon boyutlari (urun karti) */
.jh-wish .bi { font-size: 16px; line-height: 1; }
.jh-add-icon .bi { font-size: 18px; line-height: 1; }
.jh-product-rating .bi { font-size: 13px; }
.jh-out {
	margin-top: 10px;
	display: block;
	text-align: center;
	background: #f1f1f1;
	color: #999;
	font-weight: 600;
	font-size: 13px;
	padding: 9px 12px;
	border-radius: 8px;
}

/* Oane cikan carousel: kartlar esit yukseklik */
.products-carousel .swiper-wrapper { align-items: stretch; }
.products-carousel .swiper-slide { height: auto; display: flex; }
.products-carousel .swiper-slide > .jh-product { width: 100%; }

/* ==========================================================================
   Metin logo (hesap.club) - gercek logo gelene kadar
   ========================================================================== */
.jh-logo {
	font-weight: 800;
	font-size: 26px;
	letter-spacing: -.5px;
	color: #1c1c22;
	text-decoration: none;
	font-family: 'Nunito', sans-serif;
}
.jh-logo span { color: #f27a1a; }
.jh-logo:hover { color: #1c1c22; }
#footer-bottom .jh-logo, footer .jh-logo { color: #fff; }
footer .jh-logo span { color: #f27a1a; }

/* ==========================================================================
   Sepet paneli (offcanvas mini-cart - Trendyol benzeri)
   ========================================================================== */
.jh-cart-count.is-empty { display: none; }

.jh-cart-offcanvas { width: 400px; max-width: 92vw; }
.jh-cart-offcanvas .offcanvas-header { border-bottom: 1px solid #f0f0f0; }
.jh-cart-offcanvas .offcanvas-title { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.jh-cart-offcanvas .offcanvas-title .bi { color: #f27a1a; }
.jh-cart-offcanvas .offcanvas-body { display: flex; flex-direction: column; }
.widget_shopping_cart_content { display: flex; flex-direction: column; height: 100%; }

.woocommerce-mini-cart {
	list-style: none; margin: 0; padding: 0;
	flex: 1 1 auto; overflow-y: auto;
}
.woocommerce-mini-cart-item {
	display: block; position: relative;
	padding: 14px 38px 14px 0; border-bottom: 1px solid #f3f3f3;
}
.woocommerce-mini-cart-item > a:not(.remove) {
	display: flex; align-items: center; gap: 12px;
	color: #2b2b2b; text-decoration: none; font-weight: 500; font-size: 14px; line-height: 1.35;
}
.woocommerce-mini-cart-item img {
	width: 54px !important; height: 54px; object-fit: contain;
	border-radius: 8px; background: #f7f7f8; margin: 0 !important; float: none !important;
}
.jh-mini-bottom {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: 10px; padding-left: 66px;
}
.jh-mini-qty {
	display: inline-flex; align-items: center;
	border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden;
}
.jh-mini-qty.loading { opacity: .5; pointer-events: none; }
.jh-mini-qty button {
	width: 28px; height: 30px; border: 0; background: #f7f7f7;
	color: #333; font-size: 15px; line-height: 1; cursor: pointer; padding: 0;
}
.jh-mini-qty button:hover { background: #fef1e7; color: #f27a1a; }
.jh-mini-q { min-width: 30px; text-align: center; font-weight: 700; font-size: 13px; }
.jh-mini-price { color: #f27a1a; font-weight: 800; font-size: 14px; }
.woocommerce-mini-cart-item .remove_from_cart_button {
	position: absolute; top: 16px; right: 0;
	width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
	border-radius: 50%; background: #f5f5f5; color: #999 !important;
	font-size: 16px; line-height: 1; text-decoration: none;
}
.woocommerce-mini-cart-item .remove_from_cart_button:hover { background: #ffe3e3; color: #e53935 !important; }

.woocommerce-mini-cart__total {
	display: flex; justify-content: space-between; align-items: center;
	padding: 16px 0; font-size: 15px; border-top: 2px solid #f0f0f0; margin-top: auto;
}
.woocommerce-mini-cart__total .woocommerce-Price-amount { color: #f27a1a; font-weight: 800; font-size: 18px; }

.woocommerce-mini-cart__buttons { display: flex; gap: 10px; margin: 0; padding-bottom: 4px; }
.woocommerce-mini-cart__buttons .button {
	flex: 1; text-align: center; padding: 12px; border-radius: 8px; font-weight: 600;
	background: #f3f3f3; color: #333; text-decoration: none; transition: background-color .15s;
}
.woocommerce-mini-cart__buttons .button.checkout { background: #f27a1a; color: #fff; }
.woocommerce-mini-cart__buttons .button.checkout:hover { background: #d96c12; }
.woocommerce-mini-cart__buttons .button:not(.checkout):hover { background: #e9e9e9; }

.woocommerce-mini-cart__empty-message { text-align: center; color: #888; padding: 40px 10px; }

/* ==========================================================================
   Sepet sayfasi (Trendyol benzeri iki sutun)
   ========================================================================== */
.jh-cart-items { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; overflow: hidden; }
.jh-cart-item { display: flex; align-items: center; gap: 16px; padding: 16px; border-bottom: 1px solid #f3f3f3; }
.jh-cart-item:last-child { border-bottom: 0; }
.jh-cart-item__thumb img { width: 72px; height: 72px; object-fit: contain; border-radius: 10px; background: #f7f7f8; }
.jh-cart-item__info { flex: 1 1 auto; min-width: 0; }
.jh-cart-item__name a { color: #222; font-weight: 600; text-decoration: none; }
.jh-cart-item__name a:hover { color: #f27a1a; }
.jh-cart-item__unit { color: #888; font-size: 13px; margin-top: 4px; }
.jh-cart-item__qty .quantity { display: inline-flex; }
.jh-cart-item__subtotal { font-weight: 800; color: #16161a; min-width: 90px; text-align: right; }
.jh-cart-item__remove .remove { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: #c0392b !important; background: #fff5f5; font-size: 15px; text-decoration: none; }
.jh-cart-item__remove .remove:hover { background: #ffe3e3; }

.jh-cart-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 16px; }
.jh-cart-actions .coupon { display: flex; gap: 8px; flex: 1 1 auto; }
.jh-cart-actions .coupon input { height: 44px; border: 1px solid #e6e6e6; border-radius: 8px; padding: 0 14px; flex: 1 1 auto; max-width: 240px; }
.jh-cart-actions .button { height: 44px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; }
.jh-update-cart { background: #f3f3f3 !important; color: #333 !important; }
.jh-update-cart:hover { background: #e7e7e7 !important; }

.jh-cart-collaterals { position: sticky; top: 90px; }
/* WooCommerce varsayilan float:right; width:48% ezilir -> kutu sutunu tam doldursun */
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.jh-cart-collaterals .cart_totals { width: 100% !important; float: none !important; }
.cart_totals { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 20px; }
.cart_totals h2 { font-size: 18px; font-weight: 800; margin: 0 0 16px; }
.cart_totals table { width: 100%; border: 0 !important; margin: 0; }
.cart_totals table tbody, .cart_totals table tr { border: 0 !important; }
.cart_totals table th, .cart_totals table td { border: 0 !important; padding: 11px 0; text-align: left; white-space: nowrap; vertical-align: middle; }
.cart_totals table th { font-weight: 500; color: #555; }
.cart_totals table td { text-align: right; }
.cart_totals .cart-subtotal { border-bottom: 1px solid #f0f0f0; }
.cart_totals .order-total th, .cart_totals .order-total .amount { font-size: 18px; font-weight: 800; color: #f27a1a; }
.cart_totals .wc-proceed-to-checkout { padding: 16px 0 0; }
.cart_totals .checkout-button { display: block; text-align: center; width: 100%; background: #f27a1a !important; color: #fff !important; font-weight: 700 !important; padding: 14px !important; border-radius: 10px !important; font-size: 16px; }
.cart_totals .checkout-button:hover { background: #d96c12 !important; }

@media (max-width: 991px) {
	.jh-cart-collaterals { position: static; margin-top: 20px; }
}
@media (max-width: 575px) {
	.jh-cart-item { flex-wrap: wrap; }
	.jh-cart-item__subtotal { text-align: left; }
}

/* ==========================================================================
   Magaza/kategori sol filtre + SEO makalesi
   ========================================================================== */
.jh-filter-box { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 18px; margin-bottom: 18px; }
.jh-filter-title { font-size: 15px; font-weight: 700; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.jh-filter-title .bi { color: #f27a1a; }
.jh-filter-cats li a { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 8px; color: #555; text-decoration: none; font-weight: 500; font-size: 14px; transition: background .15s, color .15s; }
.jh-filter-cats li a .bi { color: #f27a1a; font-size: 15px; flex: 0 0 auto; }
.jh-filter-cats li a .jh-fc-count { margin-left: auto; color: #aaa; font-size: 12px; }
.jh-filter-cats li a:hover { background: #fef1e7; color: #f27a1a; }
.jh-filter-cats li a.active { background: #f27a1a; color: #fff; }
.jh-filter-cats li a.active .bi, .jh-filter-cats li a.active .jh-fc-count { color: #ffe9d8; }

.jh-price-filter .jh-price-row { display: flex; align-items: center; gap: 8px; }
.jh-price-filter input { width: 100%; height: 40px; border: 1px solid #e6e6e6; border-radius: 8px; padding: 0 10px; text-align: center; }
.jh-price-filter span { color: #aaa; }
.jh-price-btn { width: 100%; margin-top: 10px; background: #f27a1a; color: #fff; border: 0; border-radius: 8px; padding: 10px; font-weight: 600; cursor: pointer; transition: background .15s; }
.jh-price-btn:hover { background: #d96c12; }

.jh-cat-seo { margin-top: 36px; padding-top: 26px; border-top: 1px solid #f0f0f0; }
.jh-cat-seo__body { color: #6c757d; font-size: 14.5px; line-height: 1.8; }
.jh-cat-seo__body h2, .jh-cat-seo__body h3 { color: #222; font-size: 18px; font-weight: 700; margin: 0 0 10px; }

@media (max-width: 991px) {
	.jh-shop-sidebar { order: 2; }
}

/* ==========================================================================
   Bakiye / cüzdan sayfaları
   ========================================================================== */
.jh-balance-box { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg, #f27a1a, #f9a64d); color: #fff; padding: 22px 26px; border-radius: 14px; margin-bottom: 18px; }
.jh-balance-box span { font-size: 14px; opacity: .92; }
.jh-balance-box strong { font-size: 26px; }
.jh-tx-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.jh-tx-table th, .jh-tx-table td { text-align: left; padding: 11px 8px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.jh-tx-table th { color: #888; font-weight: 600; }
.jh-tx-table td.pos { color: #2e7d32; font-weight: 700; }
.jh-tx-table td.neg { color: #d32f2f; font-weight: 700; }
.jh-topup-bank { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 22px; margin-bottom: 18px; }
.jh-bank-list { list-style: none; padding: 0; margin: 14px 0 0; }
.jh-bank-list li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid #f3f3f3; }
.jh-bank-list li:last-child { border-bottom: 0; }
.jh-bank-list li span { color: #888; }
.jh-bank-list .jh-iban { font-family: monospace; letter-spacing: .5px; }
.jh-topup-note { color: #888; font-size: 13px; margin-top: 14px; line-height: 1.6; }
.jh-topup-form { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.jh-topup-form label { font-weight: 600; font-size: 14px; }
.jh-topup-form input { height: 46px; border: 1px solid #e6e6e6; border-radius: 8px; padding: 0 14px; }
.jh-topup-form .button { background: #f27a1a !important; color: #fff !important; border: 0; margin-top: 4px; }

/* ==========================================================================
   WooCommerce adet stepper (- [n] +) - sepet & urun detay
   ========================================================================== */
.jh-wc-qty { display: inline-flex; align-items: center; border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; background: #fff; }
.jh-wc-qty .jh-wc-minus, .jh-wc-qty .jh-wc-plus {
	width: 34px; height: 40px; border: 0; background: #f7f7f7; color: #333;
	font-size: 16px; line-height: 1; cursor: pointer; padding: 0; flex: 0 0 auto;
	transition: background-color .15s, color .15s;
}
.jh-wc-qty .jh-wc-minus:hover, .jh-wc-qty .jh-wc-plus:hover { background: #fef1e7; color: #f27a1a; }
.jh-wc-qty input.qty {
	width: 46px; height: 40px; border: 0; border-left: 1px solid #eee; border-right: 1px solid #eee;
	text-align: center; font-weight: 700; font-size: 14px; background: #fff; color: #222;
	-moz-appearance: textfield; appearance: textfield;
}
.jh-wc-qty input.qty::-webkit-outer-spin-button,
.jh-wc-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.jh-wc-qty.is-readonly input.qty { border: 1px solid #eee; border-radius: 8px; }

/* Sepet kalemi ajax guncellenirken */
.jh-cart-item.jh-loading { opacity: .5; pointer-events: none; transition: opacity .15s; }

/* ==========================================================================
   Checkout: bakiye odeme + teslimat alanlari
   ========================================================================== */
.jh-hidden { display: none !important; }
.jh-pay-balance { margin-top: 6px; }
.jh-pay-insufficient { margin-top: 6px; color: #d32f2f; font-weight: 600; }
.jh-pay-insufficient a { color: #f27a1a; text-decoration: underline; }

#jh-delivery-fields { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 22px; margin: 22px 0; }
#jh-delivery-fields > h3 { font-size: 18px; font-weight: 800; margin: 0 0 4px; }
.jh-delivery-desc { color: #888; font-size: 13px; margin-bottom: 16px; }
.jh-delivery-product { padding: 14px 0; border-top: 1px solid #f3f3f3; }
.jh-delivery-product:first-of-type { border-top: 0; }
.jh-delivery-product h4 { font-size: 15px; font-weight: 700; margin: 0 0 10px; color: #f27a1a; }
#jh-delivery-fields label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 5px; }
#jh-delivery-fields .input-text { width: 100%; height: 46px; border: 1px solid #e6e6e6; border-radius: 8px; padding: 0 14px; }
#jh-delivery-fields abbr.required { color: #d32f2f; border: 0; text-decoration: none; }

/* ==========================================================================
   Giriş / Üye Ol / Şifremi Unuttum
   ========================================================================== */
.jh-auth { display: flex; align-items: stretch; gap: 38px; max-width: 940px; margin: 10px auto 36px; }
.jh-auth--single { max-width: 760px; }
.jh-auth-mascot { flex: 0 0 380px; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #fff4ec, #fde7d6); border-radius: 18px; padding: 18px; }
.jh-auth-mascot .jh-mascot { display: none; width: 100%; max-width: 320px; height: auto; }
.jh-auth-mascot .jh-mascot.is-active { display: block; }
/* Sifremi unuttum (tek sutun): mascot biraz daha kucuk, kart ile dengeli */
.jh-auth--single .jh-auth-mascot { flex: 0 0 300px; }
.jh-auth--single .jh-auth-mascot .jh-mascot { max-width: 250px; }
.jh-auth-card { flex: 1 1 auto; background: #fff; border: 1px solid #f0f0f0; border-radius: 18px; padding: 28px 30px; box-shadow: 0 6px 30px rgba(0,0,0,.04); }
.jh-auth-tabs { display: flex; gap: 6px; border-bottom: 2px solid #f0f0f0; margin-bottom: 22px; }
.jh-auth-tabs .jh-tab { background: none; border: 0; padding: 10px 14px; font-size: 16px; font-weight: 700; color: #9aa0a6; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.jh-auth-tabs .jh-tab.is-active { color: #f27a1a; border-bottom-color: #f27a1a; }
.jh-auth-pane { display: none; }
.jh-auth-pane.is-active { display: block; }
.jh-auth .form-row { margin: 0 0 16px; display: block; }
.jh-auth label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #333; }
.jh-auth label .required { color: #d32f2f; }
.jh-auth .input-text { width: 100%; height: 48px; border: 1px solid #e6e6e6; border-radius: 10px; padding: 0 14px; font-size: 15px; }
.jh-auth .input-text:focus { border-color: #f27a1a; outline: none; box-shadow: 0 0 0 3px rgba(242,122,26,.12); }
.jh-auth-submit { width: 100%; background: #f27a1a !important; color: #fff !important; border: 0 !important; height: 50px; border-radius: 10px !important; font-weight: 700 !important; font-size: 16px; }
.jh-auth-submit:hover { background: #d96c12 !important; }
.jh-auth-row { display: flex; align-items: center; justify-content: space-between; }
.jh-remember { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: #555; font-weight: 500; margin: 0; }
.jh-lost { color: #f27a1a; font-size: 14px; text-decoration: none; }
.jh-lost:hover { text-decoration: underline; }
.jh-auth-note { color: #777; font-size: 13.5px; line-height: 1.6; margin: 0 0 16px; }
.jh-auth .woocommerce-privacy-policy-text p { font-size: 13px; color: #888; margin: 0 0 16px; line-height: 1.6; }
.jh-or { display: flex; align-items: center; text-align: center; color: #aaa; font-size: 13px; margin: 18px 0; }
.jh-or::before, .jh-or::after { content: ""; flex: 1; height: 1px; background: #eee; }
.jh-or span { padding: 0 14px; }
.jh-google-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; height: 48px; border: 1px solid #e2e2e2; border-radius: 10px; background: #fff; color: #333; font-weight: 600; text-decoration: none; transition: background .15s, border-color .15s; }
.jh-google-btn:hover { background: #f7f7f7; border-color: #d8d8d8; color: #333; }
.jh-captcha-row { margin: 0 0 16px; }
@media (max-width: 767px) {
	.jh-auth { flex-direction: column; gap: 20px; }
	.jh-auth-mascot { flex: 0 0 auto; }
	.jh-auth-mascot .jh-mascot { max-width: 230px; }
}

/* ==========================================================================
   Magaza/kategori urun izgarasi - float fix + garantili esit sutun
   ========================================================================== */
.jh-shop-content .woocommerce-result-count,
.jh-shop-content .woocommerce-ordering { float: none; }
.jh-shop-content .product-grid {
	clear: both;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px 16px;
	margin: 0 !important;
	width: 100%;
}
.jh-shop-content .product-grid > .col {
	width: auto !important;
	max-width: none !important;
	flex: none !important;
	padding: 0 !important;
}
@media (max-width: 1199.98px) { .jh-shop-content .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767.98px)  { .jh-shop-content .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 479.98px)  { .jh-shop-content .product-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); } }

/* ==========================================================================
   Tekil ürün: galeri + tablar + değerlendirmeler
   ========================================================================== */
.single-product div.product .woocommerce-product-gallery { max-width: 440px; }
.single-product div.product .woocommerce-product-gallery__image img,
.single-product .wp-post-image { border-radius: 16px; background: #f7f7f8; }
.single-product .summary .woocommerce-product-details__short-description { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.single-product .summary form.cart { margin: 16px 0; display: flex; align-items: center; gap: 12px; }
.single-product .product_meta a { color: #f27a1a; text-decoration: none; }

/* Tablar */
.woocommerce-tabs { margin-top: 40px; }
.woocommerce-tabs ul.tabs { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; margin: 0 0 24px; padding: 0; border-bottom: 2px solid #f0f0f0; }
.woocommerce-tabs ul.tabs::before, .woocommerce-tabs ul.tabs::after { display: none; }
.woocommerce-tabs ul.tabs li { margin: 0; padding: 0; background: none; border: 0; border-radius: 0; }
.woocommerce-tabs ul.tabs li::before, .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce-tabs ul.tabs li a { display: block; padding: 12px 18px; font-weight: 700; font-size: 15px; color: #9aa0a6; text-decoration: none; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.woocommerce-tabs ul.tabs li.active a { color: #f27a1a; border-bottom-color: #f27a1a; }
.woocommerce-tabs .woocommerce-Tabs-panel { padding: 0; }
.woocommerce-tabs .woocommerce-Tabs-panel > h2 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }

/* Değerlendirmeler */
#reviews #comments > h2 { font-size: 20px; font-weight: 800; }
#reviews .commentlist { list-style: none; padding: 0; margin: 0 0 24px; }
#reviews .commentlist li { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; }
#reviews .commentlist .star-rating { color: #f27a1a; }
#review_form_wrapper { background: #fff; border: 1px solid #f0f0f0; border-radius: 16px; padding: 24px; max-width: 680px; }
#review_form_wrapper h3 { font-size: 18px; font-weight: 800; margin: 0 0 6px; }
.comment-form { display: grid; gap: 14px; }
.comment-form > p { margin: 0; }
.comment-form label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 5px; color: #333; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea { width: 100%; border: 1px solid #e6e6e6; border-radius: 10px; padding: 11px 14px; font-size: 14px; background: #fff; }
.comment-form input[type="text"], .comment-form input[type="email"] { height: 46px; }
.comment-form input:focus, .comment-form textarea:focus { border-color: #f27a1a; outline: none; box-shadow: 0 0 0 3px rgba(242,122,26,.12); }
.comment-form-rating .stars a { color: #f27a1a !important; }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #888; }
.comment-form-cookies-consent input { margin-top: 3px; }
.comment-form .form-submit { margin: 0; }
.comment-form .form-submit input { background: #f27a1a; color: #fff; border: 0; border-radius: 10px; padding: 13px 30px; font-weight: 700; font-size: 15px; cursor: pointer; transition: background .15s; }
.comment-form .form-submit input:hover { background: #d96c12; }

/* İlgili ürünler */
.related.products > h2, .upsells.products > h2 { font-size: 22px; font-weight: 800; margin: 40px 0 20px; }

/* ==========================================================================
   Tekil ürün zenginleştirme (aciliyet + güvence + açıklama)
   ========================================================================== */
.jh-urgency { display: inline-flex; align-items: center; gap: 8px; background: #fdecea; color: #d32f2f; font-weight: 700; font-size: 14px; padding: 9px 14px; border-radius: 10px; margin: 6px 0 14px; }
.jh-urgency .bi { font-size: 16px; }
.jh-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0 6px; max-width: 640px; }
.jh-trust-item { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid #eef0f4; border-radius: 12px; padding: 10px; font-size: 12.5px; font-weight: 700; color: #2b2f36; line-height: 1.25; box-shadow: 0 2px 8px rgba(0, 0, 0, .04); transition: box-shadow .15s ease, transform .15s ease; }
.jh-trust-item:hover { box-shadow: 0 6px 16px rgba(0, 0, 0, .08); transform: translateY(-1px); }
.jh-trust-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background-size: 26px 26px; background-repeat: no-repeat; background-position: center; }
.jh-trust-oto     .jh-trust-ic { background-color: #e6f8ee; background-image: url(../images/tag-check.svg); }
.jh-trust-manuel  .jh-trust-ic { background-color: #e8f0ff; background-image: url(../images/tag-person.svg); }
.jh-trust-guar    .jh-trust-ic { background-color: #fff3e0; background-image: url(../images/tag-shield.svg); }
.jh-trust-support .jh-trust-ic { background-color: #e1f7f7; background-image: url(../images/tag-support.svg); }
@media (max-width: 575px) { .jh-trust { grid-template-columns: 1fr; } }
.jh-guarantee { display: flex; align-items: flex-start; gap: 12px; background: #f1f8f2; border: 1px solid #d7ecd9; border-radius: 12px; padding: 16px 18px; margin-bottom: 20px; }
.jh-guarantee > .bi { color: #2e7d32; font-size: 22px; flex: 0 0 auto; margin-top: 2px; }
.jh-guarantee strong { display: block; font-size: 15px; margin-bottom: 3px; color: #1b5e20; }
.jh-guarantee p { margin: 0; color: #4a6b4d; font-size: 14px; line-height: 1.6; }
.jh-desc h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; color: #222; }
.jh-desc p { color: #555; line-height: 1.7; }

/* ==========================================================================
   Ürün kartı rozetleri (teslimat tipi + garanti) - hafif opak, sol üst
   ========================================================================== */
.jh-card-tags { position: absolute; top: 9px; left: 9px; z-index: 3; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; max-width: calc(100% - 52px); }
.jh-card-tags .jh-badge { position: static; top: auto; left: auto; }
.jh-tag {
	position: relative; overflow: hidden;
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 11.5px; font-weight: 700; line-height: 1;
	padding: 5px 7px 5px 11px; border-radius: 999px;
	color: #fff; letter-spacing: .01em; white-space: nowrap;
	border: 1px solid rgba(255, 255, 255, .3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
	-webkit-backdrop-filter: blur(5px) saturate(1.3); backdrop-filter: blur(5px) saturate(1.3);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .45);
	transition: transform .15s ease, box-shadow .15s ease;
}
/* cam parlaması (üst yarı highlight) */
.jh-tag::before {
	content: ""; position: absolute; left: 0; right: 0; top: 0; height: 52%;
	background: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0));
	pointer-events: none;
}
/* sağdaki pofuduk SVG mascot */
.jh-tag::after {
	content: ""; flex: none; width: 18px; height: 18px;
	background-size: contain; background-repeat: no-repeat; background-position: center;
	filter: drop-shadow(0 1.5px 2px rgba(0, 0, 0, .28));
}
.jh-tag-oto    { background: linear-gradient(135deg, rgba(34, 197, 94, .92), rgba(13, 138, 68, .94)); }
.jh-tag-manuel { background: linear-gradient(135deg, rgba(56, 132, 246, .92), rgba(21, 90, 200, .94)); }
.jh-tag-guar   { background: linear-gradient(135deg, rgba(245, 165, 35, .94), rgba(214, 120, 8, .95)); }
.jh-tag-oto::after    { background-image: url(../images/tag-check.svg); }
.jh-tag-manuel::after { background-image: url(../images/tag-person.svg); }
.jh-tag-guar::after   { background-image: url(../images/tag-shield.svg); }
.jh-tag:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .45); }
@media (max-width: 575px) {
	.jh-card-tags { gap: 5px; }
	.jh-tag { font-size: 10px; padding: 4px 6px 4px 9px; gap: 5px; }
	.jh-tag::after { width: 15px; height: 15px; }
}

/* ==========================================================================
   Sosyal kanıt: görüntülenme + anlık inceleyen (ürün sayfası)
   ========================================================================== */
.jh-socialproof { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin: 16px 0; padding: 12px 16px; background: #f8f9fb; border: 1px solid #eef0f4; border-radius: 12px; font-size: 13.5px; color: #5b6470; }
.jh-sp-item { display: inline-flex; align-items: center; gap: 6px; }
.jh-sp-views .bi { color: #f27a1a; font-size: 16px; }
.jh-sp-item strong { color: #2b2f36; font-weight: 700; }
.jh-sp-sep { width: 1px; height: 16px; background: #e2e5ea; }
.jh-sp-online strong { color: #16a34a; }
.jh-sp-dot { width: 9px; height: 9px; border-radius: 50%; background: #28c76f; flex: none; animation: jhPulse 1.8s infinite; }
@keyframes jhPulse {
	0%   { box-shadow: 0 0 0 0 rgba(40, 199, 111, .55); }
	70%  { box-shadow: 0 0 0 7px rgba(40, 199, 111, 0); }
	100% { box-shadow: 0 0 0 0 rgba(40, 199, 111, 0); }
}

/* ==========================================================================
   Kategori / mağaza hero banner (ürünlerin üstünde)
   ========================================================================== */
.jh-cat-hero { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; overflow: hidden; margin: 0 0 24px; padding: 26px 32px; border-radius: 18px; background: linear-gradient(120deg, #d9650c 0%, #f27a1a 45%, #ff9c47 100%); color: #fff; box-shadow: 0 12px 28px rgba(242, 122, 26, .26); }
.jh-cat-hero::before { content: ""; position: absolute; right: -50px; top: -70px; width: 230px; height: 230px; background: rgba(255, 255, 255, .12); border-radius: 50%; }
.jh-cat-hero::after { content: ""; position: absolute; right: 70px; bottom: -90px; width: 160px; height: 160px; background: rgba(255, 255, 255, .08); border-radius: 50%; }
.jh-cat-hero__text { position: relative; z-index: 2; max-width: 62%; }
.jh-cat-hero__title { font-size: 30px; font-weight: 800; line-height: 1.15; margin: 0 0 9px; color: #fff; display: flex; align-items: center; gap: 11px; text-shadow: 0 1px 3px rgba(0, 0, 0, .28); }
.jh-cat-hero__title .bi { font-size: 26px; opacity: .95; }
.jh-cat-hero__tag { margin: 0 0 12px; font-size: 15px; line-height: 1.5; text-shadow: 0 1px 2px rgba(0, 0, 0, .25); }
.jh-cat-hero__count { display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, .22); padding: 5px 13px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.jh-cat-hero__art { position: relative; z-index: 2; flex: none; }
.jh-cat-hero__art img { height: 138px; width: auto; display: block; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .2)); }
@media (max-width: 767px) {
	.jh-cat-hero { padding: 20px 22px; }
	.jh-cat-hero__title { font-size: 24px; }
	.jh-cat-hero__text { max-width: 70%; }
	.jh-cat-hero__art img { height: 100px; }
}
@media (max-width: 479px) {
	.jh-cat-hero__art { display: none; }
	.jh-cat-hero__text { max-width: 100%; }
}

/* ==========================================================================
   Ürün özeti: kısa açıklama kırpma + "Devamını gör"
   ========================================================================== */
.woocommerce-product-details__short-description { font-size: 14.5px; color: #555; line-height: 1.65; margin: 4px 0 6px; }
.woocommerce-product-details__short-description.jh-sd-collapsed {
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.jh-sd-more { background: none; border: 0; color: #f27a1a; font-weight: 700; font-size: 13.5px; padding: 2px 0 8px; cursor: pointer; }
.jh-sd-more:hover { text-decoration: underline; }

/* ==========================================================================
   Favorilerim (wishlist)
   ========================================================================== */
/* kart kalbi (button reset + aktif) */
.jh-wish { border: 0; padding: 0; cursor: pointer; }
.jh-wish.is-active { color: #ff3d57; }
.jh-wish.is-active:hover { color: #e02d47; }

/* tekil ürün "Favorilere Ekle" metin butonu (kart kalbi stillerini ezer) */
.jh-wish-btn {
	position: static; width: auto; height: auto;
	display: inline-flex; align-items: center; gap: 8px;
	border: 1px solid #e6e6e6; border-radius: 10px; background: #fff;
	color: #555; font-weight: 600; font-size: 14px; padding: 11px 18px;
	margin: 12px 0 2px; box-shadow: none; transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.jh-wish-btn:hover { border-color: #ff3d57; color: #ff3d57; background: #fff; }
.jh-wish-btn.is-active { border-color: #ff3d57; color: #ff3d57; background: #fff0f2; }
.jh-wish-btn .bi { font-size: 17px; }

/* Favori butonu: tekil urunde basligin sag ustune konumlandir */
.single-product div.summary.entry-summary { position: relative; }
.single-product .summary > .jh-wish-btn { position: absolute; top: 0; right: 0; margin: 0; z-index: 3; padding: 9px 15px; }
.single-product .summary .product_title { padding-right: 168px; }
@media (max-width: 480px) {
	.single-product .summary > .jh-wish-btn { padding: 9px 11px; }
	.single-product .summary > .jh-wish-btn .jh-wish-label { display: none; }
	.single-product .summary .product_title { padding-right: 52px; }
}

/* Maksimum bilgi satiri (SMM max alinabilir / lisans stok) */
.jh-max-info { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: #5a6270; background: #f4f6f8; border: 1px solid #eceff3; border-radius: 9px; padding: 7px 12px; margin: 4px 0 12px; }
.jh-max-info .bi { color: #f27a1a; font-size: 15px; }

/* Secilen adede gore toplam etkilesim (canli) */
.jh-qty-total { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #1f7a45; background: #ecfaf1; border: 1px solid #cdeed9; border-radius: 10px; padding: 9px 14px; margin: 2px 0 14px; }
.jh-qty-total .bi { color: #16a34a; font-size: 16px; flex: none; }
.jh-qty-total strong { color: #15803d; font-weight: 800; }

/* Tekil ürün: kategori + etiket meta (chip/rozet) */
.jh-product-meta { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid #f0f0f0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.jh-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; color: #7a818c; }
.jh-meta-row > .bi { color: #f27a1a; font-size: 15px; flex: none; }
.jh-meta-label { font-weight: 700; color: #5a616b; margin-right: 2px; }
.jh-meta-chip { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 999px; background: #f5f6f8; color: #4b5563; text-decoration: none; font-weight: 600; font-size: 12.5px; border: 1px solid #ecedf1; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.jh-meta-chip:hover { background: #fef1e7; color: #f27a1a; border-color: #f7d9c2; }
.jh-meta-chip-tag { background: #fff7f0; border-color: #f4e2d3; color: #b5703f; }
.jh-meta-chip-tag:hover { background: #fef1e7; color: #f27a1a; border-color: #f7d9c2; }

/* Stok kodu teslimat kutusu (müşteri sipariş/e-posta) */
.jh-stock-delivery { margin: 8px 0 4px; padding: 12px 14px; background: #eafaf0; border: 1px solid #bfe9cf; border-radius: 10px; }
.jh-stock-delivery-title { display: flex; align-items: center; gap: 6px; font-weight: 700; color: #15803d; font-size: 13.5px; margin-bottom: 6px; }
.jh-stock-code { display: block; background: #fff; border: 1px dashed #bfe9cf; border-radius: 8px; padding: 9px 12px; margin: 6px 0 0; font-family: monospace; font-size: 14px; color: #1f2430; word-break: break-all; user-select: all; }

/* Sipariş durumu rozeti — ikonlu, renkli, puffy */
.jh-order-status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 999px; font-weight: 700; font-size: 13px; line-height: 1.25; white-space: nowrap; border: 1px solid transparent; box-shadow: 0 2px 7px rgba(0,0,0,.07); }
.jh-order-status .bi { font-size: 14px; line-height: 1; }
.jh-order-status-pending { background: #f1f3f5; color: #687078; border-color: #e3e6e9; }
.jh-order-status-processing { background: #fff0df; color: #c2710c; border-color: #f7dcb8; }
.jh-order-status-on-hold { background: #e8f0ff; color: #2563eb; border-color: #cfe0ff; }
.jh-order-status-completed { background: #e7f9ef; color: #15803d; border-color: #c7eed7; }
.jh-order-status-cancelled { background: #f0f1f3; color: #6b7280; border-color: #e3e6e9; }
.jh-order-status-refunded { background: #f5ebff; color: #7c3aed; border-color: #e6d4ff; }
.jh-order-status-failed { background: #fdecec; color: #dc2626; border-color: #f8d4d4; }
/* hafif animasyon: hazirlaniyor ikonu doner */
.jh-order-status-processing .bi { animation: jh-spin 2.4s linear infinite; }
@keyframes jh-spin { to { transform: rotate(360deg); } }

/* Hazir adetler (preset butonlari) */
.jh-presets { margin: 14px 0 4px; }
.jh-presets-label { display: block; font-size: 12.5px; font-weight: 700; color: #6a7180; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.jh-presets-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.jh-preset-btn { border: 1.5px solid #f0d7c2; background: #fff7f0; color: #b8541a; font-weight: 700; font-size: 13.5px; padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: all .15s ease; }
.jh-preset-btn:hover { border-color: #f27a1a; background: #fef1e7; }
.jh-preset-btn.is-active { background: #f27a1a; border-color: #f27a1a; color: #fff; box-shadow: 0 4px 12px rgba(242,122,26,.28); }
.jh-preset-btn .bi { font-size: 12px; margin-right: 2px; opacity: .9; }

/* Favorilerim sayfası boş durum */
.jh-wishlist-empty { text-align: center; padding: 44px 20px; color: #888; }
.jh-wishlist-empty .bi { font-size: 48px; color: #e7c6cc; display: block; margin-bottom: 12px; }
.jh-wishlist-empty p { font-size: 15px; margin-bottom: 18px; }
.jh-wishlist-grid { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }

/* ==========================================================================
   Fiyatlar turuncu (ürün kartı + tekil ürün) — indirimli eski fiyat gri kalır
   ========================================================================== */
.jh-product-price .woocommerce-Price-amount { color: #f27a1a; }
.jh-product-price del .woocommerce-Price-amount { color: #9aa0a6; font-weight: 600; }
.single-product .summary .price,
.single-product .summary .price ins .woocommerce-Price-amount { color: #f27a1a; }
.single-product .summary .price del,
.single-product .summary .price del .woocommerce-Price-amount { color: #9aa0a6; }

/* Bakiye yükle: geçmiş talepler + durum renkleri */
.jh-topup-history { margin-top: 26px; }
.jh-topup-history h3 { font-size: 16px; margin: 0 0 10px; }
.jh-st-pending  { color: #e0a800; font-weight: 700; }
.jh-st-approved { color: #2e7d32; font-weight: 700; }
.jh-st-rejected { color: #d32f2f; font-weight: 700; }

/* ==========================================================================
   Görevler / Ücretsiz Bakiye sayfası
   ========================================================================== */
.jh-gorev-intro { background: #fef1e7; border: 1px solid #fbe2d1; border-radius: 10px; padding: 12px 16px; color: #8a5a2b; font-size: 14px; line-height: 1.5; }
.jh-gorev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; margin-top: 18px; }
.jh-gorev-card { position: relative; background: #fff; border: 1px solid #eef0f4; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.jh-gorev-thumb img { width: 100%; height: 150px; object-fit: cover; display: block; }
.jh-gorev-body { padding: 14px; display: flex; flex-direction: column; gap: 9px; flex: 1; position: relative; }
.jh-gorev-reward { position: absolute; top: 12px; right: 12px; z-index: 2; background: linear-gradient(135deg,#2ecf73,#16a34a); color: #fff; font-weight: 800; font-size: 13px; padding: 5px 11px; border-radius: 999px; box-shadow: 0 4px 10px rgba(22,163,74,.28); }
.jh-gorev-body > h3 { font-size: 15.5px; font-weight: 700; margin: 4px 0 0; color: #2b2f36; }
.jh-gorev-desc { font-size: 13px; color: #666; line-height: 1.55; }
.jh-gorev-desc p { margin: 0 0 6px; }
.jh-gorev-go { margin-top: auto; text-align: center; width: 100%; }
.jh-gorev-form { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.jh-gorev-form label { font-size: 12.5px; font-weight: 600; color: #444; }
.jh-gorev-form input[type=file] { font-size: 12px; }
.jh-gorev-form textarea { border: 1px solid #e6e6e6; border-radius: 8px; padding: 7px 9px; font-size: 13px; width: 100%; resize: vertical; }
.jh-gorev-done { color: #16a34a; font-weight: 700; margin-top: auto; background: #e9f9f0; padding: 9px; border-radius: 9px; text-align: center; }
.jh-gorev-pending { color: #b58a00; font-weight: 700; margin-top: auto; background: #fff8e6; padding: 9px; border-radius: 9px; text-align: center; }
.jh-gorev-rej { color: #d32f2f; font-size: 12.5px; margin-top: 6px; }

/* ==========================================================================
   Hesabım (My Account) — modern, temaya uygun yeniden tasarım
   ========================================================================== */
.woocommerce-account .woocommerce { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.woocommerce-account .woocommerce-MyAccount-navigation { flex: 0 0 250px; width: 250px; float: none; margin: 0; background: #fff; border: 1px solid #eef0f4; border-radius: 14px; padding: 8px; box-shadow: 0 2px 14px rgba(0,0,0,.05); }
.woocommerce-account .woocommerce-MyAccount-content { flex: 1 1 320px; min-width: 0; width: auto; float: none; margin: 0; background: #fff; border: 1px solid #eef0f4; border-radius: 14px; padding: 24px; box-shadow: 0 2px 14px rgba(0,0,0,.05); }

.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li { border: 0; margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 10px; color: #555; font-weight: 600; font-size: 14px; text-decoration: none; transition: background .15s, color .15s; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a .bi { font-size: 17px; color: #f27a1a; width: 20px; text-align: center; flex: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { background: #fef1e7; color: #f27a1a; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { background: #f27a1a; color: #fff; box-shadow: 0 4px 12px rgba(242,122,26,.28); }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a .bi { color: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a .bi { color: #d32f2f; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover { background: #fdecea; color: #d32f2f; }

/* Pano (dashboard) */
.jh-dash-hi { font-size: 22px; font-weight: 800; color: #2b2f36; margin: 0 0 18px; }
.jh-dash-balance { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; background: linear-gradient(120deg,#e0660b,#f27a1a 55%,#ff9c47); color: #fff; border-radius: 16px; padding: 20px 24px; box-shadow: 0 10px 26px rgba(242,122,26,.26); }
.jh-dash-bal-lbl { display: block; font-size: 13px; opacity: .92; }
.jh-dash-bal-amt { font-size: 30px; font-weight: 800; text-shadow: 0 1px 2px rgba(0,0,0,.12); }
.jh-dash-bal-amt .woocommerce-Price-amount { color: #fff; }
.jh-dash-bal-act { display: flex; flex-wrap: wrap; gap: 10px; }
.jh-dash-btn { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: #f27a1a; font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: 10px; text-decoration: none; }
.jh-dash-btn:hover { background: #2b2f36; color: #fff; }
.jh-dash-free { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.2); color: #fff; font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: 10px; text-decoration: none; border: 1px solid rgba(255,255,255,.35); }
.jh-dash-free:hover { background: rgba(255,255,255,.32); color: #fff; }

.jh-dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 18px 0; }
.jh-dash-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 16px 10px; background: #f8f9fb; border: 1px solid #eef0f4; border-radius: 14px; text-decoration: none; transition: box-shadow .15s, transform .15s; }
.jh-dash-stat:hover { box-shadow: 0 6px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.jh-dash-stat .bi { font-size: 22px; color: #f27a1a; }
.jh-dash-stat-n { font-size: 20px; font-weight: 800; color: #2b2f36; }
.jh-dash-stat-bal { font-size: 16px; }
.jh-dash-stat-bal .woocommerce-Price-amount { color: #2b2f36; }
.jh-dash-stat-l { font-size: 12.5px; color: #888; }

.jh-dash-quick h3 { font-size: 15px; font-weight: 700; color: #2b2f36; margin: 6px 0 12px; }
.jh-dash-quick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.jh-dash-quick-grid a { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border: 1px solid #eef0f4; border-radius: 11px; color: #444; font-weight: 600; font-size: 13.5px; text-decoration: none; transition: border-color .15s, color .15s; }
.jh-dash-quick-grid a .bi { font-size: 17px; color: #f27a1a; }
.jh-dash-quick-grid a:hover { border-color: #f27a1a; color: #f27a1a; }

@media (max-width: 767px) {
	.woocommerce-account .woocommerce-MyAccount-navigation { flex: 1 1 100%; width: 100%; }
	.jh-dash-stats { grid-template-columns: 1fr 1fr; }
}

/* Bakiye yükle: açıklama kodu uyarısı */
.jh-topup-warn { display: flex; align-items: flex-start; gap: 9px; background: #fff4ec; border: 1px solid #f6c89a; border-left: 4px solid #f27a1a; border-radius: 9px; padding: 11px 14px; font-size: 13px; color: #9a5510; line-height: 1.55; margin-top: 10px; }
.jh-topup-warn .bi { color: #f27a1a; font-size: 16px; flex: none; margin-top: 1px; }

/* ==========================================================================
   Hesabım — tam genişlik güçlendirme + Adres sayfası fix (.col-1/.col-2 çakışması)
   ========================================================================== */
.woocommerce-account .woocommerce { display: flex !important; flex-wrap: wrap; gap: 24px; align-items: flex-start; width: 100%; }
.woocommerce-account .woocommerce-MyAccount-navigation { flex: 0 0 250px !important; width: 250px !important; max-width: 250px; float: none !important; }
.woocommerce-account .woocommerce-MyAccount-content { flex: 1 1 0 !important; width: auto !important; max-width: 100% !important; min-width: 0; float: none !important; }

/* Adres: Bootstrap .col-1/.col-2 (dar) ezilir, düzgün kart olur */
.woocommerce-account .woocommerce-Addresses { display: flex; flex-wrap: wrap; gap: 20px; margin: 16px 0 0; }
.woocommerce-account .woocommerce-Addresses::before,
.woocommerce-account .woocommerce-Addresses::after,
.woocommerce-account .u-columns::before,
.woocommerce-account .u-columns::after { display: none !important; }
.woocommerce-account .woocommerce-Address { flex: 1 1 280px !important; max-width: 100% !important; width: auto !important; background: #f8f9fb; border: 1px solid #eef0f4; border-radius: 12px; padding: 16px !important; }
.woocommerce-account .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.woocommerce-account .woocommerce-Address-title h3 { margin: 0; font-size: 16px; font-weight: 700; color: #2b2f36; }
.woocommerce-account .woocommerce-Address-title .edit { font-size: 13px; font-weight: 600; color: #f27a1a; white-space: nowrap; text-decoration: none; }
.woocommerce-account .woocommerce-Address-title .edit:hover { text-decoration: underline; }
.woocommerce-account .woocommerce-Address address { font-style: normal; color: #555; line-height: 1.6; margin: 0; }

/* Hesabım sayfasını tam genişlik yap (page.php col-lg-10 ortalamasını ez; metin sayfaları dar kalır) */
.woocommerce-account .col-lg-10 { flex: 0 0 100% !important; max-width: 100% !important; }

/* ==========================================================================
   Reklam alanları + Affiliate (Paylaş & Kazan) paneli
   ========================================================================== */
.jh-ad { margin: 18px 0; text-align: center; }
.jh-ad img { max-width: 100%; height: auto; max-height: 340px; border-radius: 12px; display: inline-block; }
.jh-ad-sidebar { margin: 16px 0 0; }

.jh-aff-intro { background: #fef1e7; border: 1px solid #fbe2d1; border-radius: 10px; padding: 12px 16px; color: #8a5a2b; font-size: 14px; line-height: 1.5; }
.jh-aff-linkbox { margin: 18px 0; }
.jh-aff-linkbox > label { font-weight: 700; font-size: 13px; color: #2b2f36; display: block; margin-bottom: 6px; }
.jh-aff-copy { display: flex; gap: 8px; }
.jh-aff-copy input { flex: 1; border: 1px solid #e6e6e6; border-radius: 9px; padding: 10px 12px; font-size: 14px; background: #f8f9fb; }
.jh-aff-copybtn { white-space: nowrap; }
.jh-aff-balance { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; background: linear-gradient(120deg,#16a34a,#2ecf73); color: #fff; border-radius: 16px; padding: 18px 22px; margin: 16px 0; box-shadow: 0 10px 24px rgba(22,163,74,.22); }
.jh-aff-balance > div span { display: block; font-size: 13px; opacity: .92; }
.jh-aff-balance > div strong { font-size: 28px; font-weight: 800; }
.jh-aff-balance > div strong .woocommerce-Price-amount { color: #fff; }
.jh-aff-wd { background: #fff !important; color: #16a34a !important; font-weight: 700; border: 0 !important; }
.jh-aff-wd:disabled { opacity: .55; cursor: not-allowed; }
.jh-aff-bank { display: flex; flex-direction: column; gap: 8px; max-width: 460px; }
.jh-aff-bank label { font-size: 13px; font-weight: 600; color: #444; }
.jh-aff-bank input { border: 1px solid #e6e6e6; border-radius: 9px; padding: 9px 12px; font-size: 14px; }
.jh-aff h3 { font-size: 16px; font-weight: 700; color: #2b2f36; margin: 22px 0 12px; }

/* Affiliate "Nasıl Çalışır?" bilgi kutusu */
.jh-aff-how { background: #f8f9fb; border: 1px solid #eef0f4; border-radius: 12px; padding: 16px 20px; margin-top: 18px; }
.jh-aff-how h3 { margin: 0 0 10px !important; }
.jh-aff-how ol { margin: 0; padding-left: 20px; }
.jh-aff-how ol li { font-size: 13.5px; color: #555; line-height: 1.6; margin-bottom: 8px; }
.jh-aff-how ol li:last-child { margin-bottom: 0; }

.jh-grp-loopbtn{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;box-sizing:border-box;position:relative;background:#f27a1a;color:#fff;border-radius:8px;padding:8px 14px;font-weight:600;font-size:13.5px;line-height:1.2;text-decoration:none;border:0;transition:.15s}
.jh-grp-loopbtn:hover{background:#d96c12;color:#fff}
.jh-grp-loopbtn i{position:absolute;left:16px;top:50%;transform:translateY(-50%);font-size:15px}
.jh-grp-from{display:inline-block;font-size:13.5px !important;color:#f27a1a;font-weight:700;line-height:1.4}
.jh-grp-from .woocommerce-Price-amount{font-size:13.5px !important;font-weight:800 !important;color:#f27a1a !important}
