/* GENEL AYARLAR */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background: #09090e; color: #fff; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #09090e; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #6a5cff, #00f0ff); border-radius: 10px; }

.bg-glow { position: fixed; width: 600px; height: 600px; background: radial-gradient(circle, rgba(106,92,255,0.15) 0%, rgba(0,0,0,0) 70%); top: -200px; left: -200px; z-index: -1; pointer-events: none; }
.bg-glow-2 { position: fixed; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, rgba(0,0,0,0) 70%); bottom: -200px; right: -100px; z-index: -1; pointer-events: none; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

/* HEADER */
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; background: rgba(9, 9, 14, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo { font-weight: 800; font-size: 24px; background: linear-gradient(90deg,#6a5cff,#00f0ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; cursor: pointer; letter-spacing: -1px; }
nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; flex: 1; min-width: 0; justify-content: flex-end; }
nav .nav-left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
nav .nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
nav a { text-decoration: none; color: #a0a0b0; font-weight: 500; font-size: 15px; transition: 0.3s; cursor: pointer; display: flex; align-items: center; gap: 8px; }
nav a:hover, nav a.active { color: #fff; text-shadow: 0 0 10px rgba(0, 240, 255, 0.5); }
.cart-badge { position: absolute; top: -8px; right: -12px; background: #ff3366; color: white; font-size: 11px; font-weight: 800; padding: 2px 6px; border-radius: 20px; }
.balance-badge { background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3); color: #00f0ff; padding: 6px 12px; border-radius: 8px; font-weight: 800; font-size: 14px; display: none; align-items: center; gap: 5px; }

.page-section { display: none; padding: 80px 8%; min-height: 80vh; }
.page-section.active { display: block; animation: fadeIn 0.5s ease; }

/* HERO */
.hero { text-align: center; padding: 80px 20px; }
.hero h1 { font-size: 58px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; letter-spacing: -1px; }
.hero p { color: #888; font-size: 18px; margin-bottom: 40px; max-width: 500px; margin-inline: auto; }
.btn-primary { padding: 16px 40px; border: none; border-radius: 12px; background: linear-gradient(135deg,#6a5cff,#00f0ff); color: white; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 20px rgba(106, 92, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0, 240, 255, 0.4); }

/* Ana sayfa: hero + son satılan ürünler yan yana */
.home-hero-row { display: flex; align-items: stretch; gap: 32px; margin: 0 auto 32px; max-width: 1200px; padding: 0 8%; flex-wrap: wrap; justify-content: center; }
.home-hero-row .hero { flex: 1 1 400px; min-width: 0; }
.home-hero-row .recent-purchases-wrap { flex: 0 0 420px; margin: 0; }
@media (max-width: 960px) { .home-hero-row { flex-direction: column; align-items: center; } .home-hero-row .recent-purchases-wrap { flex: 0 0 auto; max-width: 420px; } }

/* ANA SAYFA ÜRÜN ALANI - MODERN KAYDIRMALI */
.home-products-wrap { margin-top: 80px; }
.home-products-wrap h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.home-products-wrap > p { text-align: center; color: #666; font-size: 15px; margin-bottom: 32px; }
.home-products-scroll { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; padding: 24px 0 48px; overflow: visible; }
@media (max-width: 1400px) { .home-products-scroll { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 1100px) { .home-products-scroll { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 768px) { .home-products-scroll { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .home-products-scroll { grid-template-columns: 1fr; } }
.home-product-card { min-width: 0; background: linear-gradient(145deg, rgba(20,20,30,0.9), rgba(15,15,22,0.95)); backdrop-filter: blur(20px); padding: 0; border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s; overflow: hidden; }
.home-product-card:hover { border-color: rgba(106,92,255,0.35); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.home-product-card .card-img-wrap { width: 100%; height: 160px; overflow: hidden; background: rgba(0,0,0,0.2); }
.home-product-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.home-product-card:hover .card-img-wrap img { transform: scale(1.05); }
.home-product-card .card-no-img { width: 100%; height: 160px; background: linear-gradient(135deg, rgba(106,92,255,0.1), rgba(0,240,255,0.05)); display: flex; align-items: center; justify-content: center; }
.home-product-card .card-no-img i { font-size: 44px; background: linear-gradient(135deg,#6a5cff,#00f0ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.home-product-card .card-body { padding: 20px; }
.home-product-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.home-product-card p { color: #888; font-size: 13px; line-height: 1.5; margin-bottom: 14px; }
.home-product-card .price { font-size: 22px; font-weight: 800; color: #00f0ff; margin-bottom: 14px; }
.home-product-card button { width: 100%; padding: 12px; border-radius: 10px; border: none; background: #fff; color: #000; font-weight: 700; cursor: pointer; font-size: 14px; transition: 0.3s; }
.home-product-card button:hover { background: linear-gradient(90deg,#6a5cff,#00f0ff); color: white; }
.home-product-card .card-product-page-link { display: inline-flex; align-items: center; justify-content: center; margin-top: 10px; padding: 8px 16px; background: rgba(0,240,255,0.12); color: #00f0ff; border-radius: 8px; font-weight: 600; font-size: 13px; text-decoration: none; border: 1px solid rgba(0,240,255,0.3); }
.home-product-card .card-product-page-link:hover { background: rgba(0,240,255,0.2); color: #fff; }

/* ÜRÜN KARTLARI (Ürünler sayfası - modern tasarım) */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.card { background: linear-gradient(145deg, rgba(30,30,42,0.9), rgba(20,20,28,0.95)); backdrop-filter: blur(20px); padding: 0; border-radius: 24px; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; overflow: hidden; }
.card:hover { border-color: rgba(0, 240, 255, 0.4); transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,240,255,0.08); }
.card .card-img-wrap { width: 100%; height: 200px; border-radius: 0; overflow: hidden; background: linear-gradient(135deg,rgba(106,92,255,0.1),rgba(0,240,255,0.05)); margin-bottom: 0; position: relative; }
.card .card-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%); pointer-events: none; }
.card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img-wrap img { transform: scale(1.08); }
.card .card-no-img { width: 100%; height: 200px; border-radius: 0; background: linear-gradient(135deg, rgba(106,92,255,0.2), rgba(0,240,255,0.1)); display: flex; align-items: center; justify-content: center; margin-bottom: 0; }
.card .card-no-img i { font-size: 52px; background: linear-gradient(135deg,#6a5cff,#00f0ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.card .card-body { padding: 24px; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.card .card-desc { color: #a0a0b0; font-size: 14px; flex-grow: 1; margin-bottom: 18px; line-height: 1.65; }
.card .card-product-page-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 18px; background: rgba(0,240,255,0.1); color: #00f0ff; border-radius: 12px; font-weight: 600; font-size: 13px; text-decoration: none; border: 1px solid rgba(0,240,255,0.25); transition: all 0.3s; }
.card .card-product-page-link:hover { background: rgba(0,240,255,0.2); color: #fff; transform: translateX(4px); }
.card .price { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 16px; background: linear-gradient(90deg,#fff,#00f0ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.card .card-add-btn { width: 100%; padding: 14px; border-radius: 14px; border: none; background: linear-gradient(90deg,#6a5cff,#00f0ff); color: #fff; font-weight: 800; cursor: pointer; transition: all 0.3s; font-size: 15px; }
.card .card-add-btn:hover { filter: brightness(1.15); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,240,255,0.3); }

/* Ürünler sayfası - yıldızlı arka plan */
.page-products-theme { background: radial-gradient(ellipse at 50% 0%, rgba(106,92,255,0.06) 0%, transparent 50%), #0a0a0f; position: relative; }
.page-products-theme::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(1.5px 1.5px at 20px 30px, rgba(255,255,255,0.15), transparent), radial-gradient(1.5px 1.5px at 40px 70px, rgba(255,255,255,0.1), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.12), transparent), radial-gradient(1.5px 1.5px at 130px 80px, rgba(255,255,255,0.08), transparent); background-size: 200px 120px; pointer-events: none; opacity: 0.8; }

/* Kategori kartları - oyun kategorisi görünümü (görsel, başlık, X Ürün • durum, Başlangıç + fiyat, Görüntüle) */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 360px)); gap: 24px; justify-content: start; position: relative; z-index: 1; }
.category-card { background: linear-gradient(165deg, rgba(28,28,38,0.95), rgba(18,18,26,0.98)); backdrop-filter: blur(20px); padding: 0; border-radius: 20px; transition: all 0.35s; border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; overflow: hidden; cursor: pointer; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.category-card:hover { border-color: rgba(0, 240, 255, 0.35); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 30px rgba(0,240,255,0.06); }
.category-card .card-img-wrap { width: 100%; height: 180px; overflow: visible; background: linear-gradient(135deg,rgba(106,92,255,0.08),rgba(0,240,255,0.04)); position: relative; }
.category-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.category-card:hover .card-img-wrap img { transform: scale(1.06); }
.category-card .card-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(to bottom, transparent, rgba(18,18,26,0.97)); pointer-events: none; }
.category-card .card-no-img { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(106,92,255,0.15), rgba(0,240,255,0.08)); }
.category-card .card-no-img i { font-size: 44px; color: #6a5cff; }
.category-card-profile { position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(28,28,38,0.98); background: rgba(18,18,26,0.98); z-index: 2; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.category-card-profile img { width: 100%; height: 100%; object-fit: cover; }
.category-card-profile i { font-size: 26px; color: #6a5cff; }
.category-card .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; padding-top: 36px; }
.category-card .card-body h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px 0; color: #fff; letter-spacing: -0.02em; }
.category-card .category-meta { font-size: 13px; color: rgba(0,240,255,0.9); margin-bottom: 16px; }
.category-card .category-footer { display: flex; align-items: center; justify-content: flex-end; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.category-card .category-view-btn { padding: 10px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: #e0e0e0; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s; }
.category-card .category-view-btn:hover { background: rgba(0,240,255,0.15); color: #00f0ff; border-color: rgba(0,240,255,0.3); }

/* Kategori içi ürün kartları - ürün listesi görünümü (thumb, icon+isim, durum+rating, tag’ler, Şu fiyattan, Görüntüle) */
.product-card-game { background: linear-gradient(165deg, rgba(28,28,38,0.95), rgba(18,18,26,0.98)); backdrop-filter: blur(20px); padding: 0; border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: all 0.35s; }
.product-card-game:hover { border-color: rgba(0, 240, 255, 0.35); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 30px rgba(0,240,255,0.06); }
.product-card-game .card-img-wrap { width: 100%; height: 200px; overflow: visible; background: linear-gradient(135deg,rgba(106,92,255,0.08),rgba(0,240,255,0.04)); position: relative; }
.product-card-game .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.product-card-game:hover .card-img-wrap img { transform: scale(1.06); }
.product-card-game .card-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to bottom, transparent, rgba(18,18,26,0.97)); pointer-events: none; }
.product-card-game .card-no-img { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(106,92,255,0.15), rgba(0,240,255,0.08)); }
.product-card-game .card-no-img i { font-size: 48px; color: #6a5cff; }
.product-card-game .product-profile { position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(28,28,38,0.98); background: rgba(18,18,26,0.98); z-index: 2; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.4); font-size: 22px; font-weight: 800; color: #00f0ff; }
.product-card-game .product-profile img { width: 100%; height: 100%; object-fit: cover; }
.product-card-game .card-body { padding: 20px; padding-top: 36px; }
.product-card-game .product-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.product-card-game .product-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(106,92,255,0.3), rgba(0,240,255,0.2)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #00f0ff; flex-shrink: 0; }
.product-card-game .product-name { font-size: 20px; font-weight: 700; color: #fff; margin: 0; letter-spacing: -0.02em; }
.product-card-game .product-status-rating { font-size: 12px; color: #888; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-card-game .product-status-rating .rating { color: #ffaa00; }
.product-card-game .product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.product-card-game .product-tag { padding: 4px 10px; border-radius: 20px; background: rgba(255,255,255,0.06); color: #a0a0b0; font-size: 11px; }
.product-card-game .product-price-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.product-card-game .product-price-label { font-size: 12px; color: #888; }
.product-card-game .product-price { font-size: 22px; font-weight: 800; color: #fff; }
.product-card-game .product-view-btn { padding: 10px 22px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: #e0e0e0; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s; }
.product-card-game .product-view-btn:hover { background: rgba(0,240,255,0.15); color: #00f0ff; border-color: rgba(0,240,255,0.3); }
.product-card-game .product-status-badge { font-size: 10px; padding: 4px 10px; }
#products-grid.products { grid-template-columns: repeat(auto-fill, minmax(280px, 360px)); gap: 24px; justify-content: start; }

/* Ürün altı yorumlar */
.product-reviews { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.product-reviews h4 { font-size: 14px; color: #888; margin-bottom: 12px; }
.review-item { background: rgba(0,0,0,0.2); padding: 12px 14px; border-radius: 10px; margin-bottom: 10px; font-size: 13px; }
.review-item .stars { color: #ffaa00; margin-bottom: 6px; }
.review-item .review-text { color: #ccc; line-height: 1.5; margin-bottom: 6px; }
.review-item .review-author { color: #888; font-size: 12px; }
.review-form { margin-top: 14px; }
.review-form input, .review-form textarea { width: 100%; padding: 10px 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 8px; font-size: 13px; margin-bottom: 10px; }
.review-form button { padding: 10px 20px; border-radius: 8px; border: none; background: #6a5cff; color: #fff; font-weight: 600; cursor: pointer; font-size: 13px; }
.review-form button:hover { background: #00f0ff; color: #000; }
.review-hint { font-size: 12px; color: #666; margin-top: 8px; }

/* SEPET — Premium / wow tasarım: glassmorphism, gradient glow, tech hissi */
@keyframes cart-panel-glow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes cart-shine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes cart-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes cart-pulse-soft { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,240,255,0.2); } 50% { box-shadow: 0 0 0 8px rgba(0,240,255,0); } }

.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 1500; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s; }
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer-panel { position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw; height: 100vh; background: linear-gradient(165deg, #08080c 0%, #0c0c12 35%, #0f0f18 70%, #12121c 100%); border-left: 1px solid transparent; border-image: linear-gradient(180deg, rgba(106,92,255,0.5), rgba(0,240,255,0.3), rgba(106,92,255,0.2)) 1; box-shadow: -20px 0 80px rgba(0,0,0,0.6), -4px 0 0 0 rgba(0,240,255,0.08), 0 0 120px -20px rgba(106,92,255,0.15); z-index: 1501; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; overflow: hidden; }
.cart-drawer-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 120% 80% at 20% 0%, rgba(106,92,255,0.06) 0%, transparent 50%), radial-gradient(ellipse 80% 60% at 80% 100%, rgba(0,240,255,0.04) 0%, transparent 50%); pointer-events: none; }
.cart-drawer-panel.open { transform: translateX(0); }

.cart-drawer-header { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 24px 26px; background: linear-gradient(135deg, rgba(106,92,255,0.2) 0%, rgba(0,240,255,0.08) 50%, rgba(106,92,255,0.05) 100%); border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.cart-drawer-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,240,255,0.4), transparent); opacity: 0.8; animation: cart-panel-glow 3s ease-in-out infinite; }
.cart-drawer-header-inner { display: flex; align-items: center; gap: 14px; }
.cart-drawer-header h2 { font-size: 1.35rem; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 12px; color: #fff; letter-spacing: -0.03em; text-shadow: 0 0 40px rgba(0,240,255,0.15); }
.cart-drawer-header h2 i { color: #00f0ff; filter: drop-shadow(0 0 8px rgba(0,240,255,0.4)); }
.cart-drawer-badge { font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 20px; background: linear-gradient(135deg, rgba(0,240,255,0.25), rgba(106,92,255,0.2)); border: 1px solid rgba(0,240,255,0.35); color: #00f0ff; letter-spacing: 0.05em; }
.cart-drawer-close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.4); color: #a0a0b0; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all 0.25s ease; }
.cart-drawer-close:hover { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,59,48,0.4); box-shadow: 0 0 20px rgba(255,59,48,0.15); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 22px 24px; position: relative; }
.cart-drawer-body::-webkit-scrollbar { width: 6px; }
.cart-drawer-body::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 3px; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(106,92,255,0.4), rgba(0,240,255,0.3)); border-radius: 3px; }
.cart-drawer-body::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, rgba(106,92,255,0.6), rgba(0,240,255,0.5)); }

.cart-drawer-content .cart-item { display: flex; align-items: center; gap: 16px; padding: 16px 18px; margin-bottom: 14px; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; transition: all 0.3s ease; }
.cart-drawer-content .cart-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #00f0ff, #6a5cff); border-radius: 3px 0 0 3px; opacity: 0; transition: opacity 0.3s; }
.cart-drawer-content .cart-item:hover { border-color: rgba(106,92,255,0.2); background: rgba(106,92,255,0.04); box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateX(2px); }
.cart-drawer-content .cart-item:hover::before { opacity: 1; }
.cart-drawer-content .cart-item-thumb { width: 64px; height: 64px; border-radius: 14px; overflow: hidden; flex-shrink: 0; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06); box-shadow: inset 0 0 20px rgba(0,0,0,0.3); }
.cart-drawer-content .cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-content .cart-item-thumb .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #444; font-size: 22px; }
.cart-drawer-content .cart-item-body { flex: 1; min-width: 0; }
.cart-drawer-content .cart-item-name { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 4px; line-height: 1.35; letter-spacing: -0.01em; }
.cart-drawer-content .cart-item-variant { display: inline-block; font-size: 11px; padding: 3px 8px; border-radius: 6px; background: rgba(0,240,255,0.08); border: 1px solid rgba(0,240,255,0.15); color: #7dd3fc; }
.cart-drawer-content .cart-item-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cart-drawer-content .cart-item-price { font-size: 17px; font-weight: 800; background: linear-gradient(135deg, #00f0ff, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; }
.cart-drawer-content .cart-item-remove { width: 36px; height: 36px; border-radius: 10px; border: none; background: rgba(255,255,255,0.04); color: #94a3b8; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: all 0.25s ease; }
.cart-drawer-content .cart-item-remove:hover { background: rgba(239,68,68,0.2); color: #f87171; box-shadow: 0 0 16px rgba(239,68,68,0.2); }

.cart-drawer-summary { margin-top: 20px; padding: 22px 24px; background: linear-gradient(145deg, rgba(15,15,22,0.9), rgba(20,20,28,0.8)); border-radius: 18px; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.03); position: relative; overflow: hidden; }
.cart-drawer-summary::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,240,255,0.3), transparent); opacity: 0.6; }
.cart-drawer-summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 14px; color: #94a3b8; }
.cart-drawer-summary-row:last-of-type { margin-bottom: 0; }
.cart-drawer-total { font-size: 1.6rem; font-weight: 800; margin: 14px 0 0 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); background: linear-gradient(135deg, #00f0ff, #c4b5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.03em; }
.cart-drawer-total-discount { font-size: 13px; color: #34d399; margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.cart-drawer-total-discount i { font-size: 12px; }

.cart-drawer-content .checkout-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.cart-drawer-content .btn-shopier { padding: 16px 24px; background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); color: #fff; font-size: 15px; font-weight: 700; border: none; border-radius: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(34,197,94,0.35); }
.cart-drawer-content .btn-shopier:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,0.45); filter: brightness(1.05); }
.cart-drawer-content .btn-balance { padding: 16px 24px; background: transparent; color: #fff; font-size: 15px; font-weight: 700; border: 1px solid rgba(106,92,255,0.5); border-radius: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.cart-drawer-content .btn-balance::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(106,92,255,0.15), rgba(0,240,255,0.08)); opacity: 0; transition: opacity 0.3s; }
.cart-drawer-content .btn-balance:hover { border-color: rgba(0,240,255,0.6); box-shadow: 0 0 30px rgba(0,240,255,0.2); transform: translateY(-2px); }
.cart-drawer-content .btn-balance:hover::before { opacity: 1; }

.cart-drawer-empty-wrap { text-align: center; padding: 48px 24px; }
.cart-drawer-empty-icon { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 24px; background: linear-gradient(145deg, rgba(106,92,255,0.15), rgba(0,240,255,0.08)); border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: #64748b; font-size: 32px; animation: cart-float 4s ease-in-out infinite; }
.cart-drawer-empty { color: #94a3b8; font-size: 15px; line-height: 1.5; margin: 0 0 24px 0; }
.cart-drawer-empty-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 12px; background: linear-gradient(135deg, rgba(106,92,255,0.25), rgba(0,240,255,0.15)); border: 1px solid rgba(0,240,255,0.3); color: #00f0ff; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.cart-drawer-empty-cta:hover { box-shadow: 0 0 24px rgba(0,240,255,0.25); transform: translateY(-2px); }

.cart-drawer-coupon { margin-top: 16px; display: flex; gap: 10px; }
.cart-drawer-coupon .form-control { margin-bottom: 0; flex: 1; padding: 14px 16px; font-size: 13px; border-radius: 12px; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.06); }
.cart-drawer-coupon .form-control:focus { border-color: rgba(0,240,255,0.3); box-shadow: 0 0 0 3px rgba(0,240,255,0.1); }
.cart-drawer-coupon .btn-apply { padding: 14px 20px; background: linear-gradient(135deg, rgba(106,92,255,0.4), rgba(0,240,255,0.2)); border: 1px solid rgba(0,240,255,0.35); color: #fff; border-radius: 12px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.25s ease; }
.cart-drawer-coupon .btn-apply:hover { background: linear-gradient(135deg, rgba(106,92,255,0.5), rgba(0,240,255,0.3)); box-shadow: 0 0 20px rgba(0,240,255,0.2); }

/* SEPET & ÖDEME (legacy) */
.cart-container { background: rgba(26, 26, 36, 0.5); border-radius: 20px; padding: 40px; border: 1px solid rgba(255,255,255,0.08); }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-total { font-size: 28px; font-weight: 800; text-align: right; margin: 30px 0; color: #00f0ff; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.btn-shopier { padding: 16px; background: #32D74B; color: #000; font-size: 16px; font-weight: 800; border: none; border-radius: 12px; cursor: pointer; transition: 0.3s; }
.btn-balance { padding: 16px; background: rgba(106, 92, 255, 0.2); color: #fff; border: 1px solid #6a5cff; font-size: 16px; font-weight: 800; border-radius: 12px; cursor: pointer; transition: 0.3s; }
.btn-shopier:hover, .btn-balance:hover { transform: translateY(-3px); filter: brightness(1.1); }

/* FORMLAR & PROFİL */
.form-container { max-width: 450px; margin: 0 auto; background: rgba(26, 26, 36, 0.4); backdrop-filter: blur(20px); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); }
.form-control { width: 100%; padding: 16px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 12px; outline: none; font-size: 15px; margin-bottom: 20px; }
.form-control:focus { border-color: #6a5cff; }
.password-input-wrap { position: relative; display: block; width: 100%; margin-bottom: 20px; }
.password-input-wrap .form-control { margin-bottom: 0; padding-right: 44px; width: 100%; box-sizing: border-box; }
.password-toggle-btn { position: absolute; left: auto; right: 10px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; padding: 0; font-size: 18px; border-radius: 8px; z-index: 2; transition: color 0.2s, background 0.2s; }
.password-toggle-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.password-toggle-btn i { pointer-events: none; }
.form-container .password-input-wrap { width: 100%; }
.register-email-row { display: flex; gap: 10px; margin-bottom: 20px; }
.register-email-row .form-control { margin-bottom: 0; flex: 1; min-width: 0; }
.register-email-domain { flex: 0 0 140px; padding-right: 8px; cursor: pointer; }
.form-submit { width: 100%; padding: 16px; background: #fff; border: none; border-radius: 12px; color: #000; font-weight: 800; cursor: pointer; transition: 0.3s; }
.form-submit:hover { background: #00f0ff; }
.profile-box { text-align: center; }
.profile-balance { font-size: 36px; font-weight: 800; color: #00f0ff; margin: 20px 0; }

.profile-balance-topup { margin-top: 12px; padding: 12px 16px; background: rgba(0,240,255,0.08); border-radius: 8px; border: 1px solid rgba(0,240,255,0.2); }
.profile-balance-hint { margin: 0 0 10px 0; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.4; }
.btn-balance-topup { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: linear-gradient(135deg, #00f0ff 0%, #0088aa 100%); color: #0a0a0f; font-weight: 600; font-size: 14px; border-radius: 6px; text-decoration: none; transition: opacity 0.2s; }
.btn-balance-topup:hover { opacity: 0.9; }

.balance-topup-box { max-width: 420px; margin: 0 auto; }
.balance-topup-box .form-control { margin-bottom: 12px; }
.btn-balance-topup-submit { width: 100%; margin-top: 8px; }
.btn-balance-reconcile { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 14px; border-radius: 6px; cursor: pointer; transition: background 0.2s; }
.btn-balance-reconcile:hover:not(:disabled) { background: rgba(255,255,255,0.18); }
.btn-balance-reconcile:disabled { opacity: 0.7; cursor: not-allowed; }

/* ADMIN PANEL - YENİ TASARIM */
.admin-wrap { max-width: 1200px; margin: 0 auto; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.admin-tab { padding: 14px 24px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(26, 26, 36, 0.5); color: #a0a0b0; font-weight: 600; cursor: pointer; transition: 0.3s; }
.admin-tab:hover { color: #fff; border-color: rgba(0, 240, 255, 0.3); }
.admin-tab.active { background: linear-gradient(135deg, rgba(106,92,255,0.3), rgba(0,240,255,0.2)); color: #fff; border-color: #6a5cff; }
.admin-panel-section { display: none; }
.admin-panel-section.active { display: block; animation: fadeIn 0.4s ease; }

.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 30px; }
.stat-box { background: rgba(26, 26, 36, 0.6); padding: 24px; border-radius: 16px; border-left: 4px solid #6a5cff; transition: 0.3s; }
.stat-box:hover { border-left-color: #00f0ff; }
.stat-box h4 { color: #888; font-size: 13px; margin-bottom: 8px; }
.stat-box .number { font-size: 28px; font-weight: 800; color: white; }

.admin-members-layout { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .admin-members-layout { grid-template-columns: 1fr; } }

/* Yöneticiler paneli - site temasına uyumlu */
.admin-admins-panel {
  background: rgba(26, 26, 36, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  border-left: 4px solid rgba(0, 240, 255, 0.6);
  box-shadow: 0 4px 24px rgba(0, 240, 255, 0.06);
}
.admin-admins-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(106, 92, 255, 0.12), rgba(0, 240, 255, 0.06));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 700;
  color: #00f0ff;
}
.admin-admins-panel-header i { font-size: 16px; opacity: 0.95; }
.admin-admins-count {
  margin-left: auto;
  background: rgba(0, 240, 255, 0.2);
  color: #00f0ff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  min-width: 24px;
  text-align: center;
}
.admin-admins-list {
  max-height: 360px;
  overflow-y: auto;
  padding: 12px;
}
.admin-admins-list::-webkit-scrollbar { width: 6px; }
.admin-admins-list::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 3px; }
.admin-admins-list::-webkit-scrollbar-thumb { background: rgba(0, 240, 255, 0.3); border-radius: 3px; }
.admin-admin-card {
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(22, 22, 32, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-admin-card:last-child { margin-bottom: 0; }
.admin-admin-card:hover {
  border-color: rgba(106, 92, 255, 0.35);
  box-shadow: 0 2px 12px rgba(106, 92, 255, 0.08);
}
.admin-admin-card-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-admin-card-name i {
  font-size: 12px;
  color: rgba(0, 240, 255, 0.8);
}
.admin-admin-card-email {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  word-break: break-all;
  line-height: 1.4;
}
.admin-admin-card .btn-admin { width: 100%; margin-right: 0; margin-top: 2px; font-size: 12px; padding: 8px 12px; }
.admin-admins-empty { color: rgba(255,255,255,0.45); font-size: 13px; text-align: center; padding: 24px 16px; }
.admin-section-subtitle { margin: 0 0 12px 0; font-size: 14px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 8px; }
.admin-section-subtitle i { color: #00f0ff; }
.admin-table-wrap { background: rgba(26, 26, 36, 0.6); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.admin-table-wrap table { width: 100%; border-collapse: collapse; }
.admin-table-wrap th, .admin-table-wrap td { padding: 16px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.admin-table-wrap th { background: rgba(0,0,0,0.3); color: #aaa; font-weight: 600; font-size: 13px; }
.admin-table-wrap tr:hover { background: rgba(255,255,255,0.02); }
.btn-admin { padding: 8px 16px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; font-size: 13px; margin-right: 8px; transition: 0.3s; }
.btn-edit { background: rgba(106, 92, 255, 0.3); color: #00f0ff; }
.btn-edit:hover { background: #6a5cff; color: #fff; }
.btn-delete { background: rgba(255, 51, 102, 0.2); color: #ff3366; }
.btn-delete:hover { background: #ff3366; color: #fff; }
.btn-add-product { padding: 14px 28px; background: linear-gradient(135deg, #6a5cff, #00f0ff); color: #000; font-weight: 800; border: none; border-radius: 12px; cursor: pointer; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-add-product:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(106, 92, 255, 0.4); }

/* Admin modal - ürün ekleme/düzenleme */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal-box { background: #12121a; border-radius: 20px; padding: 36px; max-width: 520px; width: 100%; border: 1px solid rgba(255,255,255,0.1); max-height: 90vh; overflow-y: auto; }
.modal-box h3 { margin-bottom: 24px; font-size: 22px; color: #fff; }
.modal-box label { display: block; color: #888; font-size: 13px; margin-bottom: 8px; }
.modal-box .form-control { margin-bottom: 16px; }
.modal-actions { display: flex; gap: 12px; margin-top: 24px; }
.modal-actions button { flex: 1; padding: 14px; border-radius: 12px; border: none; font-weight: 700; cursor: pointer; transition: 0.3s; }
.modal-actions .btn-save { background: #00f0ff; color: #000; }
.modal-actions .btn-cancel { background: rgba(255,255,255,0.1); color: #fff; }

.badge-success { background: rgba(50, 215, 75, 0.2); color: #32D74B; padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: bold; }

/* ÜRÜN DETAY SAYFASI - iki sütun, ekrana sığan kompakt düzen */
#page-product.page-section { padding: 24px 8% 32px; min-height: auto; }
.product-detail-wrap { max-width: 1200px; margin: 0 auto; }
.product-detail-back { color: #00f0ff; text-decoration: none; font-size: 13px; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 6px; transition: opacity 0.2s; }
.product-detail-back:hover { opacity: 0.85; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
@media (max-width: 900px) { .product-detail-layout { grid-template-columns: 1fr; } }
.product-detail-main { min-width: 0; }
.product-detail-header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.product-detail-edit-btn { margin-left: auto; }
.product-detail-title { font-size: 26px; font-weight: 800; margin: 0; letter-spacing: -0.02em; line-height: 1.2; }
.product-detail-status { font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0; }
.product-detail-wrap .product-detail-status.detected { background: rgba(255, 59, 48, 0.25); color: #ff6b6b; border: 1px solid rgba(255, 59, 48, 0.5); box-shadow: 0 0 16px rgba(255, 59, 48, 0.12); }
.product-detail-wrap .product-detail-status.testing { background: rgba(255, 204, 0, 0.25); color: #ffd43b; border: 1px solid rgba(255, 204, 0, 0.5); box-shadow: 0 0 16px rgba(255, 204, 0, 0.12); }
.product-detail-wrap .product-detail-status.updating { background: rgba(0, 122, 255, 0.2); color: #5eb8ff; border: 1px solid rgba(0, 122, 255, 0.45); box-shadow: 0 0 16px rgba(0, 122, 255, 0.1); }
.product-detail-wrap .product-detail-status.undetected { background: rgba(50, 215, 75, 0.2); color: #51cf66; border: 1px solid rgba(50, 215, 75, 0.45); box-shadow: 0 0 16px rgba(50, 215, 75, 0.08); }
.product-detail-media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; align-items: stretch; }
.product-detail-main-media { min-height: 220px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; }
.product-detail-main-media img { width: 100%; max-height: 280px; object-fit: contain; }
.product-detail-main-media .video-wrap { width: 100%; height: 100%; min-height: 220px; }
.product-detail-main-media .video-wrap iframe, .product-detail-main-media .video-wrap video { width: 100%; height: 100%; min-height: 220px; border: none; border-radius: 12px; object-fit: contain; }
.product-detail-desc-box { background: linear-gradient(135deg, rgba(106,92,255,0.18), rgba(0,240,255,0.1)); padding: 18px 20px; border-radius: 12px; border: 1px solid rgba(106,92,255,0.4); color: #e8e8f2; font-size: 15px; line-height: 1.65; font-weight: 500; box-shadow: 0 4px 24px rgba(106,92,255,0.12); overflow-y: auto; max-height: 280px; }
.product-detail-thumbnails { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
/* Kategori + Ürün Özellikleri (thumbnails altı, tema uyumlu) */
.product-detail-meta { margin-bottom: 20px; padding: 16px 20px; background: rgba(22,22,32,0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; border-left: 4px solid rgba(106,92,255,0.6); }
.product-detail-meta-title { margin: 0 0 8px 0; font-size: 13px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.product-detail-meta-value { margin: 0; font-size: 16px; font-weight: 600; color: #e8e8f2; }
.product-detail-features { margin-bottom: 20px; padding: 18px 20px; background: linear-gradient(135deg, rgba(0,240,255,0.08), rgba(106,92,255,0.08)); border: 1px solid rgba(0,240,255,0.2); border-radius: 12px; box-shadow: 0 4px 20px rgba(0,240,255,0.06); }
.product-detail-features-title { margin: 0 0 16px 0; font-size: 14px; font-weight: 700; color: #00f0ff; display: flex; align-items: center; gap: 8px; }
.product-detail-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px 24px; }
.product-detail-features-col { min-width: 0; }
.product-detail-features-col-title { margin: 0 0 10px 0; font-size: 13px; font-weight: 700; color: rgba(0,240,255,0.95); display: flex; align-items: center; gap: 8px; }
.product-detail-features-col-icon { color: rgba(0,240,255,0.9); font-size: 14px; flex-shrink: 0; }
.product-detail-features-list { margin: 0; padding-left: 22px; color: #ccc; font-size: 14px; line-height: 1.85; }
.product-detail-features-list li { margin-bottom: 6px; }
.product-detail-features-list li::marker { color: rgba(0,240,255,0.7); }
.product-detail-thumb { width: 56px; height: 56px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.12); padding: 0; overflow: hidden; cursor: pointer; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; transition: 0.2s; flex-shrink: 0; }
.product-detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-thumb i { font-size: 20px; color: rgba(255,255,255,0.9); }
.product-detail-thumb:hover { border-color: rgba(106,92,255,0.5); }
.product-detail-thumb.active { border-color: #00f0ff; box-shadow: 0 0 14px rgba(0,240,255,0.35); }
.product-detail-no-media { color: #666; margin: 0; padding: 24px; font-size: 14px; }
.product-detail-sidebar { position: sticky; top: 100px; }
.product-detail-price-card { background: rgba(22,22,32,0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.product-price-card-title { font-size: 16px; font-weight: 700; margin: 0 0 6px 0; display: flex; align-items: center; gap: 8px; }
.product-price-card-sub { color: #888; font-size: 12px; margin: 0 0 16px 0; }
.product-variant-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.product-variant-option { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; cursor: pointer; transition: 0.2s; }
.product-variant-option input { display: none; }
.product-variant-option:hover { background: rgba(255,255,255,0.05); border-color: rgba(106,92,255,0.3); }
.product-variant-option.selected { border-color: rgba(106,92,255,0.6); background: rgba(106,92,255,0.12); }
.product-variant-option .variant-label { font-size: 14px; font-weight: 600; color: #fff; }
.product-variant-option .variant-price { font-size: 15px; font-weight: 700; color: #00f0ff; }
.product-detail-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.product-detail-price-label { color: #888; font-size: 13px; }
.product-detail-price-value { font-size: 24px; font-weight: 800; color: #00f0ff; }
.product-delivery-hint { color: #51cf66; font-size: 12px; margin: 0 0 16px 0; display: flex; align-items: center; gap: 6px; }
.btn-add-cart-full { width: 100%; padding: 14px 20px; font-size: 15px; }
.product-detail-reviews-compact { max-height: 280px; overflow-y: auto; }
.product-detail-reviews-compact .product-detail-reviews { margin-top: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.product-detail-reviews-compact .product-detail-reviews h3 { font-size: 16px; margin-bottom: 12px; }
.product-detail-reviews-compact .review-card { padding: 12px; margin-bottom: 10px; }
@media (max-width: 900px) { .product-detail-sidebar { position: static; } .product-detail-title { font-size: 22px; } .product-detail-media-row { grid-template-columns: 1fr; } }

/* CANLI DESTEK - SAĞ ALT */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.floating-btn { width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: 0.3s; text-decoration: none; color: inherit; }
.live-support-toggle { background: linear-gradient(135deg, #6a5cff, #00f0ff); color: #000; box-shadow: 0 4px 20px rgba(106,92,255,0.5); }
.live-support-toggle:hover { transform: scale(1.05); }
.discord-btn { background: #5865F2; color: #fff; box-shadow: 0 4px 20px rgba(88,101,242,0.5); }
.discord-btn:hover { transform: scale(1.05); color: #fff; }
.live-support-box { position: fixed; bottom: 100px; right: 24px; width: 380px; max-width: calc(100vw - 48px); height: 460px; background: #12121a; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 901; display: none; flex-direction: column; overflow: hidden; }
.live-support-box.open { display: flex; }
.ticket-item { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: 0.2s; }
.ticket-item:hover { background: rgba(255,255,255,0.05); }
.ticket-item.active { background: rgba(106,92,255,0.2); border-left: 3px solid #6a5cff; }
.ticket-item .ticket-email { font-weight: 600; font-size: 13px; }
.ticket-item .ticket-name { color: #888; font-size: 12px; }
.ticket-item .ticket-date { color: #666; font-size: 11px; margin-top: 4px; }
.live-support-box h3 { padding: 16px; background: rgba(0,0,0,0.2); font-size: 16px; }
.live-support-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.live-support-msg { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 14px; }
.live-support-msg.customer { align-self: flex-end; background: rgba(106,92,255,0.3); }
.live-support-msg.admin { align-self: flex-start; background: rgba(0,240,255,0.15); border-left: 3px solid #00f0ff; }
.live-support-msg .meta { font-size: 11px; color: #666; margin-top: 4px; }
.live-support-input-wrap { padding: 12px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 8px; }
.live-support-input-wrap input { flex: 1; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-size: 14px; }
.live-support-input-wrap button { padding: 12px 20px; background: #6a5cff; color: #fff; border: none; border-radius: 10px; cursor: pointer; font-weight: 600; }
.live-support-end-wrap { padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.live-support-end-btn { width: 100%; padding: 10px 14px; background: transparent; border: 1px solid rgba(255,100,100,0.5); color: #ff8888; border-radius: 10px; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.2s; }
.live-support-end-btn:hover { background: rgba(255,80,80,0.15); color: #ff6666; }
.support-closed-msg { color: #888; font-size: 13px; text-align: center; padding: 24px 16px; }
.admin-typing-hint { font-size: 12px; color: #00f0ff; margin-top: 8px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* PROFİL MENÜ - AŞAĞIYA AÇILAN */
.profile-nav-wrap { position: relative; }
.profile-dropdown { position: absolute; top: 100%; right: 0; margin-top: 8px; min-width: 220px; background: #12121a; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); padding: 8px 0; z-index: 200; display: none; }
.profile-dropdown.open { display: block; }
.profile-dropdown a, .profile-dropdown span { display: block; padding: 14px 20px; color: #ccc; text-decoration: none; font-size: 14px; cursor: pointer; transition: 0.2s; border: none; background: none; width: 100%; text-align: left; }
.profile-dropdown a:hover, .profile-dropdown span:hover { background: rgba(255,255,255,0.05); color: #fff; }
.profile-dropdown a:not(:last-child), .profile-dropdown span:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-profile-name { display: inline-flex; align-items: center; gap: 6px; }

/* PROFİL SAYFASI */
.profile-account-wrap { max-width: 900px; margin: 0 auto; }
.profile-account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .profile-account-grid { grid-template-columns: 1fr; } }
.profile-section-left, .profile-section-right { background: rgba(26,26,36,0.5); padding: 28px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); }
.profile-sections { max-width: 560px; margin: 0 auto; }
.profile-section { background: rgba(26,26,36,0.4); padding: 28px; border-radius: 16px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.06); }
.profile-section h3 { margin-bottom: 20px; font-size: 18px; }
.purchased-list { display: flex; flex-direction: column; gap: 12px; }
.purchased-item { display: flex; justify-content: space-between; align-items: center; padding: 14px; background: rgba(0,0,0,0.2); border-radius: 10px; }
.profile-purchased-wrap { max-width: 1000px; margin: 0 auto; }
.profile-purchased-title { font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.purchase-history-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.purchase-history-table { width: 100%; border-collapse: collapse; }
.purchase-history-table th, .purchase-history-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.purchase-history-table th { background: rgba(0,0,0,0.35); color: #a0a0b0; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.purchase-history-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.purchase-history-table .ph-product { display: flex; align-items: center; gap: 14px; }
.purchase-history-table .ph-product-img { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; background: rgba(106,92,255,0.2); flex-shrink: 0; }
.purchase-history-table .ph-product-img img { width: 100%; height: 100%; object-fit: cover; }
.purchase-history-table .ph-product-img .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #6a5cff; font-size: 18px; }
.purchase-history-table .ph-product-name { font-weight: 600; }
.purchase-history-table .ph-product-sub { font-size: 12px; color: #888; margin-top: 2px; }
.purchase-history-table .ph-price { font-weight: 700; color: #00f0ff; }
.purchase-history-table .ph-status { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; border: 1px solid rgba(0,240,255,0.4); color: #00f0ff; background: rgba(0,240,255,0.1); }
.purchase-history-table .ph-actions { display: flex; gap: 8px; }
.purchase-history-table .ph-actions button { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.purchase-history-table .ph-actions button:hover { background: rgba(106,92,255,0.3); color: #00f0ff; }
.profile-purchased-empty { color: #888; text-align: center; padding: 40px 20px; }
.coupon-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.coupon-row input { flex: 1; }

/* TOAST */
#toast-container { position: fixed; top: 90px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: rgba(20, 20, 30, 0.95); backdrop-filter: blur(10px); border-left: 4px solid #00f0ff; color: white; padding: 16px 24px; border-radius: 8px; display: flex; align-items: center; gap: 15px; transform: translateX(120%); transition: transform 0.4s; }
.toast.show { transform: translateX(0); }
.toast i { font-size: 20px; color: #00f0ff; }

footer { text-align: center; padding: 40px; color: #555; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-payments { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer-payments img { height: 24px; width: auto; max-width: 44px; object-fit: contain; opacity: 0.9; }
.footer-troy { font-size: 12px; font-weight: 700; color: #c0c0c0; letter-spacing: 0.05em; }
.footer-legal-link { color: #00f0ff; text-decoration: none; font-size: 13px; }
.footer-legal-link:hover { text-decoration: underline; }
.footer-copy { color: #666; font-size: 13px; margin-top: 8px; }

/* Üst destek saatleri bar */
.top-bar { background: linear-gradient(90deg, rgba(106,92,255,0.2), rgba(0,240,255,0.1)); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 8px 8%; text-align: center; font-size: 13px; color: #a0a0b0; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.top-bar i { color: #00f0ff; }

/* Son satılan ürünler - kart görünümü (referans benzeri) */
.recent-purchases-wrap { max-width: 420px; margin: 0 auto 32px; background: linear-gradient(145deg, rgba(22,22,32,0.95), rgba(18,18,26,0.98)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px; }
.home-hero-row .recent-purchases-wrap { margin: 0; }
.recent-purchases-wrap h3 { font-size: 15px; color: #aaa; margin: 0 0 16px 0; display: flex; align-items: center; gap: 8px; }
.recent-purchases-wrap h3 i { color: #6a5cff; }
.recent-purchases-wrap h3 span.accent { color: #00f0ff; }
.recent-purchase-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); cursor: pointer; transition: 0.2s; border-radius: 10px; }
.recent-purchase-row:hover { background: rgba(255,255,255,0.04); }
.recent-purchase-row:last-child { border-bottom: none; }
.recent-purchase-img { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; background: rgba(106,92,255,0.2); flex-shrink: 0; }
.recent-purchase-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-purchase-img .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #6a5cff; font-size: 20px; }
.recent-purchase-info { flex: 1; min-width: 0; }
.recent-purchase-name { font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 4px; }
.recent-purchase-meta { font-size: 12px; color: #888; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.recent-purchase-rating { color: #ffaa00; font-size: 11px; }
.recent-purchase-price-wrap { text-align: right; flex-shrink: 0; }
.recent-purchase-from { font-size: 13px; font-weight: 700; color: #00f0ff; margin-bottom: 4px; letter-spacing: 0.02em; }
.recent-purchase-buyer-name { color: #e0e0ff; font-weight: 600; }
.recent-purchase-review { font-size: 12px; color: #f0f0ff; line-height: 1.4; margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.06); max-width: 100%; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; text-shadow: 0 0 12px rgba(255,255,255,0.15); }
.recent-purchase-price { font-weight: 800; font-size: 15px; color: #00f0ff; }

/* Discord CTA */
.discord-cta-section { max-width: 1100px; margin: 48px auto 56px; padding: 0 8%; }
.discord-cta-inner { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: center; background: linear-gradient(145deg, rgba(22,22,35,0.95), rgba(18,18,28,0.98)); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px; }
@media (max-width: 900px) { .discord-cta-inner { grid-template-columns: 1fr; } }
.discord-cta-title { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.discord-cta-blue { color: #5865F2; }
.discord-cta-desc { color: #a0a0b0; font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.discord-cta-btn { display: inline-block; padding: 14px 32px; background: #5865F2; color: #fff; font-weight: 700; border-radius: 12px; text-decoration: none; transition: 0.3s; }
.discord-cta-btn:hover { background: #4752c4; color: #fff; transform: translateY(-2px); }
.discord-cta-widget { background: rgba(0,0,0,0.3); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.discord-cta-widget iframe { display: block; width: 100%; max-width: 350px; height: 500px; border: none; border-radius: 0 0 16px 16px; }
.discord-widget-header { padding: 14px 18px; background: #5865F2; color: #fff; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.discord-widget-channels { padding: 12px; }
.discord-widget-channel { padding: 10px 12px; color: #b0b0b0; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.discord-widget-members { padding: 12px 18px; font-size: 12px; color: #666; border-top: 1px solid rgba(255,255,255,0.06); }
@media (max-width: 400px) { .discord-cta-widget iframe { max-width: 100%; height: 400px; } }

/* Nav Ürünler - kuzey ışıkları gradient */
.nav-products-link { background: linear-gradient(90deg, #6a5cff, #00f0ff, #6a5cff); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.nav-products-link:hover { animation: aurora 2s ease infinite; }
@keyframes aurora { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Arama - bayrakların yanında; ikon kutu dar iken kutunun tam ortasında */
.search-inline-wrap { position: relative; }
.search-inline-bar { display: flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 12px; padding: 10px 14px; width: 44px; min-height: 44px; transition: width 0.25s ease; overflow: hidden; cursor: pointer; position: relative; background: linear-gradient(rgba(40,38,55,0.95), rgba(40,38,55,0.95)) padding-box, linear-gradient(90deg, #6a5cff, #00f0ff, #6a5cff) border-box; background-size: 100% 100%, 200% 100%; background-position: 0 0, 0 0; animation: search-aurora 2.5s ease infinite; }
.search-inline-wrap.expanded .search-inline-bar { width: 260px; max-width: min(260px, calc(100vw - 24px)); justify-content: flex-start; }
@keyframes search-aurora { 0%, 100% { background-position: 0 0, 0% 50%; } 50% { background-position: 0 0, 100% 50%; } }
.search-inline-input { border: none; background: transparent; color: #fff; font-size: 14px; flex: 1; min-width: 0; padding: 0 10px 0 0; outline: none; }
.search-inline-wrap:not(.expanded) .search-inline-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; padding: 0; opacity: 0; pointer-events: none; }
.search-inline-wrap.expanded .search-inline-input { pointer-events: auto; opacity: 1; }
.search-inline-input::placeholder { color: #888; }
.search-inline-icon { font-size: 14px; flex-shrink: 0; pointer-events: none; background: linear-gradient(90deg, #6a5cff, #00f0ff, #6a5cff); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: aurora 2.5s ease infinite; }
.search-inline-wrap.expanded .search-inline-icon { margin-right: 8px; }
.search-inline-results { position: absolute; top: calc(100% + 8px); right: 0; width: 380px; max-width: calc(100vw - 24px); max-height: 360px; overflow-y: auto; background: linear-gradient(145deg, rgba(22,22,32,0.98), rgba(18,18,26,0.99)); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 12px; box-shadow: 0 16px 40px rgba(0,0,0,0.45); z-index: 2100; display: none; }
.search-inline-wrap.has-results .search-inline-results { display: block; }
.search-section { margin-bottom: 12px; }
.search-section.empty { display: none; }
.search-section:last-child { margin-bottom: 0; }
.search-section-title { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 8px 0; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; cursor: pointer; transition: 0.2s; margin-bottom: 4px; }
.search-result-item:hover { background: rgba(255,255,255,0.06); }
.search-result-item .search-result-img { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; background: rgba(106,92,255,0.2); flex-shrink: 0; }
.search-result-item .search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-item .search-result-img .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #6a5cff; font-size: 16px; }
.search-result-item .search-result-body { flex: 1; min-width: 0; }
.search-result-item .search-result-name { font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 2px; }
.search-result-item .search-result-sub { font-size: 12px; color: #888; }
.search-result-item .search-result-price { font-weight: 700; font-size: 14px; color: #00f0ff; flex-shrink: 0; }
.search-result-item .search-result-price.old { text-decoration: line-through; color: #666; margin-right: 6px; }
.search-no-results { font-size: 13px; color: #666; padding: 12px; }

/* Ürünler sayfası filtre */
.products-toolbar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 28px; justify-content: center; }
.products-search-wrap { flex: 1; min-width: 220px; max-width: 320px; }
.products-search-wrap input { width: 100%; padding: 12px 16px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-size: 14px; }
.products-categories { display: flex; gap: 8px; flex-wrap: wrap; }
.products-cat-btn { padding: 10px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); background: rgba(26,26,36,0.6); color: #a0a0b0; font-size: 13px; font-weight: 500; cursor: pointer; transition: 0.2s; }
.products-cat-btn:hover, .products-cat-btn.active { background: linear-gradient(135deg, rgba(106,92,255,0.3), rgba(0,240,255,0.15)); color: #fff; border-color: rgba(106,92,255,0.5); }

/* Dil seçici - bayrak butonu tam doldurur, dış gri çizgi belli olmaz */
.lang-selector { display: flex; align-items: center; gap: 6px; }
.lang-btn { width: 36px; height: 28px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; background: transparent; cursor: pointer; padding: 0; overflow: hidden; transition: 0.2s; display: flex; align-items: stretch; justify-content: stretch; }
.lang-btn:hover, .lang-btn.active { border-color: #00f0ff; box-shadow: 0 0 12px rgba(0,240,255,0.3); }
.lang-btn img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 5px; box-sizing: border-box; }

/* Profil - Değiştir alanları */
.profile-field-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.profile-field-row .value { color: #00f0ff; font-size: 15px; }
.profile-edit-btn { padding: 6px 14px; border-radius: 8px; border: 1px solid rgba(0,240,255,0.4); background: rgba(0,240,255,0.1); color: #00f0ff; font-size: 12px; font-weight: 600; cursor: pointer; }
.profile-edit-btn:hover { background: rgba(0,240,255,0.2); }
.profile-edit-form { margin-top: 12px; display: none; }
.profile-edit-form.open { display: block; }

/* Ürün detay - yorumlar bölümü */
.product-detail-reviews { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.product-detail-reviews h3 { font-size: 20px; margin-bottom: 16px; }
.review-card { background: rgba(0,0,0,0.2); padding: 16px; border-radius: 12px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.05); position: relative; }
.review-card .stars { color: #ffaa00; margin-bottom: 8px; }
.review-delete-btn { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 8px; border: none; background: rgba(255,51,102,0.2); color: #ff3366; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: 0.2s; }
.review-delete-btn:hover { background: rgba(255,51,102,0.4); color: #fff; }
.review-card .review-text { color: #e8e8f5; text-shadow: 0 0 10px rgba(255,255,255,0.08); }
.review-rating-input { display: flex; gap: 4px; margin-bottom: 12px; }
.review-rating-input i { cursor: pointer; color: #444; font-size: 20px; }
.review-rating-input i.filled { color: #ffaa00; }
.review-rating-input i:hover { color: #ffaa00; }
#post-review-stars-wrap i { cursor: pointer; color: #444; font-size: 22px; }
#post-review-stars-wrap i.filled { color: #ffaa00; }
#post-review-stars-wrap i:hover { color: #ffaa00; }
.post-review-hint { color: #888; font-size: 13px; margin-bottom: 16px; }

/* Ürün durumu rozeti */
.product-status-badge { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.product-status-badge.undetected { background: rgba(50, 215, 75, 0.2); color: #32D74B; border: 1px solid rgba(50, 215, 75, 0.4); }
.product-status-badge.detected { background: rgba(255, 59, 48, 0.2); color: #ff3b30; border: 1px solid rgba(255, 59, 48, 0.4); }
.product-status-badge.testing { background: rgba(255, 204, 0, 0.2); color: #ffcc00; border: 1px solid rgba(255, 204, 0, 0.4); }
.product-status-badge.updating { background: rgba(0, 122, 255, 0.2); color: #00b4ff; border: 1px solid rgba(0, 122, 255, 0.4); }

#legal-modal-body .legal-intro { margin-bottom: 1em; color: #e0e0e0; }
#legal-modal-body .legal-heading { color: #a855f7; }

/* Çerez onay bandı */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 14px 20px;
    background: linear-gradient(180deg, rgba(18, 18, 26, 0.98), rgba(12, 12, 18, 0.99));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-consent-banner.cookie-consent-visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    flex: 1;
    min-width: 260px;
}
.cookie-consent-link {
    color: #00f0ff;
    text-decoration: underline;
    font-weight: 600;
}
.cookie-consent-link:hover { color: #fff; }
.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-consent-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.cookie-consent-accept {
    background: linear-gradient(135deg, #00f0ff, #6a5cff);
    color: #fff;
}
.cookie-consent-accept:hover { filter: brightness(1.1); }
.cookie-consent-reject {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-consent-reject:hover { background: rgba(255, 255, 255, 0.12); }
@media (max-width: 600px) {
    .cookie-consent-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-consent-actions { justify-content: center; }
}

/* Sipariş durum badge'leri */
.ph-status-inceleniyor { background: rgba(255, 170, 0, 0.15) !important; color: #ffaa00 !important; border-color: rgba(255, 170, 0, 0.4) !important; }
.ph-status-teslim_edildi { background: rgba(50, 215, 75, 0.15) !important; color: #32D74B !important; border-color: rgba(50, 215, 75, 0.4) !important; }

/* Kullanıcı key görüntüle butonu */
.ph-key-btn { padding: 8px 14px !important; width: auto !important; height: auto !important; border-radius: 10px !important; background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(106,92,255,0.15)) !important; border: 1px solid rgba(0,240,255,0.4) !important; color: #00f0ff !important; font-size: 12px !important; font-weight: 600 !important; cursor: pointer; display: inline-flex !important; align-items: center; gap: 6px; transition: all 0.25s; white-space: nowrap; }
.ph-key-btn:hover { background: rgba(0,240,255,0.3) !important; box-shadow: 0 0 16px rgba(0,240,255,0.25); color: #fff !important; }

/* Admin sipariş tablosu - durum select ve key input */
.admin-order-status-select { padding: 8px 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: #fff; font-size: 12px; font-weight: 600; cursor: pointer; min-width: 130px; }
.admin-order-status-select:focus { border-color: rgba(0,240,255,0.5); outline: none; box-shadow: 0 0 0 2px rgba(0,240,255,0.15); }
.admin-order-status-select option { background: #12121a; color: #fff; }
.admin-order-key-input { padding: 8px 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: #00f0ff; font-size: 12px; font-family: monospace; min-width: 180px; max-width: 260px; }
.admin-order-key-input:focus { border-color: rgba(0,240,255,0.5); outline: none; box-shadow: 0 0 0 2px rgba(0,240,255,0.15); }
.admin-order-key-input::placeholder { color: #555; font-family: inherit; }
.admin-order-save-btn { white-space: nowrap; }