/* =========================================================
   IdorHUB - Tasarim Sistemi v5 "Profesyonel E-ticaret"
   Tek vurgu rengi (mavi), yogun/fonksiyonel e-ticaret grid'i,
   net fiyat/indirim/guven sinyalleri. Iki temali (acik/koyu).
   Gradyan/glow/neon yok, renk karmasasi yok.
   ========================================================= */

:root {
  --color-bg: #f5f6f8;
  --color-surface: #ffffff;
  --color-surface-alt: #eef0f3;
  --color-surface-hover: #e7e9ee;
  --color-border: #e2e4e9;

  --color-text: #1a1d29;
  --color-text-muted: #626675;
  --color-text-faint: #9497a3;

  --color-primary: #0284c7;
  --color-primary-hover: #0369a1;
  --color-primary-light: #e0f2fe;
  --color-primary-ink: #ffffff;

  --color-sale: #e11d48;
  --color-sale-bg: #fdecef;

  --color-success: #16a34a;
  --color-success-bg: #e9f9ee;
  --color-danger: #dc2626;
  --color-danger-bg: #fdecec;
  --color-warning: #d97706;
  --color-warning-bg: #fef6e6;
  --color-info-bg: #e0f2fe;
  --color-info-text: #0369a1;
  --color-star: #f59e0b;

  --shadow-sm: 0 1px 2px rgba(20, 22, 31, .06);
  --shadow-md: 0 6px 16px rgba(20, 22, 31, .08);
  --shadow-lg: 0 18px 40px rgba(20, 22, 31, .12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-height: 68px;
  --transition: 160ms ease;
}

[data-theme="dark"] {
  --color-bg: #0d0f14;
  --color-surface: #161920;
  --color-surface-alt: #1d2129;
  --color-surface-hover: #262b35;
  --color-border: #2a2e38;

  --color-text: #ffffff;
  --color-text-muted: #ffffff;
  --color-text-faint: #e2e8f0;

  --color-primary: #38bdf8;
  --color-primary-hover: #0284c7;
  --color-primary-light: rgba(56, 189, 248, .14);
  --color-primary-ink: #0f172a;

  --color-sale: #fb7185;
  --color-sale-bg: rgba(225, 29, 72, .18);

  --color-success: #4ade80;
  --color-success-bg: rgba(34, 197, 94, .16);
  --color-danger: #f87171;
  --color-danger-bg: rgba(220, 38, 38, .18);
  --color-warning: #fbbf24;
  --color-warning-bg: rgba(217, 119, 6, .18);
  --color-info-bg: rgba(56, 189, 248, .14);
  --color-info-text: #38bdf8;
  --color-star: #fbbf24;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 8px 18px rgba(0, 0, 0, .45);
  --shadow-lg: 0 22px 50px rgba(0, 0, 0, .55);
}

* {
  box-sizing: border-box;
}

*:focus,
*:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible,
button:focus,
button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition), color var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

p {
  margin: 0 0 1em;
  color: var(--color-text-muted);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-faint);
}

header,
footer,
.card,
.card-tight,
.product-card,
.stat-card,
.table-wrap,
input,
select,
textarea,
.btn,
table,
thead th,
tbody td,
.flash,
.category-chip,
.toast,
.admin-sidebar,
.user-menu-dropdown,
.lang-dropdown,
.header-search {
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.fade-in-up {
  animation: fadeInUp 420ms ease both;
}

.fade-in {
  animation: fadeIn 340ms ease both;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(.7);
  }

  70% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shakeX {

  10%,
  90% {
    transform: translateX(-1px);
  }

  20%,
  80% {
    transform: translateX(2px);
  }

  30%,
  50%,
  70% {
    transform: translateX(-4px);
  }

  40%,
  60% {
    transform: translateX(4px);
  }
}

@keyframes spin360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes radarPing {
  0% {
    transform: scale(1);
    opacity: .55;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.stagger>* {
  animation: fadeInUp 420ms ease both;
}

.stagger>*:nth-child(1) {
  animation-delay: 20ms;
}

.stagger>*:nth-child(2) {
  animation-delay: 45ms;
}

.stagger>*:nth-child(3) {
  animation-delay: 70ms;
}

.stagger>*:nth-child(4) {
  animation-delay: 95ms;
}

.stagger>*:nth-child(5) {
  animation-delay: 120ms;
}

.stagger>*:nth-child(6) {
  animation-delay: 145ms;
}

.stagger>*:nth-child(7) {
  animation-delay: 170ms;
}

.stagger>*:nth-child(8) {
  animation-delay: 195ms;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn svg {
  stroke: currentColor;
  color: inherit;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-ink) !important;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-primary-ink) !important;
  box-shadow: var(--shadow-md);
}

.btn-secondary,
.btn-glass {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover,
.btn-glass:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
}

.btn-ghost:hover {
  background: var(--color-surface-alt);
}

.btn-danger {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.btn-danger:hover {
  filter: brightness(.96);
}

.btn-dark {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-dark:hover {
  opacity: .88;
}

.btn-sm {
  padding: 6px 13px;
  font-size: 13px;
}

.btn-md {
  padding: 9px 16px;
  font-size: 13.5px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 15.5px;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn-icon {
  padding: 9px;
}

/* ---------- Announcement bar ---------- */
.top-announcement-bar {
  background: var(--color-primary);
  color: var(--color-primary-ink);
  overflow: hidden;
}

.announcement-bar-container {
  padding: 8px 20px;
}

.announcement-static-text {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.announcement-viewport {
  overflow: hidden;
}

.announcement-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: marquee 22s linear infinite;
}

.announcement-item {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-surface);
  border-bottom: none;
}

.site-header .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  gap: 18px;
}

.brand,
.brand-clean {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 70px;
}

.brand-icon-simple {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-primary-ink);
  border-radius: 8px;
}

.brand-icon-simple svg {
  width: 17px;
  height: 17px;
}

.brand-logo-img {
  height: 36px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.brand-name,
.brand-name-clean {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-name strong,
.brand-name-clean strong {
  font-weight: 800;
  color: var(--color-primary);
}

/* Header search bar (e-ticaret standardi) */
.header-search {
  flex: 1 1 auto;
  max-width: 460px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0 14px;
}

.header-search:focus-within {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.header-search svg {
  width: 17px;
  height: 17px;
  color: var(--color-text-faint);
  flex-shrink: 0;
}

.header-search input {
  border: none;
  background: transparent;
  padding: 9px 10px;
  font-size: 14px;
  width: 100%;
  color: var(--color-text);
}

.header-search input:focus {
  outline: none;
}

.main-nav,
.main-nav-clean {
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  z-index: 10;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-text);
  background: var(--color-surface-alt);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-actions-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-actions-divider {
  width: 1px;
  height: 22px;
  background: var(--color-border);
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  transition: background var(--transition), color var(--transition);
}

.icon-btn:hover {
  background: var(--color-surface-alt);
  color: var(--color-text);
}

.favorites-btn:hover {
  color: var(--color-sale);
  background: var(--color-sale-bg);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-moon,
.theme-toggle .theme-text-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun,
[data-theme="dark"] .theme-toggle .theme-text-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon,
[data-theme="dark"] .theme-toggle .theme-text-moon {
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--color-sale);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--color-surface);
}

/* Language switcher - flag only, compact */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 8px 6px;
  color: var(--color-text-muted);
  transition: background var(--transition);
}

.lang-btn:hover {
  background: var(--color-surface-alt);
}

.lang-flag {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.chevron-icon {
  width: 13px;
  height: 13px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text);
}

.lang-dropdown a:hover {
  background: var(--color-surface-alt);
}

.lang-dropdown a.active {
  color: var(--color-primary);
  font-weight: 700;
}

.check-icon {
  width: 15px;
  height: 15px;
  margin-left: auto;
  color: var(--color-primary);
}

.user-menu {
  position: relative;
  display: inline-block;
}

.user-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  user-select: none;
}

.user-menu-trigger:hover,
.user-menu.open .user-menu-trigger {
  background: var(--color-surface);
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.15);
}

.user-trigger-icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  transition: color var(--transition);
  flex-shrink: 0;
}

.user-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}

.user-menu-trigger:hover .user-name,
.user-menu.open .user-name {
  color: var(--color-primary);
}

.user-chevron {
  width: 13px;
  height: 13px;
  color: var(--color-text-muted);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  margin-left: 2px;
}

.user-menu.open .user-chevron,
.user-menu:hover .user-chevron {
  color: var(--color-primary);
}

.user-menu.open .user-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu Container */
.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
  overflow: hidden;
}

.user-menu-dropdown.open,
.user-menu:hover .user-menu-dropdown,
.user-menu.open .user-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 12px 14px;
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.dropdown-header-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dropdown-user-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-user-email {
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.dropdown-body {
  padding: 6px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9.5px 12px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  transition: all var(--transition);
  text-decoration: none;
}

.dropdown-item:hover {
  background: var(--color-surface-alt);
  color: var(--color-primary);
}

.dropdown-icon {
  width: 17px;
  height: 17px;
  color: var(--color-text-muted);
  transition: color var(--transition);
  flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon {
  color: var(--color-primary);
}

.dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 5px 6px;
}

.dropdown-item.admin-link {
  color: var(--color-primary);
}

.dropdown-item.admin-link .dropdown-icon {
  color: var(--color-primary);
}

.dropdown-item.danger {
  color: var(--color-danger);
}

.dropdown-item.danger .dropdown-icon {
  color: var(--color-danger);
}

.dropdown-item.danger:hover {
  background: var(--color-danger-bg);
}

.user-menu-dropdown a.admin-link {
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.mobile-toggle span {
  width: 19px;
  height: 2px;
  background: var(--color-text);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Flash messages ---------- */
.flash-stack {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  animation: fadeInUp 260ms ease both;
  border: 1px solid transparent;
}

.flash-success {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.flash-error {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.flash-info {
  background: var(--color-info-bg);
  color: var(--color-info-text);
}

.flash-close {
  background: transparent;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: inherit;
  opacity: .6;
}

.flash-close:hover {
  opacity: 1;
}

/* ---------- Auth Form Minimal Alert ---------- */
.auth-minimal-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  animation: fadeInUp 240ms ease both;
}

.auth-minimal-alert.alert-error,
.auth-minimal-alert.alert-danger {
  background: var(--color-danger-bg);
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
}

.auth-minimal-alert.alert-warning,
.auth-minimal-alert.alert-info {
  background: var(--color-warning-bg);
  border: 1px solid var(--color-warning);
  color: var(--color-warning);
}

.auth-minimal-alert.alert-success {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

/* ---------- Layout helpers ---------- */
.site-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(100vh - var(--header-height, 68px) + 60px);
}

.site-footer {
  margin-top: auto;
}

.section {
  padding: 44px 0;
}

.section-tight {
  padding: 26px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: 21px;
  margin: 0 0 4px;
}

.section-head p {
  margin: 0;
  font-size: 13.5px;
}

.section-head-center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
}

.section-head-center h2 {
  font-size: 23px;
}

.section-head-modern {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head-modern h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.section-head-modern p {
  font-size: 15.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.section-head-divider {
  width: 46px;
  height: 3.5px;
  background: var(--color-primary);
  border-radius: 999px;
  margin: 14px auto 0;
  opacity: 0.85;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-footer-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

/* ---------- Hero: tek, tam ekran acilis bolumu ---------- */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0 68px;
  position: relative;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  font-weight: 800;
}

.hero h1 .accent {
  color: var(--color-primary);
}

.hero p.lead {
  font-size: 20px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text);
}

.hero-stat span {
  font-size: 14px;
  color: var(--color-text-faint);
  font-weight: 600;
}

@media (max-width: 820px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: 36px 0 76px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p.lead {
    font-size: 16.5px;
    margin-bottom: 24px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat strong {
    font-size: 24px;
  }
}

/* ---------- Mouse Scroll Indicator ---------- */
.scroll-down-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
  z-index: 10;
  text-decoration: none;
}

.scroll-down-indicator:hover {
  color: var(--color-primary);
  transform: translateX(-50%) translateY(2px);
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 2px;
  animation: mouseScroll 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  animation: bounceArrow 1.8s ease-in-out infinite;
}

@keyframes mouseScroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(8px);
  }

  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}

/* ---------- Kategori hizli erisim seridi ---------- */
.category-strip {
  padding: 22px 0 6px;
}

.category-strip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.category-tile {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 92px;
  padding: 12px 6px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--transition);
}

.category-tile:hover {
  background: var(--color-surface-alt);
}

.category-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-tile-icon svg {
  width: 22px;
  height: 22px;
}

.category-tile span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

/* ---------- Category chips ---------- */
.category-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.category-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.category-chip.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-ink);
}

.category-chip svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
}

.category-chip.active svg {
  color: #fff;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--color-text-faint);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-faint);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb .sep {
  opacity: .5;
}

.breadcrumb .current {
  color: var(--color-text);
  font-weight: 600;
}

/* ---------- Urun listeleme: filtre kenar cubugu (e-ticaret standardi) ---------- */
.products-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  align-items: start;
}

.products-layout .product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ---------- Redesigned Sidebar Styles ---------- */
.filter-sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  position: sticky;
  top: calc(var(--header-height) + 16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .filter-sidebar {
  background: #141720;
  border-color: #232834;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sidebar-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.sidebar-title svg {
  color: var(--color-primary);
}

.filter-reset-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-sale);
  transition: opacity var(--transition);
}

.filter-reset-link:hover {
  opacity: 0.8;
}

.filter-group {
  margin-bottom: 22px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group-head {
  margin-bottom: 12px;
}

.filter-group-head h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin: 0;
}

/* Category Item List */
.filter-category-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  transition: all 180ms ease;
  text-decoration: none;
}

.filter-cat-item:hover {
  background: var(--color-surface-alt);
  color: var(--color-text);
  transform: translateX(3px);
}

.filter-cat-item.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
}

.cat-count {
  font-size: 11.5px;
  font-weight: 700;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--color-surface-alt);
  color: var(--color-text);
  transition: all 180ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 22px;
  height: 20px;
  line-height: 1;
}

.filter-cat-item.active .cat-count {
  background: var(--color-primary);
  color: var(--color-primary-ink);
}

/* Custom Radio Group */
.filter-radio-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  transition: all 160ms ease;
  border: 1px solid transparent;
}

.custom-radio-card:hover {
  background: var(--color-surface-alt);
  color: var(--color-text);
}

.custom-radio-card.checked {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  border-color: rgba(0, 222, 255, 0.2);
}

.custom-radio-card input {
  display: none;
}

.radio-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  position: relative;
  transition: all 160ms ease;
  flex-shrink: 0;
}

.custom-radio-card.checked .radio-indicator {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.custom-radio-card.checked .radio-indicator::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
}

/* Remove number input spinner arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Modern Price Box */
.price-input-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.price-field {
  display: flex;
  align-items: center;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2px 10px;
  flex: 1;
  transition: all 200ms ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.price-field:focus-within {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(0, 222, 255, 0.18);
}

.price-field span {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  margin-right: 6px;
  user-select: none;
}

.price-field input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text);
  outline: none;
}

.price-field input::placeholder {
  color: var(--color-text-faint);
  font-weight: 500;
  opacity: 0.7;
}

.price-sep {
  color: var(--color-text-faint);
  font-weight: 700;
  font-size: 14px;
}

.btn-filter-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-primary);
  color: var(--color-primary-ink);
  border: none;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 222, 255, 0.25);
  transition: all 180ms ease;
  cursor: pointer;
}

.btn-filter-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 222, 255, 0.35);
}

.products-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.products-header-bar .breadcrumb {
  margin-bottom: 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
  flex-wrap: wrap;
}

.products-toolbar .result-count {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.products-toolbar .result-count strong {
  color: var(--color-text);
  font-weight: 700;
}

.products-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.products-toolbar-actions select {
  width: auto;
  padding: 8px 34px 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.filter-toggle-btn {
  display: none;
}

@media (max-width: 1680px) {
  .products-layout .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1320px) {
  .products-layout .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .products-layout .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-sidebar {
    position: static;
    display: none;
  }

  .filter-sidebar.open {
    display: block;
  }

  .filter-toggle-btn {
    display: inline-flex;
  }
}

@media (max-width: 540px) {
  .products-layout .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Container wide for 5-column layout */
.container-wide {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Section Featured (Redesigned Top Sellers Section) ---------- */
.section-featured {
  padding: 68px 0 76px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.section-head-featured {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 222, 255, 0.15);
}

.section-head-featured h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.section-head-featured h2 span {
  color: var(--color-primary);
}

.section-head-featured p {
  font-size: 15.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Product Grid & Cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 16px;
}

.section-featured .product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease, border-color 260ms ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--color-primary);
  border-color: var(--color-primary);
}

[data-theme="dark"] .product-card:hover {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--color-primary);
}

.product-thumb {
  aspect-ratio: 16 / 11;
  background: var(--color-surface-alt);
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-thumb img {
  transform: scale(1.07);
}

.product-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-name {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.product-name a {
  transition: color var(--transition);
}

.product-name a:hover {
  color: var(--color-primary);
}

.product-desc {
  font-size: 13.5px;
  margin: 0;
  flex: 1;
  color: var(--color-text-muted);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.product-meta {
  font-size: 12px;
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  margin-top: 2px;
}

.product-meta svg {
  width: 14px;
  height: 14px;
  color: var(--color-star);
  flex-shrink: 0;
}

.product-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.price-now {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.price-old {
  font-size: 13.5px;
  color: var(--color-text-faint);
  text-decoration: line-through;
}

.product-foot .btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn-featured-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
}

.btn-featured-all:hover {
  background: var(--color-primary);
  color: var(--color-primary-ink);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(0, 222, 255, 0.25);
  transform: translateY(-2px);
}

.btn-featured-all svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms ease;
}

.btn-featured-all:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1280px) {
  .section-featured .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section-featured .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-featured .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Redesigned Section Value Prop ---------- */
.section-value-prop {
  padding: 80px 0 88px;
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

[data-theme="dark"] .section-value-prop {
  background: #0b0d12;
  border-color: #1e222d;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--color-primary);
  border-color: var(--color-primary);
}

[data-theme="dark"] .value-card {
  background: #141720;
  border-color: #232834;
}

[data-theme="dark"] .value-card:hover {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--color-primary);
  border-color: var(--color-primary);
}

.value-card-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 26px;
  font-weight: 800;
  color: var(--color-text-faint);
  opacity: 0.3;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  transition: opacity var(--transition), color var(--transition);
}

.value-card:hover .value-card-num {
  opacity: 0.8;
  color: var(--color-primary);
}

.v-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 260ms ease;
}

.value-card:hover .v-icon {
  transform: scale(1.08);
}

.v-icon svg {
  width: 24px;
  height: 24px;
}

.v-icon-cyan {
  background: rgba(0, 222, 255, 0.14);
  color: #007a94;
}

.v-icon-pink {
  background: rgba(225, 29, 72, 0.12);
  color: #e11d48;
}

.v-icon-purple {
  background: rgba(147, 51, 234, 0.12);
  color: #9333ea;
}

.v-icon-amber {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text);
  line-height: 1.3;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--color-text-muted);
  flex: 1;
}

@media (max-width: 1200px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Redesigned CTA Banner Section ---------- */
.section-cta {
  padding: 48px 0 64px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #052e36 0%, #007a94 50%, #00c2e0 100%);
  border-radius: calc(var(--radius-lg) * 1.5);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 24px 48px rgba(0, 222, 255, 0.28);
}

.cta-glow-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-content h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.cta-features {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
}

.cta-feature-item svg {
  width: 16px;
  height: 16px;
  color: #4ade80;
}

.cta-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #ffffff;
  color: #023c47;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-cta-main:hover {
  background: #ffffff;
  color: #023c47;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn-cta-main svg {
  width: 20px;
  height: 20px;
  transition: transform 200ms ease;
}

.btn-cta-main:hover svg {
  transform: translateX(5px);
}

@media (max-width: 960px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    align-items: center;
  }

  .cta-features {
    justify-content: center;
  }
}

/* ---------- Cards / surfaces ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.card-tight {
  padding: 14px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-card h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 13px;
  margin: 0;
}

/* ---------- Auth: ortalanmis kart (sade, kurumsal) ---------- */
.auth-page {
  flex: 1 0 auto;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
  background: var(--color-bg);
}

.auth-card-wrap {
  width: 100%;
  max-width: 420px;
}

.auth-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 36px 32px;
  animation: fadeIn 150ms ease both;
}

.auth-logo-wrap {
  display: none;
}

.auth-logo-ping {
  animation: none;
}

.auth-logo-mark {
  animation: none;
}

.auth-tabs {
  position: relative;
  display: flex;
  background: var(--color-surface-alt);
  border-radius: 999px;
  padding: 4px;
  max-width: 260px;
  margin: 0 auto 26px;
  opacity: 1;
  animation: fadeIn 150ms ease both;
  animation-delay: 0s;
}

.auth-tab {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 9px 0;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 999px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.auth-tab.is-active {
  color: var(--color-primary-ink);
}

.auth-tab-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--color-primary);
  border-radius: 999px;
  transition: transform 200ms ease;
}

.auth-tabs.is-register .auth-tab-indicator {
  transform: translateX(100%);
}

.auth-card h1 {
  text-align: center;
  font-size: 21px;
  margin-bottom: 4px;
}

.auth-card .sub {
  text-align: center;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 32px 22px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .auth-logo-ping,
  .auth-logo-mark,
  .auth-card,
  .auth-tabs {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ---------- Arac sayfalari (lisans dogrulama vb.) ---------- */
.tool-hero {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 26px;
}

.tool-hero-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.tool-hero-icon svg {
  width: 26px;
  height: 26px;
}

.tool-search-form {
  display: flex;
  gap: 10px;
}

.tool-search-form .input-icon-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.tool-search-form .input-icon-wrap svg {
  position: absolute;
  left: 13px;
  width: 17px;
  height: 17px;
  color: var(--color-text-faint);
  pointer-events: none;
}

.tool-search-form .input-icon-wrap input {
  padding-left: 38px;
}

.tool-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.tool-step {
  text-align: center;
  padding: 16px 10px;
}

.tool-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.tool-step strong {
  display: block;
  font-size: 13.5px;
  margin-bottom: 4px;
  color: var(--color-text);
}

.tool-step span {
  font-size: 12.5px;
  color: var(--color-text-faint);
}

/* ---------- Forms ---------- */
.form-page {
  display: flex;
  justify-content: center;
  padding: 44px 24px;
}

.form-card {
  width: 100%;
  max-width: 400px;
}

.form-card h1 {
  font-size: 21px;
  margin-bottom: 5px;
}

.form-card .sub {
  margin-bottom: 20px;
  font-size: 13.5px;
}

.field,
.form-group {
  margin-bottom: 14px;
}

.field label,
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-text);
}

.field .hint {
  font-size: 11.5px;
  color: var(--color-text-faint);
  margin-top: 4px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
textarea,
select,
.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-faint);
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

select option {
  background: var(--color-surface);
  color: var(--color-text);
}

/* ---------- Auth form: alt-cizgili input, sifre gostergesi, dogrulama ---------- */
.auth-form .field {
  opacity: 0;
  animation: fadeInUp 420ms ease both;
}

.auth-form .field:nth-child(2) {
  animation-delay: .06s;
}

.auth-form .field:nth-child(3) {
  animation-delay: .12s;
}

.auth-form .field:nth-child(4) {
  animation-delay: .18s;
}

.auth-form .field:nth-child(5) {
  animation-delay: .24s;
}

.auth-form .field:nth-child(6) {
  animation-delay: .3s;
}

.auth-form .btn-auth-submit {
  opacity: 0;
  animation: fadeInUp 420ms ease both;
  animation-delay: .34s;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.field-label-row label {
  margin-bottom: 0;
}

.field-inline-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition);
}

.field-inline-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.field-icon .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 8px;
  transition: border-color var(--transition), transform var(--transition);
}

.field-icon .input-wrap:focus-within {
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.field-invalid .input-wrap {
  border-color: var(--color-danger);
}

.input-icon {
  width: 17px;
  height: 17px;
  color: var(--color-text-faint);
  flex-shrink: 0;
  pointer-events: none;
  transition: color var(--transition);
}

.input-wrap:focus-within .input-icon {
  color: var(--color-primary);
}

.field-icon input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
}

.pw-toggle-btn {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--color-text-faint);
  transition: background var(--transition), color var(--transition);
}

.pw-toggle-btn:hover {
  background: var(--color-surface-alt);
  color: var(--color-text);
}

.pw-toggle-btn svg {
  width: 16px;
  height: 16px;
}

.pw-toggle-btn .icon-eye-off {
  display: none;
}

.pw-toggle-btn.is-visible .icon-eye {
  display: none;
}

.pw-toggle-btn.is-visible .icon-eye-off {
  display: block;
}

.password-strength {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  animation: fadeIn 220ms ease both;
}

.password-strength-bars {
  display: flex;
  gap: 4px;
  flex: 1 1 auto;
}

.password-strength-bars span {
  height: 4px;
  flex: 1 1 0;
  border-radius: 2px;
  background: var(--color-border);
  transition: background-color var(--transition);
}

.password-strength[data-score="1"] .password-strength-bars span:nth-child(1) {
  background: var(--color-danger);
}

.password-strength[data-score="2"] .password-strength-bars span:nth-child(-n+2) {
  background: var(--color-warning);
}

.password-strength[data-score="3"] .password-strength-bars span:nth-child(-n+3) {
  background: var(--color-primary);
}

.password-strength[data-score="4"] .password-strength-bars span {
  background: var(--color-success);
}

.password-strength-label {
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.password-strength[data-score="1"] .password-strength-label {
  color: var(--color-danger);
}

.password-strength[data-score="2"] .password-strength-label {
  color: var(--color-warning);
}

.password-strength[data-score="3"] .password-strength-label {
  color: var(--color-primary);
}

.password-strength[data-score="4"] .password-strength-label {
  color: var(--color-success);
}

.password-match {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  min-height: 16px;
}

.password-match.match {
  color: var(--color-success);
  animation: fadeIn 200ms ease both;
}

.password-match.mismatch {
  color: var(--color-danger);
  animation: fadeIn 200ms ease both;
}

.btn-auth-submit {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  margin-top: 6px;
}

.btn-auth-submit:hover {
  transform: translateY(-1px);
}

.btn-auth-submit:active {
  transform: translateY(0);
}

.btn-auth-submit .btn-arrow {
  width: 17px;
  height: 17px;
  transition: transform var(--transition);
}

.btn-auth-submit:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-auth-submit .btn-spinner {
  display: none;
  width: 17px;
  height: 17px;
  animation: spin360 700ms linear infinite;
}

.btn-auth-submit.is-loading {
  pointer-events: none;
  opacity: .85;
}

.btn-auth-submit.is-loading .btn-arrow {
  display: none;
}

.btn-auth-submit.is-loading .btn-spinner {
  display: inline-block;
}

.auth-alert-shake {
  animation: fadeInUp 240ms ease both, shakeX 420ms ease 240ms;
}

@media (prefers-reduced-motion: reduce) {

  .auth-form .field,
  .auth-form .btn-auth-submit,
  .auth-minimal-alert {
    animation: none !important;
    opacity: 1 !important;
  }
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.form-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

.form-error {
  font-size: 12px;
  color: var(--color-danger);
  margin-top: 5px;
}

.field-invalid input,
.field-invalid select {
  border-color: var(--color-danger);
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

thead th {
  text-align: left;
  padding: 11px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--color-text-faint);
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  color: var(--color-text);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--color-surface-alt);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  color: var(--color-text);
}

/* ---------- Redesigned Cart (Modern, Flat, High-Contrast, No-Glow/No-Gradient) ---------- */
.cart-page-wrapper {
  padding: 32px 0 64px;
}

.cart-page-title-main {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* Header & Stepper Banner */
.cart-header-banner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cart-header-content {
  flex: 1;
  min-width: 280px;
}

.cart-header-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.cart-page-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: 0;
}

.cart-count-badge {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.cart-header-subtext {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Steps Navigator */
.cart-steps-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.cart-step.active {
  opacity: 1;
}

.cart-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.cart-step.active .cart-step-num {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.cart-step-text {
  display: flex;
  flex-direction: column;
}

.cart-step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.cart-step-sub {
  font-size: 11px;
  color: var(--color-text-faint);
}

.cart-step-connector {
  width: 24px;
  height: 1px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Empty Cart State */
.cart-empty-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.cart-empty-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}

.cart-empty-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cart-empty-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.cart-empty-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 8px;
}

.cart-empty-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.cart-empty-actions {
  margin-bottom: 40px;
}

.cart-empty-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  text-align: left;
}

.cart-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cart-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-perk-info {
  display: flex;
  flex-direction: column;
}

.cart-perk-info strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.cart-perk-info span {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* Cart Main Layout Grid */
.cart-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

.cart-main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.cart-items-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-items-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}

.cart-items-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.cart-delivery-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-success);
  background: var(--color-success-bg);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cart Item Card Row */
.cart-item-row {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.cart-item-row:hover {
  border-color: var(--color-text-faint);
}

.cart-item-details {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.cart-item-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  display: block;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 4px;
}

.cart-item-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.cart-item-name:hover {
  color: var(--color-primary);
}

.cart-item-unit-price {
  font-size: 12.5px;
  color: var(--color-text-muted);
}

.cart-item-unit-price span {
  font-weight: 700;
  color: var(--color-text);
}

/* Cart Item Right Actions */
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.cart-qty-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.cart-action-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-faint);
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 34px;
}

.cart-qty-btn {
  width: 32px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-qty-btn:hover {
  background: var(--color-surface-hover);
  color: var(--color-primary);
}

.cart-qty-stepper input {
  width: 38px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  appearance: textfield;
}

.cart-item-total-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 90px;
}

.cart-item-line-total {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.cart-item-remove-x {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cart-item-remove-x:hover {
  background: var(--color-danger-bg);
  border-color: var(--color-danger);
  color: var(--color-danger);
}

.cart-item-remove-x svg {
  width: 15px;
  height: 15px;
}

/* Bottom Navigation Actions & Protection */
.cart-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.cart-guarantee-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

.cart-guarantee-pill svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Order Summary Sidebar */
.cart-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.cart-summary-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.cart-summary-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-summary-title svg {
  color: var(--color-primary);
}

/* Products Box inside summary card */
.cart-summary-products-box {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  max-height: 200px;
  overflow-y: auto;
}

.cart-summary-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
}

.cart-summary-product-item:last-child {
  border-bottom: none;
}

.cart-summary-product-name {
  color: var(--color-text);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.cart-summary-qty-tag {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  margin-left: 2px;
}

.cart-summary-product-price {
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
}

/* Breakdown rows */
.cart-summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--color-text-muted);
}

.cart-summary-val {
  font-weight: 700;
  color: var(--color-text);
}

.cart-summary-kdv-row {
  color: var(--color-text-muted);
}

.cart-summary-discount-row {
  color: var(--color-success);
}

.cart-summary-discount-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-coupon-remove-btn {
  background: var(--color-danger-bg);
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.15s ease;
}

.cart-coupon-remove-btn:hover {
  opacity: 0.8;
}

.cart-summary-discount-val {
  font-weight: 800;
  color: var(--color-success);
}

.cart-summary-divider {
  height: 1px;
  background: var(--color-border);
  margin: 4px 0;
}

.cart-summary-row-total {
  font-size: 15px;
  padding-top: 2px;
}

.cart-summary-total-label {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-text);
}

.cart-summary-total-val {
  font-size: 21px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* Coupon Box */
.cart-coupon-box {
  width: 100%;
}

.cart-coupon-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-coupon-input {
  flex: 1;
  height: 38px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 13px;
  color: var(--color-text);
  transition: border-color 0.15s ease;
}

.cart-coupon-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.cart-coupon-btn {
  height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA & Trust */
.cart-summary-cta {
  width: 100%;
}

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
}

.cart-summary-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* Responsive Cart Breakpoints */
@media (max-width: 992px) {
  .cart-layout-grid {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .cart-header-banner {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-steps-nav {
    width: 100%;
    justify-content: space-between;
  }

  .cart-item-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cart-item-actions {
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    width: 100%;
  }

  .cart-bottom-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.empty-state {
  text-align: center;
  padding: 48px 20px;
}

.empty-state svg {
  width: 44px;
  height: 44px;
  color: var(--color-text-faint);
  margin: 0 auto 14px;
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.tab-btn:hover {
  color: var(--color-text);
}

.tab-btn.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.tab-panel {
  display: none;
  animation: fadeIn 240ms ease both;
}

.tab-panel.active {
  display: block;
}

/* ---------- Steps (checkout) ---------- */
.steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-faint);
}

.step-num {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
}

.step.active {
  color: var(--color-text);
}

.step.active .step-num {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-ink);
}

.step-sep {
  width: 24px;
  height: 1px;
  background: var(--color-border);
}

/* ---------- Toast (JS) ---------- */
.toast-stack {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 300;
}

.toast {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: fadeInUp 220ms ease both;
}

.toast.success {
  background: var(--color-success);
  color: #06210f;
}

.toast.error {
  background: var(--color-danger);
  color: #2a0808;
}

.toast.leaving {
  animation: fadeIn 180ms ease reverse both;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 40px 0 0;
  margin-top: 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  font-size: 13px;
  margin-top: 8px;
}

.footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: var(--color-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 3px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 14px 0;
  font-size: 12px;
  color: var(--color-text-faint);
}

/* ---------- License verify ---------- */
.license-result {
  margin-top: 20px;
}

.license-result dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 20px;
  margin: 0;
}

.license-result dt {
  font-size: 12px;
  color: var(--color-text-faint);
  font-weight: 600;
}

.license-result dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

/* ---------- Admin layout ---------- */
.admin-body {
  background: var(--color-bg);
}

.admin-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--color-surface);
  color: var(--color-text-muted);
  padding: 18px 11px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--color-border);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px 18px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 16px;
}

.admin-brand svg {
  color: var(--color-primary);
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 2px;
  transition: background var(--transition), color var(--transition);
}

.admin-nav a svg {
  width: 16px;
  height: 16px;
}

.admin-nav a:hover {
  background: var(--color-surface-alt);
  color: var(--color-text);
}

.admin-nav a.active {
  background: var(--color-primary);
  color: var(--color-primary-ink);
}

.admin-nav .nav-sep {
  margin: 12px 9px 5px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-text-faint);
}

/* Nav ogesi (orn. Destek Talepleri) yanindaki dinamik bildirim sayaci rozeti */
.admin-nav-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.admin-nav a.active .admin-nav-badge {
  background: #ffffff;
  color: #dc2626 !important;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes admin-nav-badge-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.admin-nav-badge.pop {
  animation: admin-nav-badge-pop 420ms ease;
}

.admin-main {
  padding: 24px 28px 48px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-topbar h1 {
  font-size: 19px;
  margin: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.stat-card span {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.stat-card strong {
  display: block;
  font-size: 22px;
  margin-top: 6px;
  color: var(--color-text);
}

.admin-panel-toggle {
  display: none;
}

/* ---------- Utility ---------- */
.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.d-flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

[hidden] {
  display: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .header-search {
    max-width: 300px;
  }
}

@media (max-width: 960px) {
  .cart-page-grid {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 230px;
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 200;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-panel-toggle {
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  .header-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
    margin-top: 8px;
  }

  .site-header {
    height: auto;
    padding: 10px 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 46px);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 2px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .mobile-toggle {
    display: flex;
  }

  .user-name {
    display: none;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero-stats {
    gap: 20px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .site-header .container {
    padding: 0 14px;
  }

  .brand,
  .brand-clean {
    margin-left: 0;
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions-divider {
    display: none;
  }

  .brand-name,
  .brand-name-clean {
    font-size: 15px;
  }

  .section {
    padding: 32px 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* ---------- Legal & Information Pages (Terms, Privacy, Contact) ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.legal-toc-card {
  position: sticky;
  top: 90px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.legal-toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-text-faint);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc-list a {
  display: block;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.legal-toc-list a:hover {
  background: var(--color-surface-alt);
  color: var(--color-primary);
}

.legal-content-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 100px;
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-section h3 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  margin-bottom: 14px;
}

.legal-section-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-section p,
.legal-section li {
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.legal-section ul {
  padding-left: 20px;
  margin: 10px 0 16px;
}

.legal-section ul li {
  margin-bottom: 6px;
}

.legal-box {
  background: var(--color-surface-alt);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 13.5px;
  color: var(--color-text);
}

/* Contact Page Styles */
.contact-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.contact-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 16px;
  color: var(--color-text-muted);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.contact-info-content h4 {
  font-size: 15px;
  margin: 0 0 4px;
}

.contact-info-content p {
  font-size: 13.5px;
  margin: 0;
  color: var(--color-text-muted);
}

.contact-info-content a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-info-content a:hover {
  text-decoration: underline;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: flex-start;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 14px;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.faq-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 14px;
}

.faq-card h4 {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-card p {
  font-size: 13.5px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
}

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

  .legal-toc-card {
    position: static;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Dashboard (Panelim) - Modern Design System
   ========================================================= */
.dash-header-section {
  margin-bottom: 28px;
}

.dash-hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.dash-hero-greeting {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.dash-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dash-hero-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-hero-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-hero-icon-blue {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.dash-hero-icon-amber {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

.dash-hero-icon-green {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.dash-hero-icon-neutral {
  background: var(--color-surface-alt);
  color: var(--color-text-faint);
}

.dash-hero-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-success);
}

.dash-hero-item-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.dash-hero-item-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

@media (max-width: 760px) {
  .dash-hero-grid {
    grid-template-columns: 1fr;
  }
}

.dash-user-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--color-primary-light);
  color: var(--color-info-text);
}

/* Dashboard Stats Grid */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.dash-stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.dash-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.dash-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-icon svg {
  width: 24px;
  height: 24px;
}

.dash-stat-info {
  display: flex;
  flex-direction: column;
}

.dash-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.dash-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}

/* Dashboard Tabs Navigation */
.dash-tabs-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 6px;
  margin-bottom: 28px;
  overflow-x: auto;
}

.dash-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.dash-tab-btn svg {
  width: 17px;
  height: 17px;
}

.dash-tab-btn:hover {
  color: var(--color-text);
  background: var(--color-surface-hover);
}

.dash-tab-btn.active {
  color: var(--color-primary-ink);
  background: var(--color-primary);
}

.dash-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.dash-tab-btn.active .dash-tab-badge {
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-primary-ink);
}

.dash-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.dash-tab-link svg {
  width: 17px;
  height: 17px;
}

.dash-tab-link:hover {
  color: var(--color-primary);
  background: var(--color-surface-hover);
}

.dash-tab-link:first-of-type {
  margin-left: auto;
}

.dash-tabs-divider {
  width: 1px;
  align-self: stretch;
  background: var(--color-border);
  margin: 4px 4px;
}

/* License Cards Grid */
.dash-licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.lic-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lic-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lic-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lic-prod-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.lic-prod-title:hover {
  color: var(--color-primary);
}

.lic-key-box {
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lic-key-code {
  font-family: monospace, 'Courier New';
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text);
  user-select: all;
  word-break: break-all;
}

.lic-copy-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.lic-copy-btn:hover {
  background: var(--color-primary);
  color: var(--color-primary-ink);
  border-color: var(--color-primary);
}

.lic-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
}

.lic-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-surface-alt);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.lic-progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
}

/* User Menu Dropdown Items */
.user-menu-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.user-menu-dropdown .dropdown-item:hover {
  background: var(--color-surface-hover);
  color: var(--color-primary);
}

.user-menu-dropdown .dropdown-icon {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  flex-shrink: 0;
}

.user-menu-dropdown .dropdown-item.danger:hover {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

/* Responsive queries for dashboard */
@media (max-width: 992px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   Products Main - Toolbar & Search System (Above Cards Grid)
   ========================================================= */
.products-main {
  flex: 1;
  min-width: 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.main-prod-search-form {
  flex: 1;
  max-width: 530px;
  /* Tam 2 kart uzunlugunda */
  min-width: 240px;
  margin-left: 28px;
  /* Sağa kaydırma */
}

.main-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 6px 4px 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.main-search-input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.main-search-icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  stroke: var(--color-text-muted);
  flex-shrink: 0;
}

.main-search-input-wrap input[type="search"],
.main-search-input-wrap input[type="search"]:focus,
.main-search-input-wrap input[type="search"]:active,
input[type="search"]:focus {
  border: none !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  font-size: 13.5px;
  color: var(--color-text);
  width: 100%;
  padding: 5px 0;
  font-family: inherit;
}

.search-clear-btn {
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  padding: 0 4px;
}

.search-clear-btn:hover {
  color: var(--color-danger);
}

.main-toolbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-toolbar-right .result-count {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  white-space: nowrap;
  padding-left: 14px;
  /* 2 adim saga kaydirma */
}

/* Live Search Suggestions Dropdown (Exact Screenshot Match) */
.search-suggest-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 320px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}

.search-suggest-dropdown.open {
  display: block;
}

.suggest-header-title {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #f97316;
  /* Orange header matching screenshot */
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.suggest-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: background var(--transition);
}

.suggest-item:last-child {
  border-bottom: none;
}

.suggest-item:hover {
  background: var(--color-surface-hover);
}

.suggest-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.suggest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggest-thumb svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.suggest-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest-empty {
  padding: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--color-text-muted);
}

/* =========================================================
   License Verify Page - Modern Design System
   ========================================================= */
.verify-hero-section {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.verify-hero-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-sm);
}

.verify-hero-icon svg {
  width: 30px;
  height: 30px;
}

.verify-hero-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.verify-hero-section p {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

.verify-search-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
  /* Box input'a yakinlastirildi */
}

.verify-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px 4px 4px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.verify-search-input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-light);
  background: var(--color-surface);
}

.verify-search-input-wrap svg {
  color: var(--color-text-muted);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.verify-search-input-wrap input,
.verify-search-input-wrap input:focus,
.verify-search-input-wrap input:active {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
  width: 100%;
}

.verify-search-input-wrap input::placeholder {
  color: var(--color-text-faint) !important;
  opacity: 0.42 !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em;
}

/* Result Card */
.verify-result-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.verify-status-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  position: relative;
}

.verify-status-banner.status-active {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.verify-status-banner.status-expired {
  background: var(--color-warning-bg);
  border: 1px solid var(--color-warning);
  color: var(--color-warning);
}

.verify-status-banner.status-revoked,
.verify-status-banner.status-suspended {
  background: var(--color-danger-bg);
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
}

.verify-status-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.verify-status-icon svg {
  width: 22px;
  height: 22px;
}

.verify-status-text h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verify-status-text p {
  font-size: 13px;
  margin: 0;
  opacity: 0.92;
  line-height: 1.4;
}

@keyframes liveDotPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  display: inline-block;
  animation: liveDotPulse 1.8s infinite ease-in-out;
  margin-right: 4px;
}

.verify-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.verify-detail-item {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: border-color var(--transition);
}

.verify-detail-item:hover {
  border-color: var(--color-border-hover, var(--color-primary));
}

.verify-detail-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verify-detail-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
}

/* Feature steps */
.verify-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.verify-step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.verify-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.verify-step-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--color-text);
}

.verify-step-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   Admin Licenses Page System
   ========================================================= */
.admin-header-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.admin-header-title-box h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 4px 0;
}

.admin-header-title-box p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.stat-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card-icon svg {
  width: 22px;
  height: 22px;
}

.stat-icon-blue {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.stat-icon-green {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.stat-icon-amber {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

.stat-icon-red {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.stat-card-info h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 2px 0;
  color: var(--color-text);
}

.stat-card-info p {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

.admin-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.filter-tabs-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px;
}

.filter-tab-item {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}

.filter-tab-item:hover {
  color: var(--color-text);
  background: var(--color-surface-hover);
}

.filter-tab-item.active {
  color: #ffffff !important;
  background: var(--color-primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-success {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.badge-danger {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.badge-warning {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

.badge-info {
  background: var(--color-info-bg);
  color: var(--color-info-text);
}

.badge-neutral {
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 992px) {
  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Admin Modal System (License Detail View)
   ========================================================= */
.admin-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 13, 18, 0.76);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.admin-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.admin-modal-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 200ms ease;
}

.admin-modal-backdrop.open .admin-modal-box {
  transform: translateY(0) scale(1);
}

.admin-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.admin-modal-head h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.admin-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0 4px;
}

.admin-modal-close:hover {
  color: var(--color-danger);
}

.modal-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin: 18px 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   Admin Panel Layout & Modern Sidebar System
   ========================================================= */
.admin-body {
  background: var(--color-bg);
  min-height: 100vh;
  margin: 0;
}

.admin-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.admin-sidebar {
  width: 250px;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 100;
  transition: transform var(--transition);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}

.brand-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

.admin-nav {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow-y: auto;
}

.nav-section-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  padding: 8px 10px 4px 10px;
  margin-top: 4px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
}

.admin-nav a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.admin-nav a:hover {
  color: var(--color-text);
  background: var(--color-surface-hover);
}

.admin-nav a:hover svg {
  transform: translateX(2px);
}

.admin-nav a.active {
  color: var(--color-primary-ink) !important;
  background: var(--color-primary) !important;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.admin-nav a.active svg {
  stroke: var(--color-primary-ink);
}

.admin-nav a.nav-item-danger:hover {
  color: var(--color-danger);
  background: var(--color-danger-bg);
}

.admin-main-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-main {
  flex: 1;
  padding: 24px 32px;
}

.admin-topbar {
  display: none;
}

.admin-topbar h1 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

@media (max-width: 992px) {
  .admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
  }

  .admin-sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    bottom: 0;
    box-shadow: var(--shadow-lg);
  }

  .admin-sidebar.open {
    transform: translateX(250px);
  }

  .admin-main {
    padding: 18px 14px;
  }
}

/* =========================================================
   Section Roadmap - Modern Process & Timeline System
   ========================================================= */
.section-roadmap {
  padding: 64px 0 80px 0;
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.roadmap-timeline-wrap {
  position: relative;
  margin-top: 48px;
  margin-bottom: 56px;
}

.roadmap-progress-line {
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--color-border);
  border-radius: 3px;
  z-index: 1;
}

.roadmap-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #16a34a, #f59e0b, #8b5cf6);
  border-radius: 3px;
  opacity: 0.8;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.roadmap-step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  position: relative;
  min-height: 275px;
}

.roadmap-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.roadmap-step-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.step-number {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  opacity: 0.85;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 280ms ease, border-color 280ms ease;
  background: transparent !important;
  border: 1.5px solid currentColor;
}

.roadmap-step-card:hover .step-icon-wrap {
  transform: scale(1.1) rotate(4deg);
}

.step-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

/* Color Themes for Steps */
.step-1 .step-number {
  color: #0284c7;
}

.step-1 .step-icon-wrap {
  color: #0284c7;
}

.pill-cyan {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.step-2 .step-number {
  color: #16a34a;
}

.step-2 .step-icon-wrap {
  color: #16a34a;
}

.pill-green {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

.step-3 .step-number {
  color: #f59e0b;
}

.step-3 .step-icon-wrap {
  color: #d97706;
}

.pill-amber {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.step-4 .step-number {
  color: #8b5cf6;
}

.step-4 .step-icon-wrap {
  color: #8b5cf6;
}

.pill-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

[data-theme="dark"] .step-1 .step-icon-wrap {
  color: #38bdf8;
}

[data-theme="dark"] .step-2 .step-icon-wrap {
  color: #4ade80;
}

[data-theme="dark"] .step-3 .step-icon-wrap {
  color: #fbbf24;
}

[data-theme="dark"] .step-4 .step-icon-wrap {
  color: #a78bfa;
}

.step-meta {
  margin-bottom: 12px;
}

.step-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  animation: liveDotPulse 1.8s infinite ease-in-out;
}

.roadmap-step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.roadmap-step-body h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.roadmap-step-body p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.roadmap-step-body::after {
  content: '';
  flex: 1;
  min-height: 20px;
  margin-left: 10px;
  margin-top: 14px;
  margin-bottom: 12px;
}

.step-footer-link {
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  transition: color var(--transition);
}

.step-footer-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.roadmap-step-card:hover .step-footer-link svg {
  transform: translateX(4px);
}

/* Bottom Callout Banner */
.roadmap-bottom-callout {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.callout-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18), transparent 70%);
  pointer-events: none;
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.callout-text {
  max-width: 620px;
}

.callout-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.callout-text p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.callout-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-progress-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-bottom-callout {
    padding: 24px 20px;
  }

  .callout-buttons {
    width: 100%;
  }

  .callout-buttons .btn {
    width: 100%;
  }
}

/* =========================================================
   Product Detail Page (PDP) Redesign Styles
   ========================================================= */
.pdp-wrapper {
  padding: 32px 0 64px;
}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pdp-bc-item {
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.pdp-bc-item:hover {
  color: var(--color-primary);
}

.pdp-bc-item.active {
  color: var(--color-text);
  font-weight: 700;
}

.pdp-bc-sep {
  color: var(--color-text-faint);
  font-size: 12px;
}

/* =========================================================
   Custom Brand Symmetrical & Balanced PDP Design Styles
   ========================================================= */
.symm-pdp {
  padding: 32px 0 64px;
}

/* Centered Top Header */
.symm-pdp-top {
  text-align: center;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.symm-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.symm-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.symm-breadcrumb a:hover {
  color: var(--color-primary);
}

.symm-breadcrumb .sep {
  color: var(--color-text-faint);
  font-size: 12px;
}

.symm-breadcrumb .current {
  color: var(--color-text);
  font-weight: 700;
}

.symm-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.25;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.symm-header-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.symm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}

.symm-badge-cat {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.symm-badge-ver {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.symm-badge-proof {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.symm-badge-proof svg {
  color: var(--color-primary);
}

.symm-badge-proof strong {
  color: var(--color-primary);
}

.symm-badge-rating {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.symm-badge-rating .stars {
  color: var(--color-star);
  letter-spacing: 1px;
}

/* Symmetrical 50% / 50% Hero Grid */
.symm-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 44px;
}

.symm-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Card: Media Stage */
.symm-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-alt);
  margin-bottom: 18px;
}

.symm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.symm-media-wrapper:hover .symm-img {
  transform: scale(1.02);
}

.symm-sale-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-sale);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}

.symm-media-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 12.5px;
  font-weight: 700;
}

.symm-lic-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-success);
}

.symm-delivery-tag {
  color: var(--color-text-muted);
}

/* Right Card: Buy & Specs */
.symm-term-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.symm-term-options-single {
  grid-template-columns: 1fr;
}

.symm-term-option {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  background: var(--color-surface);
  transition: all var(--transition);
  min-height: 96px;
}

.symm-term-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.symm-term-header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.symm-term-radio-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid var(--color-text-faint);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--transition), background-color var(--transition);
}

.symm-term-option.active .symm-term-radio-dot::after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
}

.term-option-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.symm-term-body {
  margin: 4px 0;
}

.symm-term-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.term-option-price {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

/* Subscription (Abonelikli) - Green minimal box */
.symm-term-sub {
  background: var(--color-success-bg);
  border-color: rgba(34, 197, 94, 0.3);
}

.symm-term-sub .term-option-title,
.symm-term-sub .term-option-price {
  color: var(--color-success);
}

.symm-term-sub .symm-term-radio-dot {
  border-color: var(--color-success);
}

.symm-term-sub:hover {
  border-color: var(--color-success);
}

.symm-term-sub.active {
  background: var(--color-success-bg);
  border-color: var(--color-success);
  box-shadow: 0 0 0 2.5px rgba(34, 197, 94, 0.2);
}

.symm-term-sub.active .symm-term-radio-dot {
  background: var(--color-success);
  border-color: var(--color-success);
}

/* Sleek Custom Dropdown Component */
.symm-custom-dropdown {
  position: relative;
  width: 100%;
}

.symm-custom-dropdown-trigger {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-success);
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  transition: all var(--transition);
  outline: none;
}

.symm-custom-dropdown-trigger:hover,
.symm-custom-dropdown-trigger:focus,
.symm-custom-dropdown.open .symm-custom-dropdown-trigger {
  background-color: rgba(34, 197, 94, 0.18);
  border-color: var(--color-success);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.symm-custom-dropdown-trigger .trigger-chevron {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-success);
  flex-shrink: 0;
}

.symm-custom-dropdown.open .symm-custom-dropdown-trigger .trigger-chevron {
  transform: rotate(180deg);
}

/* Floating Custom Menu Popover */
.symm-custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--color-surface);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  padding: 6px;
  max-height: 220px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.symm-custom-dropdown.open .symm-custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Custom Scrollbar for Menu */
.symm-custom-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.symm-custom-dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.symm-custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(34, 197, 94, 0.3);
  border-radius: 10px;
}

/* Custom Option Item */
.symm-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 13px;
  color: var(--color-text);
  user-select: none;
}

.symm-dropdown-item:hover {
  background-color: rgba(34, 197, 94, 0.12);
  color: var(--color-success);
}

.symm-dropdown-item.selected {
  background-color: rgba(34, 197, 94, 0.18);
  color: var(--color-success);
  font-weight: 800;
}

.symm-dropdown-item .item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.symm-dropdown-item .item-duration {
  font-weight: 700;
  white-space: nowrap;
}

.symm-dropdown-item .item-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.symm-dropdown-item .item-price {
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: right;
  min-width: 90px;
  white-space: nowrap;
}

.symm-dropdown-item .item-check-wrap {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symm-dropdown-item .item-check {
  visibility: hidden;
  opacity: 0;
  color: var(--color-success);
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.symm-dropdown-item.selected .item-check {
  visibility: visible;
  opacity: 1;
}

/* Lifetime (Ömür Boyu Lisans) - Reddish minimal box */
.symm-term-life {
  background: var(--color-danger-bg);
  border-color: rgba(220, 38, 38, 0.3);
}

.symm-term-life .term-option-title,
.symm-term-life .term-option-price {
  color: var(--color-danger);
}

.symm-term-life .symm-term-radio-dot {
  border-color: var(--color-danger);
}

.symm-term-life:hover {
  border-color: var(--color-danger);
}

.symm-term-life.active {
  background: var(--color-danger-bg);
  border-color: var(--color-danger);
  box-shadow: 0 0 0 2.5px rgba(220, 38, 38, 0.2);
}

.symm-term-life.active .symm-term-radio-dot {
  background: var(--color-danger);
  border-color: var(--color-danger);
}

.symm-term-life .term-option-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  display: block;
}

.symm-lifetime-display {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 900;
  color: var(--color-danger);
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
}

.symm-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.symm-price-now {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.symm-price-now-minimal {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-success);
}

.symm-price-old {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-faint);
  text-decoration: line-through;
}

/* Horizontal Spec List — no boxes */
.symm-specs-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.symm-spec-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  min-height: 44px;
  transition: none !important;
  transform: none !important;
}

.symm-spec-tile:last-child {
  border-bottom: none;
}

/* Empty placeholder rows keep height, show nothing */
.symm-spec-tile.spec-tile-empty {
  pointer-events: none;
  background: var(--color-surface);
}

.symm-spec-tile:hover {
  background: var(--color-surface-alt);
  transform: none !important;
}

.symm-spec-tile .spec-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.tile-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tile-icon-box svg {
  color: var(--color-primary);
  width: 14px;
  height: 14px;
  display: block;
}

.symm-spec-tile .val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.symm-spec-tile .spec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  opacity: 0.5;
}

/* Action Row */
.symm-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.symm-cart-form {
  flex: 1;
}

.symm-btn-cart,
.symm-btn-login {
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.25);
  text-decoration: none;
  transition: all var(--transition);
}

.symm-btn-cart:hover,
.symm-btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.symm-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: all var(--transition);
}

.symm-icon-btn:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.symm-icon-btn.copied {
  background: var(--color-success-bg);
  border-color: var(--color-success);
  color: var(--color-success);
}

.symm-icon-btn.active {
  border-color: #ef4444;
  color: #ef4444;
}

.symm-icon-btn.active svg {
  fill: currentColor;
}

/* Centered Modern Tabs Section */
.symm-tabs-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 48px;
}

.symm-tabs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 18px;
  overflow-x: auto;
}

.symm-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.symm-tab-btn svg {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.symm-tab-btn:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

.symm-tab-btn.active {
  color: var(--color-primary);
  background: var(--color-surface);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.symm-tab-btn.active svg {
  color: var(--color-primary);
}

.symm-tabs-content {
  padding: 28px 32px;
}

.symm-pane {
  display: none;
}

.symm-pane.active {
  display: block;
}

/* Prose Card */
.symm-prose-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prose-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prose-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.prose-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.01em;
}

.symm-prose-card .prose-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
}

.symm-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.symm-feat-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-surface-alt);
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.symm-feat-box .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symm-feat-box strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 3px;
}

.symm-feat-box p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.45;
}

.symm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.symm-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  overflow: hidden;
}

.symm-faq-item[open] {
  background: var(--color-surface);
  border-color: var(--color-primary);
}

.symm-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}

.symm-faq-item summary::-webkit-details-marker {
  display: none;
}

.symm-faq-item summary svg {
  transition: transform 200ms ease;
  color: var(--color-text-muted);
}

.symm-faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.symm-faq-item p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Reviews Section Styles */
.symm-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.symm-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
  gap: 16px;
}

.rating-score-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-score-box .big-score {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.rating-score-box .stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-score-box .stars {
  color: var(--color-star);
  font-size: 16px;
  letter-spacing: 1px;
}

.rating-score-box .count-label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Star Rating Filter Dropdown Card (Matches Mockup Image) */
.symm-reviews-dropdown-wrap {
  position: relative;
}

.symm-dropdown-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.symm-dropdown-toggle-btn:hover,
.symm-reviews-dropdown-wrap.open .symm-dropdown-toggle-btn {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.symm-dropdown-arrow {
  transition: transform 0.2s ease;
}

.symm-reviews-dropdown-wrap.open .symm-dropdown-arrow {
  transform: rotate(180deg);
}

.symm-star-rating-card-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.symm-reviews-dropdown-wrap.open .symm-star-rating-card-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.symm-star-row-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.symm-star-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.symm-custom-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--color-text-faint);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.symm-star-row-item:hover .symm-custom-checkbox {
  border-color: var(--color-text-muted);
}

.symm-star-checkbox:checked+.symm-custom-checkbox {
  background: var(--color-text);
  border-color: var(--color-text);
}

[data-theme="dark"] .symm-star-checkbox:checked+.symm-custom-checkbox {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.symm-star-checkbox:checked+.symm-custom-checkbox::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.symm-star-row-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  width: 54px;
  flex-shrink: 0;
}

.symm-star-bar-track {
  flex: 1;
  height: 12px;
  background: var(--color-surface-alt);
  border-radius: 6px;
  overflow: hidden;
}

.symm-star-bar-fill {
  height: 100%;
  background: var(--color-text);
  border-radius: 6px;
  transition: width 0.3s ease;
}

[data-theme="dark"] .symm-star-bar-fill {
  background: var(--color-primary);
}

.symm-star-row-pct {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.review-policy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-success);
  background: var(--color-success-bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

/* Notice boxes */
.symm-notice-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
}

.symm-notice-box.notice-warning {
  background: var(--color-surface-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.symm-notice-box.notice-info {
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.symm-notice-box a {
  color: inherit;
  text-decoration: underline;
  font-weight: 800;
}

/* Review Form */
.symm-review-form {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.symm-review-form .form-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 16px 0;
}

.symm-select-rating {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-star);
}

.symm-textarea {
  font-size: 14px;
  resize: vertical;
}

.symm-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text);
  cursor: pointer;
}

.symm-btn-submit-review {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
}

/* Reviews List */
.symm-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.symm-review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.rev-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.rev-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rev-user-meta {
  display: flex;
  flex-direction: column;
}

.rev-author-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
}

.rev-verified-tag {
  font-size: 11.5px;
  color: var(--color-success);
  font-weight: 700;
}

.rev-rating-date {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-stars {
  color: var(--color-star);
  font-size: 14px;
  letter-spacing: 1px;
}

.rev-date {
  font-size: 12px;
  color: var(--color-text-faint);
}

.rev-comment-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.symm-empty-reviews {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: 14px;
}

.symm-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.symm-related-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 24px 0;
  text-align: center;
}

@media (max-width: 900px) {
  .symm-hero-grid {
    grid-template-columns: 1fr;
  }

  .symm-feat-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Detail Tabs Section */
.pdp-tabs-container {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 56px;
  overflow: hidden;
}

.pdp-tabs-nav {
  display: flex;
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 6px 6px 0;
  gap: 4px;
}

.pdp-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}

.pdp-tab-btn:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.pdp-tab-btn.active {
  color: var(--color-primary);
  background: var(--color-surface);
  border-bottom-color: var(--color-primary);
}

.pdp-tabs-content {
  padding: 36px 32px;
}

.pdp-tab-pane {
  display: none;
}

.pdp-tab-pane.active {
  display: block;
}

.pdp-desc-text h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--color-text);
}

.desc-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Features Grid Tab */
.pdp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.feature-card-item .f-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-item .f-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.feature-card-item .f-info p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* FAQ Tab */
.pdp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  overflow: hidden;
  transition: border-color var(--transition);
}

.pdp-faq-item[open] {
  border-color: var(--color-primary);
  background: var(--color-surface);
}

.pdp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}

.pdp-faq-item summary::-webkit-details-marker {
  display: none;
}

.pdp-faq-item summary svg {
  transition: transform 200ms ease;
  color: var(--color-text-muted);
}

.pdp-faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.pdp-faq-item .faq-content {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Related Section */
.pdp-related-wrapper {
  margin-top: 60px;
}

.pdp-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pdp-related-badge {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}

.pdp-related-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 992px) {
  .pdp-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pdp-media-card {
    position: static;
  }

  .pdp-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .pdp-specs-grid,
  .pdp-trust-grid {
    grid-template-columns: 1fr;
  }

  .pdp-price-now {
    font-size: 30px;
  }

  .pdp-title {
    font-size: 24px;
  }

  .pdp-tabs-nav {
    flex-direction: column;
  }

  .pdp-tab-btn {
    border-bottom: none;
    border-left: 3px solid transparent;
    border-radius: var(--radius-sm);
  }

  .pdp-tab-btn.active {
    border-left-color: var(--color-primary);
  }

  .pdp-tabs-content {
    padding: 24px 18px;
  }
}

/* ---------- Utility Classes ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ---------- Dashboard Minimal Stat Cards ---------- */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
  }
}

.dash-stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition);
}

.dash-stat-card:hover {
  border-color: var(--color-primary);
  background: var(--color-surface-alt);
}

/* Minimal Stat Icons */
.dash-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.dash-stat-card:hover .dash-stat-icon {
  background: var(--color-surface);
  border-color: var(--color-primary);
}

.dash-stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Minimal Stat Info */
.dash-stat-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.dash-stat-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-stat-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
}

/* ---------- Modern License Cards CSS ---------- */
.dash-licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

@media (max-width: 640px) {
  .dash-licenses-grid {
    grid-template-columns: 1fr;
  }
}

.lic-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
  transform: none !important;
}

.lic-card:hover {
  border-color: var(--color-primary);
  background: var(--color-surface-alt);
  transform: none !important;
}

.lic-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.lic-prod-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

.lic-prod-title:hover {
  color: var(--color-primary);
}

.lic-version-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
}

.lic-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
}

.lic-key-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
}

.lic-card:hover .lic-key-box {
  background: var(--color-surface);
}

.lic-key-code {
  font-family: var(--font-mono, monospace);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lic-copy-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  color: var(--color-text);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
  white-space: nowrap;
}

.lic-copy-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.lic-meta-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lic-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
}

.lic-meta-row strong {
  color: var(--color-text);
  font-weight: 700;
}

.lic-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}

.lic-progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.lic-validity-row {
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

/* ---------- Modern 2-Button License Actions Row ---------- */
.lic-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}

.lic-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  cursor: pointer;
  outline: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  user-select: none;
  height: 40px;
  box-sizing: border-box;
  white-space: nowrap;
  box-shadow: none !important;
}

/* Button 1: İndir (Koyu Mavi - Dark Blue) */
.lic-btn-primary {
  background: #1e40af !important;
  border: 1px solid #1e40af !important;
  color: #ffffff !important;
}

.lic-btn-primary svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.lic-btn-primary:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #ffffff !important;
}

/* Button 2: Detaylar (Yeşil - Green) */
.lic-btn-secondary {
  background: #10b981 !important;
  border: 1px solid #10b981 !important;
  color: #ffffff !important;
}

.lic-btn-secondary svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.lic-btn-secondary:hover {
  background: #059669 !important;
  border-color: #059669 !important;
  color: #ffffff !important;
}

/* Disable All Card & Button Hover Movement */
.card:hover,
.lic-card:hover,
.dash-stat-card:hover,
.product-card:hover,
.lic-btn:hover {
  transform: none !important;
}

/* =========================================================
   IdorHUB - Modern Vibrant Cart Page Styles
   ========================================================= */

.cart-page-wrapper {
  padding: 32px 0 60px 0;
  background-color: var(--color-bg);
  min-height: calc(100vh - 200px);
}

.cart-page-wrapper .container {
  max-width: 1440px;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .cart-page-wrapper .container {
    padding: 0 16px;
  }
}

.cart-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cart-page-title-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-title-count-pill {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

/* Grid Layout */
.cart-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 991px) {
  .cart-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Stripe / Linear Style - Column Table Card Layout
   ========================================================= */

.cart-table-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Table Header Bar */
.cart-table-header {
  display: grid;
  grid-template-columns: 3.2fr 1.5fr 1.1fr 1.1fr 48px;
  gap: 16px;
  align-items: center;
  background-color: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 28px;
  border-radius: 0 !important;
}

.cart-col {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.cart-col.col-price {
  text-align: right;
}

.cart-col.col-qty {
  display: flex;
  justify-content: center;
}

.cart-col.col-action {
  display: flex;
  justify-content: flex-end;
}

.cart-table-row .col-license {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Table Body Rows */
.cart-table-body {
  display: flex;
  flex-direction: column;
}

.cart-table-row {
  display: grid;
  grid-template-columns: 3.2fr 1.5fr 1.1fr 1.1fr 48px;
  gap: 16px;
  align-items: center;
  padding: 20px 28px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0 !important;
  transition: background-color var(--transition);
}

.cart-table-row:last-child {
  border-bottom: none;
}

.cart-table-row:hover {
  background-color: rgba(2, 132, 199, 0.035);
}

/* Column 1: Ürün Bilgisi */
.cart-col.col-product {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-table-thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-table-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.cart-table-thumb:hover img {
  transform: scale(1.08);
}

.cart-table-product-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-table-product-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.cart-table-product-title:hover {
  color: var(--color-primary);
}

/* Column 2: Lisans Türü Pill */
.cart-table-license-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  width: fit-content;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.cart-table-license-pill.badge-subscription {
  background-color: rgba(34, 197, 94, 0.08);
  color: var(--color-success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.cart-table-license-pill.badge-lifetime {
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.cart-table-license-pill.badge-unlicensed {
  background-color: var(--color-surface-alt);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* Column 3: Adet Stepper Pill */
.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 3px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cart-qty-stepper:focus-within,
.cart-qty-stepper:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background-color: var(--color-surface);
  color: var(--color-text);
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.cart-qty-btn svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.8;
}

.cart-qty-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.cart-qty-btn:active {
  transform: scale(0.92);
}

/* No Inner Dark Box on Number Input */
.js-cart-qty {
  width: 32px !important;
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0;
}

.js-cart-qty::-webkit-inner-spin-button,
.js-cart-qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Column 4: Toplam Fiyat */
.cart-table-line-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

/* Column 5: Silme Butonu */
.cart-table-remove-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-text-faint);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-left: auto;
}

.cart-table-remove-btn:hover {
  background-color: var(--color-danger-bg);
  color: var(--color-danger);
  border-color: rgba(220, 38, 38, 0.3);
}

/* Mobile Responsiveness for Table Card */
@media (max-width: 860px) {
  .cart-table-header {
    display: none;
  }
  .cart-table-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    position: relative;
  }
  .cart-col.col-product {
    width: 100%;
  }
  .cart-col.col-license,
  .cart-col.col-qty,
  .cart-col.col-price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cart-col.col-license::before,
  .cart-col.col-qty::before,
  .cart-col.col-price::before { content: attr(data-label); font-size: 11px; font-weight: 800; color: var(--color-text-muted); }
  .cart-col.col-action {
    position: absolute;
    top: 18px;
    right: 18px;
  }
}

.cart-item-remove-x svg {
  width: 18px;
  height: 18px;
}

.cart-bottom-actions {
  margin-top: 20px;
}

/* =========================================================
   Sipariş Özeti Sidebar - Zero Inner Box Floating Layout
   ========================================================= */

.cart-sidebar {
  position: sticky;
  top: 90px;
}

.cart-summary-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cart-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

.cart-summary-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.cart-summary-title svg {
  color: var(--color-primary);
}

.cart-summary-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Floating Mini Products List (No background box) */
.cart-summary-mini-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.cart-summary-mini-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.mini-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.mini-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  word-break: break-word;
}

.mini-item-qty {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 2px 6px;
  border-radius: 4px;
}

.mini-item-license {
  font-size: 12.5px;
  font-weight: 700;
}

.mini-item-license.tag-sub {
  color: var(--color-success);
}

.mini-item-license.tag-life {
  color: var(--color-danger);
}

.mini-item-license.tag-unlicensed {
  color: var(--color-text-muted);
}

.mini-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Floating Financial Breakdown Lines (Pure text lines, zero inner background box) */
.cart-summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.cart-summary-row .row-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.cart-summary-row.discount-row {
  color: var(--color-sale);
}

.discount-tag-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.discount-remove-btn {
  border: none;
  background: var(--color-sale-bg);
  color: var(--color-sale);
  border-radius: 4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.discount-val {
  font-weight: 800;
  color: var(--color-sale);
  font-variant-numeric: tabular-nums;
}

.cart-summary-dashed-line {
  height: 1px;
  border-bottom: 1px dashed var(--color-border);
  margin: 6px 0;
}

.cart-summary-row.row-grand-total {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
  padding-top: 2px;
}

.total-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

/* Single Pill Coupon Bar */
.coupon-field-group {
  display: flex;
  align-items: center;
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 4px 4px 4px 14px;
  gap: 8px;
  transition: border-color var(--transition);
}

.coupon-field-group:focus-within {
  border-color: var(--color-primary);
}

.coupon-icon {
  color: var(--color-text-faint);
  flex-shrink: 0;
}

.coupon-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text);
  outline: none;
  padding: 8px 0 !important;
}

.coupon-input::placeholder {
  color: var(--color-text-faint);
  font-weight: 600;
}

.coupon-btn {
  border: none;
  background-color: var(--color-surface);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
  white-space: nowrap;
}

.coupon-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Checkout CTA Button */
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.28);
  transition: all 0.2s ease;
}

.cart-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(2, 132, 199, 0.38);
}

.cart-checkout-btn svg {
  transition: transform 0.2s ease;
}

.cart-checkout-btn:hover svg {
  transform: translateX(4px);
}

/* Trust Signals */
.cart-summary-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.trust-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

/* =========================================================
   Redesigned Checkout Page - Modern Apple/Stripe Layout
   ========================================================= */

.checkout-page-wrapper {
  padding: 40px 0 80px;
}

.checkout-page-wrapper .container {
  max-width: 1440px;
  padding: 0 32px;
}

/* =========================================================
   Redesigned Stepper Navigation - Modern Floating Capsule
   ========================================================= */

.checkout-stepper-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.checkout-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.checkout-step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

/* Completed Step */
.checkout-step.step-completed {
  color: var(--color-success);
  background-color: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.checkout-step.step-completed:hover {
  background-color: rgba(34, 197, 94, 0.15);
  transform: translateY(-1px);
}

/* Active Step */
.checkout-step.step-active {
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-weight: 800;
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.18);
}

/* Pending Step */
.checkout-step.step-pending {
  color: var(--color-text-faint);
  background-color: transparent;
  border: 1px solid transparent;
  opacity: 0.7;
}

/* Step Badge Circle */
.step-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  transition: all var(--transition);
}

.checkout-step.step-completed .step-badge {
  background-color: var(--color-success);
  color: #ffffff;
}

/* Tamamlanan adimin dairesi icine, badge'in kendi rengiyle (currentColor) otomatik tik isareti */
.checkout-step.step-completed .step-badge::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

.checkout-step.step-active .step-badge {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.5);
}

.checkout-step.step-pending .step-badge {
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* Arrow Divider between steps */
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-faint);
  opacity: 0.5;
  padding: 0 2px;
}

/* Main Grid Layout */
.checkout-layout-grid {
  display: grid;
  grid-template-columns: 3.2fr 1.5fr;
  gap: 32px;
  align-items: start;
}

/* Main Content & Cards */
.checkout-main-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#checkoutForm {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checkout-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px !important;
}

.checkout-card:last-child {
  margin-bottom: 0 !important;
}

/* Address Selection & Options */
.address-selection-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.address-option-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--color-surface-alt);
  border: 2px solid var(--color-border);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all var(--transition);
}

.address-option-card input[type="radio"] {
  display: none;
}

.address-option-card.active {
  border-color: var(--color-primary);
  background-color: rgba(2, 132, 199, 0.04);
}

.address-option-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.address-option-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
}

.address-option-title svg {
  color: var(--color-primary);
}

.address-option-text {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.address-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  transition: all var(--transition);
}

.address-option-card.active .address-check {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* Inline New Address Form */
.new-address-inline-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 20px;
}

/* Foreign Citizen Toggle Pill */
.foreign-toggle-wrap {
  display: flex;
  margin-bottom: 2px;
}

.foreign-toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
}

.foreign-toggle-pill:hover {
  border-color: var(--color-primary);
}

.foreign-toggle-pill input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.foreign-toggle-pill svg {
  color: var(--color-primary);
}

.checkout-select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  outline: none;
  cursor: pointer;
}

.checkout-input.custom-padding {
  padding-left: 14px !important;
}

.checkout-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  outline: none;
  resize: vertical;
  font-family: inherit;
}

.save-address-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
}

/* Single Modern Payment Banner */
.single-payment-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(2, 132, 199, 0.04);
  border: 2px solid var(--color-primary);
  border-radius: 14px;
  padding: 18px 20px;
}

.payment-banner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-banner-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
}

.payment-banner-title svg {
  color: var(--color-primary);
}

.payment-banner-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.payment-banner-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.card-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-header-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
}

.card-header-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

/* User Form Grid */
.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkout-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}

.checkout-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-input-icon-wrap svg {
  position: absolute;
  left: 14px;
  color: var(--color-text-faint);
  pointer-events: none;
}

.checkout-input {
  width: 100%;
  height: 46px;
  padding: 0 14px 0 42px !important;
  padding-left: 42px !important;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  outline: none;
}

.checkout-input:disabled {
  opacity: 1 !important;
  color: var(--color-text) !important;
  -webkit-text-fill-color: var(--color-text) !important;
  cursor: not-allowed;
}

.checkout-info-callout {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-info-bg);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-info);
}

/* Payment Method Selection Options */
.payment-methods-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-method-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-surface-alt);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.payment-method-option input[type="radio"] {
  display: none;
}

.payment-method-option.active {
  border-color: var(--color-primary);
  background-color: rgba(2, 132, 199, 0.04);
}

/* Etkinlestirilmis ama API bilgisi girilmemis saglayici - secilemez, sonucta karisiklik olmasin */
.payment-method-option-disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.payment-method-option-disabled:hover {
  border-color: var(--color-border);
}

.method-option-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.method-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--color-text);
}

/* Odeme saglayicisi marka rozeti (admin/settings.php'de secilen yontemler icin) */
.method-provider-badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 7px;
  letter-spacing: 0.01em;
}

.method-badge {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--color-success);
  background: var(--color-success-bg);
  padding: 2px 7px;
  border-radius: 10px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.method-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.method-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all var(--transition);
}

.payment-method-option.active .method-check {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* Demo Payment Box Callout */
.demo-payment-box {
  background-color: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-payment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-warning);
}

.demo-payment-desc {
  margin: 0;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.checkout-submit-btn {
  height: 52px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.28);
}

/* Right Column: Checkout Sidebar Summary */
.checkout-sidebar {
  position: sticky;
  top: 90px;
}

.checkout-summary-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-summary-title {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}

.checkout-summary-count {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Summary Items List */
.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-item-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  flex-shrink: 0;
}

.summary-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-item-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.summary-item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
}

.mini-tag {
  font-weight: 700;
}

.mini-tag.tag-sub { color: var(--color-success); }
.mini-tag.tag-life { color: var(--color-danger); }
.mini-tag.tag-unlicensed { color: var(--color-text-muted); }

.mini-qty {
  font-weight: 800;
  color: var(--color-text-muted);
}

.summary-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

/* Summary Breakdown Lines */
.checkout-summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.breakdown-val {
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.checkout-summary-divider {
  height: 1px;
  border-bottom: 1px dashed var(--color-border);
  margin: 4px 0;
}

.summary-breakdown-row.total-row {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
}

.summary-breakdown-row.total-row .total-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

/* Summary Trust Signals */
.checkout-summary-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

/* Mobile Responsiveness for Checkout */
@media (max-width: 991px) {
  .checkout-layout-grid,
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
}