/*
Theme Name: pincopin
Theme URI: https://example.com/
Author: Onuryigit
Description: Dark/neon gaming store WordPress theme starter (Eldorado/G2G/Bynogame vibe). WooCommerce-ready, blog-ready, with header search + login/register + Games dropdown.
Version: 0.3.27
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pincopin
Tags: dark, ecommerce, blog, custom-logo, responsive-layout
*/

/* =========================================================
   ROOT VARIABLES
   Site genel renkleri, radius, gölge, max genişlik
========================================================= */
:root {
  --bg: #070b10;
  --panel: #0c121a;
  --panel2: #0f1722;
  --text: #e9eef6;
  --muted: #9aa7b8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #2bff78;
  --accent2: #00e5ff;
  --warn: #ffbf3c;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
  --r: 18px;
  --r2: 26px;
  --max: 1240px;
  --header-h: 56px;
  --ease: cubic-bezier(.2, .9, .2, 1);
}

/* =========================================================
   RESET / BASE
   Temel sıfırlamalar
========================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  line-height: 1.5;
  cursor: auto;

  /* Ana arka plan resmi */
  background-color: #070b10;
  background-image: url("/wp-content/themes/pincopin/assets/images/background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll; /* fixed yerine scroll daha az kasar */
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Tıklanabilir elemanlar için cursor */
a,
button,
input[type="submit"],
.btn,
.pill {
  cursor: pointer;
}

/* İçerik genişliği */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px; /* Masaüstü yatay boşluk */
}

/* =========================================================
   BACKGROUND OVERLAYS
   Arka plan okunabilirliği ve glow efektleri
========================================================= */

/* Koyu overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  pointer-events: none;
  z-index: 0;
}

/* Neon glow katmanı */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 70% 10%, rgba(43, 255, 120, 0.10), transparent 60%),
    radial-gradient(700px 500px at 20% 30%, rgba(0, 229, 255, 0.08), transparent 55%);
}

/* Ana içerik overlay üstünde kalsın */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999; /* Hero image üstüne çıkması için yüksek */
  width: 100%;
  height: var(--header-h);

  backdrop-filter: blur(10px);
  background: rgba(9, 12, 18, 0.70); /* Header şeffaflık */
  border-bottom: 1px solid var(--line);

  transition: transform .24s var(--ease), opacity .24s var(--ease);
  will-change: transform;
}

/* Scroll ile gizlenen header */
.site-header.is-hidden {
  transform: translateY(-110%);
  opacity: 0.98;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

/* Header iç hizalama */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  height: var(--header-h) !important;
  min-height: var(--header-h) !important;
  padding: 0 !important;
}

.header-left,
.header-mid,
.header-right {
  display: flex;
  align-items: center;
  height: var(--header-h);
}

.header-left {
  min-width: 240px;
  gap: 16px;
}

.header-mid {
  flex: 1;
  gap: 14px;
}

.header-right {
  position: relative;
  gap: 10px;
  flex-wrap: nowrap;
}

/* =========================================================
   BRAND / LOGO
========================================================= */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .4px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 2px solid rgba(43, 255, 120, 0.72);
  box-shadow:
    0 0 0 3px rgba(43, 255, 120, 0.12),
    0 12px 30px rgba(43, 255, 120, 0.10);
}

.brand-mark::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--accent);
  opacity: .95;
  clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%, 50% 70%);
}

/* =========================================================
   SEARCH BAR
========================================================= */
.searchbar {
  display: none;
  flex: 1;
  align-items: center;
  gap: 10px;
  height: var(--header-h);
}

@media (min-width: 980px) {
  .searchbar {
    display: flex;
  }
}

.searchbar input {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border-radius: 14px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.searchbar input:focus {
  border-color: rgba(43, 255, 120, 0.55);
  box-shadow: 0 0 0 3px rgba(43, 255, 120, 0.12);
}

/* =========================================================
   BUTTONS / PILLS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 36px;
  padding: 0 12px !important;
  border-radius: 16px;

  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;

  border: 1px solid rgba(43, 255, 120, 0.55);
  background: linear-gradient(180deg, rgba(43, 255, 120, 0.14), rgba(43, 255, 120, 0.03));
  box-shadow: 0 0 0 3px rgba(43, 255, 120, 0.10);

  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    background-color .18s var(--ease),
    border-color .18s var(--ease),
    opacity .18s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 3px rgba(43, 255, 120, 0.14),
    0 18px 44px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--line);
  box-shadow: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  padding: 0 12px !important;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);

  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    background-color .18s var(--ease),
    border-color .18s var(--ease),
    opacity .18s var(--ease);
}

.pill:hover {
  transform: translateY(-1px);
}

/* =========================================================
   LANGUAGE SELECT
   TranslatePress / diğer switcher alanları için
========================================================= */
.lang {
  display: inline-flex;
  align-items: center;
}

.lang select,
.lang .lang-select {
  height: 36px;
  padding: 0 10px;
  border-radius: 14px;
  outline: none;

  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.lang select:focus {
  border-color: rgba(43, 255, 120, 0.55);
  box-shadow: 0 0 0 3px rgba(43, 255, 120, 0.12);
}

/* =========================================================
   MENU TOGGLE / HAMBURGER
========================================================= */
.menu-toggle {
  display: inline-flex;
  color: #ffffff !important;
  font-size: 18px;
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
.nav {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li {
  position: relative;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 0 12px !important;
  border-radius: 12px;

  color: rgba(233, 238, 246, 0.92);
  font-size: 12px;
  font-weight: 900;
  line-height: var(--header-h) !important;
  text-transform: uppercase;

  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    background-color .18s var(--ease),
    border-color .18s var(--ease),
    opacity .18s var(--ease);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.nav li.menu-item-has-children > a::after {
  content: "▾";
  opacity: .8;
  font-size: 12px;
}

/* Dropdown */
.nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;

  display: none;
  min-width: 240px;
  padding: 10px;

  background: rgba(9, 12, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  box-shadow: var(--shadow);

  opacity: 0;
  transform: translateY(8px) scale(.98);
  transform-origin: top;
  pointer-events: none;

  transition: opacity .16s var(--ease), transform .16s var(--ease);
}

.nav li:hover > ul {
  display: block;
  opacity: 1;
  transform: translateY(6px) scale(1);
  pointer-events: auto;
}

.nav li ul li a {
  width: 100%;
}

.nav li ul li a:hover {
  background: rgba(43, 255, 120, 0.10);
  border: 1px solid rgba(43, 255, 120, 0.14);
}

/* =========================================================
   OPTIONAL POPULAR DROPDOWN
========================================================= */
.pc-popular {
  position: relative;
  display: none;
}

@media (min-width: 980px) {
  .pc-popular {
    display: inline-flex;
    align-items: center;
  }
}

.pc-popular-btn {
  height: 36px;
  padding: 0 12px;
  border-radius: 14px;

  color: rgba(233, 238, 246, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;

  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.10);
}

.pc-popular-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(43, 255, 120, 0.25);
}

.pc-popular-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 90;

  min-width: 220px;
  padding: 10px;

  background: rgba(9, 12, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  box-shadow: var(--shadow);

  opacity: 0;
  transform: translateY(8px) scale(.99);
  pointer-events: none;

  transition: opacity .16s var(--ease), transform .16s var(--ease);
}

.pc-popular:hover .pc-popular-dd {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pc-popular-dd a {
  display: block;
  padding: 10px;
  border-radius: 12px;

  color: rgba(233, 238, 246, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-popular-dd a:hover {
  background: rgba(43, 255, 120, 0.10);
  border: 1px solid rgba(43, 255, 120, 0.14);
}

/* =========================================================
   PROFILE AVATAR
========================================================= */
.profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.profile-avatar img {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* =========================================================
   ACCOUNT TOGGLE BUTTON
========================================================= */
.account-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  padding: 0 !important;
  border-radius: 16px;

  color: #fff !important;
  font-size: 18px;
  line-height: 1;

  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.account-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.06) !important;
}

/* =========================================================
   ACCOUNT MENU
========================================================= */
.account-menu {
  position: absolute;
  top: calc(var(--header-h) + 10px);
  right: 18px;
  z-index: 10000;

  min-width: 240px;
  max-height: 70vh;
  overflow: auto;

  padding: 14px;
  border-radius: 18px;

  background: rgba(15, 20, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);

  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;

  transition: opacity .16s var(--ease), transform .16s var(--ease);
}

.account-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.account-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 10px;
  border-radius: 12px;

  color: rgba(233, 238, 246, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;

  background: transparent !important;
}

.account-menu a:hover {
  background: rgba(43, 255, 120, 0.10) !important;
  border: 1px solid rgba(43, 255, 120, 0.14);
}

.account-menu a.logout {
  color: #ff8b8b;
  background: rgba(255, 80, 80, 0.10) !important;
  border: 1px solid rgba(255, 80, 80, 0.35);
}

.account-menu a.logout:hover {
  color: #ffd0d0;
  background: rgba(255, 80, 80, 0.18) !important;
  border-color: rgba(255, 80, 80, 0.55);
}

/* Account menu üst bilgi */
.account-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 8px;
}

.account-head .avatar img {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.who-name {
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.who-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;

  color: var(--muted);
  font-size: 12px;
}

.account-menu .who-dot {
  opacity: .55;
}

.account-sep {
  height: 1px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.10);
}

/* =========================================================
   AUTH BUTTONS
   Login yoksa Sign In / Sign Up alanı
========================================================= */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border-radius: 999px;

  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;

  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.35);
  backdrop-filter: blur(10px);
}

.auth-btn:hover {
  background: rgba(8, 12, 20, 0.55);
  border-color: rgba(43, 255, 120, 0.35);
}

.auth-signup {
  border-color: rgba(43, 255, 120, 0.35);
  box-shadow: 0 0 0 3px rgba(43, 255, 120, 0.10);
}

/* =========================================================
   MESSAGE BUTTON + BADGE
   Mesaj butonu ve unread counter
========================================================= */
.message-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.msg-badge {
  position: absolute;
  top: -5px;
  right: -5px;

  min-width: 16px;
  padding: 2px 6px;
  border-radius: 999px;

  color: #fff;
  background: #ff3b3b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-align: center;

  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  z-index: 0;
  padding: 44px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 22px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  color: rgba(43, 255, 120, 0.95);
  background: rgba(43, 255, 120, 0.10);
  border: 1px solid rgba(43, 255, 120, 0.22);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.h1 {
  margin: 14px 0 10px;
  font-size: 64px;
  line-height: .95;
  letter-spacing: .6px;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

@media (max-width: 720px) {
  .h1 {
    font-size: 42px;
  }
}

.sub {
  margin-bottom: 16px;

  color: rgba(233, 238, 246, 0.85);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}

/* Hero kartı */
.hero-card {
  padding: 16px;
}

.hero-card .art {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background:
    radial-gradient(700px 350px at 60% 20%, rgba(43, 255, 120, 0.25), transparent 55%),
    radial-gradient(450px 280px at 35% 65%, rgba(0, 229, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero-card .art::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  border: 1px solid rgba(43, 255, 120, 0.25);
  box-shadow: 0 0 0 6px rgba(43, 255, 120, 0.06) inset;
  pointer-events: none;
}

.hero-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

/* Hero image */
.hero-image {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Header üstüne çıkıp tıklamayı engellemesin */
}

.hero-image img {
  width: 100%;
  max-width: 950px;
  height: auto;
  object-fit: contain;
  border: none;
  background: none;
  box-shadow: none;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   SECTIONS / CARDS
========================================================= */
.section {
  padding: 24px 0;
}

.section-title {
  margin: 0 0 16px;
  text-align: center;
}

.kicker {
  color: rgba(43, 255, 120, 0.9);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.h2 {
  margin: 10px 0 0;
  font-size: 32px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hr-accent {
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(43, 255, 120, 0.9);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 16px;
  border-radius: var(--r);

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);

  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    background-color .18s var(--ease),
    border-color .18s var(--ease),
    opacity .18s var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 255, 120, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.thumb {
  display: grid;
  place-items: center;
  overflow: hidden;

  width: 92px;
  height: 92px;
  border-radius: 18px;

  font-size: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.content {
  padding: 24px 0;
}

.entry {
  max-width: 920px;
  margin: 0 auto;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  margin-top: 34px;
  padding: 24px 0;

  background: rgba(9, 12, 18, 0.55);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WOOCOMMERCE
========================================================= */
.woocommerce .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .woocommerce .products {
    grid-template-columns: 1fr;
  }
}

.woocommerce ul.products li.product {
  padding: 14px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);
}

.woocommerce ul.products li.product:hover {
  border-color: rgba(43, 255, 120, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.woocommerce ul.products li.product a img {
  border-radius: 14px;
  border: 1px solid var(--line);
}

.woocommerce span.onsale {
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(43, 255, 120, 0.95) !important;
  color: #06100b !important;
}

.woocommerce div.product .product_title {
  font-weight: 1000;
  text-transform: uppercase;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
  padding: 10px 14px !important;
  border-radius: 16px !important;

  color: var(--text) !important;
  font-weight: 1000 !important;
  text-transform: uppercase !important;

  border: 1px solid rgba(43, 255, 120, 0.55) !important;
  background: linear-gradient(180deg, rgba(43, 255, 120, 0.14), rgba(43, 255, 120, 0.03)) !important;
}

/* =========================================================
   MY ACCOUNT
========================================================= */
.woocommerce-account .woocommerce {
  display: flex;
  gap: 30px;
}

.pc-account-nav {
  min-width: 260px;
  padding: 20px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-account-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-account-nav li {
  margin-bottom: 8px;
}

.pc-account-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;

  color: #e9eef6;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;

  transition: all .18s ease;
}

.pc-account-nav li.is-active a,
.pc-account-nav a:hover {
  background: rgba(43, 255, 120, 0.12);
  border: 1px solid rgba(43, 255, 120, 0.25);
}

.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
  padding: 30px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce-MyAccount-navigation {
  background: rgba(10, 12, 18, 0.85) !important;
  backdrop-filter: blur(10px);
}

.woocommerce-MyAccount-navigation a {
  color: inherit;
}

.woocommerce-MyAccount-navigation .is-active > a {
  background: rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 980px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }

  .pc-account-nav {
    width: 100%;
  }
}

/* =========================================================
   ACCOUNT FORM
========================================================= */
.pc-form {
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-form-head h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 1000;
  text-transform: uppercase;
}

.pc-form-head.small h3 {
  margin: 0;
  color: rgba(233, 238, 246, 0.92);
  font-size: 14px;
  font-weight: 1000;
  text-transform: uppercase;
}

.pc-form-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.pc-form-grid .form-row-wide {
  grid-column: 1 / -1;
}

.pc-form label {
  display: block;
  margin: 0 0 6px;

  color: rgba(233, 238, 246, 0.85);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pc-form input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  outline: none;

  color: var(--text) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.pc-form input:hover {
  border-color: rgba(43, 255, 120, 0.25) !important;
}

.pc-form input:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(43, 255, 120, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(43, 255, 120, 0.10) !important;
}

.pc-form-sep {
  height: 1px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 980px) {
  .pc-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DASHBOARD HEAD
========================================================= */
.pc-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.pc-dashboard-head h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.pc-dashboard-desc {
  margin: 0;
  color: #9aa7b8;
  font-size: 14px;
}

.pc-dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-danger {
  color: #fff;
  border: 1px solid rgba(255, 80, 80, 0.6);
  background: linear-gradient(180deg, rgba(255, 80, 80, 0.15), rgba(255, 80, 80, 0.05));
}

.btn-danger:hover {
  background: rgba(255, 80, 80, 0.25);
}

/* =========================================================
   MOBILE / RESPONSIVE
   Tüm ekranlarda hizalama ve daha dar boşluklar
========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 980px) {
  :root {
    --header-h: 54px;
  }

  .header-inner {
    flex-wrap: wrap;
    height: auto !important;
    min-height: var(--header-h) !important;
  }

  .header-left {
    min-width: auto;
  }

  .header-mid {
    order: 3;
    flex: 1 1 100%;
    height: auto;
  }

  .header-right {
    order: 2;
    margin-left: auto;
  }

  .nav {
    display: none !important;
  }

  .searchbar {
    display: none !important;
  }

  .lang select {
    padding: 0 10px;
    font-size: 11px;
  }

  .btn {
    font-size: 11px;
  }

  .btn.btn-ghost {
    display: none;
  }

  .account-menu {
    top: 60px;
    right: 18px;
  }

  .woocommerce-account .woocommerce {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 14px; /* Mobilde kenar boşluğu küçültüldü */
  }

  .header-right {
    gap: 8px;
  }

  .pill {
    padding: 0 10px;
  }

  .btn {
    border-radius: 14px;
  }

  .header-right .btn:not(.btn-ghost) {
    display: none;
  }

  .account-menu {
    left: 14px;
    right: 14px;
    min-width: auto;
  }

  .hero {
    padding: 44px 0 18px;
  }

  .h1 {
    font-size: 36px;
  }

  .sub {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .btn:hover {
    transform: none;
  }
}

/* =========================================================
   MOBILE NAV
   Eğer mobil nav varsa accordion gibi çalışır
========================================================= */
@media (max-width: 980px) {
  .mobile-nav {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .16s var(--ease), transform .16s var(--ease);
  }

  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav ul ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s var(--ease);
  }

  .mobile-nav li.open > ul {
    max-height: 700px;
  }

  .mobile-nav li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* =========================================================
   OPTIONAL PC SWITCHER
   Geri kullanmak istersen hazır dursun
========================================================= */
.pc-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pc-switcher-btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 16px;

  color: rgba(233, 238, 246, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.pc-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(43, 255, 120, 0.25);
}

.pc-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 90;

  width: 260px;
  padding: 12px;
  border-radius: 18px;

  background: rgba(15, 20, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);

  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition: opacity .16s var(--ease), transform .16s var(--ease);
}

.pc-switcher.open .pc-switcher-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pc-switcher-title {
  margin: 6px 2px 8px;
  color: rgba(154, 167, 184, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pc-switcher-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-switcher-links a {
  padding: 8px 10px;
  border-radius: 12px;

  font-size: 12px;
  font-weight: 900;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.pc-switcher-links a:hover {
  background: rgba(43, 255, 120, 0.10);
  border-color: rgba(43, 255, 120, 0.22);
}

.pc-switcher-sep {
  height: 1px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.10);
}
/* =========================================
   EXTRA RESPONSIVE SPACING / LAYOUT TUNING
   Tüm ekranlarda daha sıkı ve dengeli hizalama
========================================= */

/* Ana içerik daha geniş kullansın */
:root{
  --max: 1320px; /* eskisi 1240px idi */
}

/* Masaüstünde container yan boşluğu biraz düşür */
.container{
  padding-left: 16px;
  padding-right: 16px;
}

/* Büyük ekranlarda içerik daha dengeli yayılsın */
@media (min-width: 1400px){
  .container{
    max-width: 1360px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Tablet */
@media (max-width: 980px){
  .container{
    padding-left: 14px;
    padding-right: 14px;
  }

  .content{
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section{
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-3{
    gap: 12px;
  }

  .hero-grid{
    gap: 16px;
  }

  .card{
    padding: 14px;
  }
}

/* Küçük mobil */
@media (max-width: 520px){
  .container{
    padding-left: 10px;
    padding-right: 10px;
  }

  .section{
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .content{
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .card{
    padding: 12px;
    border-radius: 16px;
  }

  .thumb{
    width: 76px;
    height: 76px;
    border-radius: 14px;
    font-size: 24px;
  }

  .hero-grid{
    gap: 12px;
  }

  .hero{
    padding-top: 26px;
    padding-bottom: 14px;
  }

  .section-title{
    margin-bottom: 12px;
  }

  .h2{
    font-size: 24px;
  }

  .entry{
    max-width: 100%;
  }

  .woocommerce ul.products li.product{
    padding: 12px;
  }

  .woocommerce-account .woocommerce-MyAccount-content{
    padding: 18px 14px;
  }

  .pc-account-nav{
    padding: 14px;
  }

  .pc-form{
    padding: 16px;
  }
}
/* =========================================
   MOBILE FULL OPTIMIZATION
   Tam mobil uyum ve hizalama düzeltmeleri
========================================= */

@media (max-width: 980px){

  /* Genel container */
  .container{
    padding-left:14px;
    padding-right:14px;
  }

  /* Header düzeni */
  .site-header{
    height:auto;
    min-height:var(--header-h);
  }

  .header-inner{
    flex-wrap:nowrap;
    align-items:center;
    gap:10px;
    min-height:var(--header-h) !important;
    height:auto !important;
  }

  .header-left{
    min-width:0;
    flex:0 1 auto;
    gap:10px;
  }

  .header-mid{
    display:none !important; /* mobilde nav + search gizli */
  }

  .header-right{
    margin-left:auto;
    gap:8px;
    flex:0 0 auto;
  }

  .brand{
    min-width:0;
    gap:8px;
  }

  .brand span:last-child{
    font-size:13px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:130px;
  }

  .brand-mark{
    width:30px;
    height:30px;
    border-radius:9px;
  }

  .brand-mark::after{
    width:12px;
    height:12px;
  }

  /* Header ikon / buton boyutları */
  .pill,
  .message-btn,
  .profile-avatar,
  .auth-btn{
    height:34px;
    min-height:34px;
  }

  .pill{
    padding:0 10px !important;
    border-radius:14px;
  }

  .profile-avatar img{
    width:34px;
    height:34px;
    border-radius:12px;
  }

  .auth-buttons{
    gap:6px;
  }

  .auth-btn{
    padding:0 10px;
    font-size:11px;
    border-radius:12px;
  }

  /* Account menu mobil */
  .account-menu{
    top:calc(var(--header-h) + 8px);
    right:14px;
    left:14px;
    min-width:auto;
    width:auto;
    max-height:70vh;
    padding:12px;
    border-radius:16px;
  }

  .account-head{
    padding:8px 8px 6px;
    gap:10px;
  }

  .account-head .avatar img{
    width:40px;
    height:40px;
  }

  .who-name{
    font-size:11px;
    letter-spacing:.08em;
  }

  .who-sub{
    font-size:11px;
    gap:6px;
  }

  .account-menu a{
    padding:11px 10px;
    font-size:11px;
    border-radius:10px;
  }

  /* Hero */
  .hero{
    padding-top:24px;
    padding-bottom:16px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .badge{
    padding:8px 12px;
    font-size:11px;
    letter-spacing:.12em;
  }

  .h1{
    font-size:34px;
    line-height:1;
    margin:12px 0 10px;
    word-break:break-word;
  }

  .sub{
    font-size:11px;
    line-height:1.45;
    letter-spacing:.14em;
    margin-bottom:12px;
  }

  .hero-cta{
    gap:10px;
    margin-top:12px;
  }

  .hero-image{
    margin-top:4px;
  }

  .hero-image img{
    max-width:100%;
    width:100%;
  }

  /* Section spacing */
  .section{
    padding-top:18px;
    padding-bottom:18px;
  }

  .section-title{
    margin-bottom:12px;
  }

  .h2{
    font-size:24px;
    line-height:1.15;
  }

  .kicker{
    font-size:11px;
    letter-spacing:.16em;
  }

  /* Kartlar */
  .grid-3{
    grid-template-columns:1fr;
    gap:12px;
  }

  .card{
    padding:14px;
    border-radius:16px;
  }

  .row{
    gap:12px;
    align-items:center;
  }

  .thumb{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:14px;
    font-size:22px;
  }

  .muted{
    font-size:12px;
    line-height:1.5;
  }

  /* Genel içerik */
  .content{
    padding-top:18px;
    padding-bottom:18px;
  }

  .entry{
    max-width:100%;
  }

  /* Footer */
  .site-footer{
    margin-top:24px;
    padding-top:20px;
    padding-bottom:20px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  /* WooCommerce grid */
  .woocommerce .products{
    grid-template-columns:1fr !important;
    gap:12px;
  }

  .woocommerce ul.products li.product{
    padding:12px;
    border-radius:16px;
  }

  .woocommerce ul.products li.product a img{
    border-radius:12px;
  }

  .woocommerce .button,
  .woocommerce button.button,
  .woocommerce input.button{
    width:100%;
    justify-content:center;
    font-size:12px !important;
  }

  /* My Account */
  .woocommerce-account .woocommerce{
    flex-direction:column;
    gap:14px;
  }

  .woocommerce-MyAccount-navigation,
  .pc-account-nav{
    width:100%;
    min-width:0;
    padding:14px;
    border-radius:16px;
  }

  .woocommerce-account .woocommerce-MyAccount-content{
    width:100%;
    padding:16px 14px;
    border-radius:16px;
  }

  .pc-form{
    padding:16px;
    border-radius:16px;
  }

  .pc-form-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .pc-form input{
    height:42px;
  }
}

@media (max-width: 640px){

  .container{
    padding-left:12px;
    padding-right:12px;
  }

  .brand span:last-child{
    max-width:110px;
    font-size:12px;
  }

  .h1{
    font-size:30px;
  }

  .h2{
    font-size:22px;
  }

  .card{
    padding:12px;
  }

  .account-menu{
    left:12px;
    right:12px;
  }
}

@media (max-width: 420px){

  .container{
    padding-left:10px;
    padding-right:10px;
  }

  .header-inner{
    gap:8px;
  }

  .brand span:last-child{
    max-width:92px;
    font-size:11px;
  }

  .pill{
    padding:0 8px !important;
  }

  .auth-btn{
    padding:0 8px;
    font-size:10px;
  }

  .h1{
    font-size:26px;
  }

  .sub{
    font-size:10px;
    letter-spacing:.10em;
  }

  .thumb{
    width:64px;
    height:64px;
    min-width:64px;
    font-size:20px;
  }

  .msg-badge{
    top:-4px;
    right:-4px;
    font-size:10px;
    min-width:14px;
    padding:2px 5px;
  }
}
/* =========================================
   FIX FEATURED PRODUCTS GRID
========================================= */

/* ürün grid düzeni */
.woocommerce ul.products{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr)) !important;
  gap:20px;
  justify-items:center;
}

/* ürün kartı */
.woocommerce ul.products li.product{
  width:100%;
  max-width:260px;
  text-align:center;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  transition:all .2s ease;
}

/* hover efekti */
.woocommerce ul.products li.product:hover{
  transform:translateY(-4px);
  border-color:rgba(43,255,120,.25);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

/* ürün resmi */
.woocommerce ul.products li.product img{
  max-width:80px;
  margin:0 auto 10px;
  border-radius:12px;
}

/* ürün başlığı */
.woocommerce ul.products li.product h2{
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  margin:6px 0;
}

/* fiyat */
.woocommerce ul.products li.product .price{
  font-size:14px;
  font-weight:700;
  margin-bottom:10px;
}

/* buton */
.woocommerce ul.products li.product .button{
  width:100%;
  justify-content:center;
  font-size:12px !important;
}
/* =========================================
   FEATURED PRODUCTS FIX
========================================= */

/* 3 ürün ortalı */
.woocommerce ul.products{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:40px;
  justify-items:center;
}

/* kart */
.woocommerce ul.products li.product{
  max-width:260px;
  width:100%;
  padding:22px;
  text-align:center;
}

/* ürün resmi */
.woocommerce ul.products li.product img{
  width:120px;
  height:auto;
  object-fit:contain;
  margin:0 auto 12px;
  background:none;
  border:none;
}

/* başlık */
.woocommerce ul.products li.product h2{
  font-size:14px;
  line-height:1.4;
}

/* mobil */
@media (max-width:980px){
  .woocommerce ul.products{
    grid-template-columns:1fr !important;
    gap:18px;
  }
}