/* =========================================================
   TRAXON DONATE SYSTEM
   Premium Public Storefront
   ========================================================= */

:root {
  --color-background: #06080d;
  --color-background-soft: #0a0e16;
  --color-surface: rgba(14, 19, 30, 0.76);
  --color-surface-solid: #0d121d;
  --color-surface-light: #111827;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.14);

  --color-text: #f7f9fc;
  --color-text-soft: #c0c7d4;
  --color-text-muted: #7f8899;
  --color-text-dark: #06080d;

  --color-primary: #ff7a1a;
  --color-primary-light: #ffb86b;
  --color-primary-dark: #b94808;
  --color-cyan: #ff9d45;
  --color-success: #38d996;

  --gradient-primary:
    linear-gradient(
      135deg,
      #ffd8b0 0%,
      #ff7a1a 45%,
      #b94808 100%
    );

  --gradient-surface:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.015)
    );

  --shadow-large:
    0 40px 120px rgba(0, 0, 0, 0.48);

  --shadow-primary:
    0 20px 55px rgba(255, 122, 24, 0.28);

  --container-width: 1240px;
  --header-height: 88px;

  --radius-small: 12px;
  --radius-medium: 18px;
  --radius-large: 28px;
  --radius-xlarge: 38px;

  --transition-fast: 180ms ease;
  --transition-normal: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-background);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 122, 24, 0.11),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 157, 69, 0.07),
      transparent 28%
    ),
    var(--color-background);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  color: #ffffff;
  background: rgba(255, 122, 24, 0.7);
}

/* =========================================================
   GLOBAL BACKGROUND
   ========================================================= */

.site-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.95),
      transparent 78%
    );
}

.background-noise {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.background-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
}

.background-orb-one {
  top: -260px;
  left: -160px;
  width: 580px;
  height: 580px;
  background: rgba(57, 92, 220, 0.22);
}

.background-orb-two {
  top: 240px;
  right: -260px;
  width: 620px;
  height: 620px;
  background: rgba(32, 155, 255, 0.09);
}

/* =========================================================
   SHARED LAYOUT
   ========================================================= */

.site-main {
  position: relative;
}

.section-shell {
  width: min(
    calc(100% - 48px),
    var(--container-width)
  );
  margin-inline: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-primary-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-kicker::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 690px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading h2 span {
  color: var(--color-text-muted);
}

.section-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.section-heading-inline {
  align-items: center;
}

.section-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  color: var(--color-text-soft);
  border-bottom: 1px solid var(--color-border-strong);
  font-size: 14px;
  font-weight: 700;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.section-link:hover {
  color: #ffffff;
  border-color: var(--color-primary-light);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition-normal),
    border-color var(--transition-normal),
    backdrop-filter var(--transition-normal);
}

.site-header.scrolled {
  border-color: var(--color-border);
  background: rgba(6, 8, 13, 0.76);
  backdrop-filter: blur(22px);
}

.header-shell {
  width: min(
    calc(100% - 48px),
    var(--container-width)
  );
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-symbol {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 92, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 184, 92, 0.16),
      rgba(255, 122, 24, 0.04)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(32, 64, 170, 0.18);
}

.brand-symbol::after {
  position: absolute;
  inset: -60%;
  content: "";
  transform: rotate(35deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent
    );
}

.brand-symbol span {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.desktop-navigation a {
  position: relative;
  padding: 11px 16px;
  color: var(--color-text-muted);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.desktop-navigation a.active::after {
  position: absolute;
  right: 18px;
  bottom: 5px;
  left: 18px;
  height: 1px;
  content: "";
  background: var(--color-primary-light);
  box-shadow:
    0 0 12px var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-products-link {
  padding: 11px 4px;
  color: var(--color-text-soft);
  font-size: 13px;
  font-weight: 700;
}

.header-ticket-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.28);
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.96),
      rgba(84, 66, 230, 0.96)
    );
  box-shadow:
    0 10px 30px rgba(255, 122, 24, 0.2);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.header-ticket-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px rgba(255, 122, 24, 0.3);
}

.mobile-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-menu-button span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #ffffff;
  transition: var(--transition-normal);
}

.mobile-menu-button span:first-child {
  transform: translateY(-4px);
}

.mobile-menu-button span:last-child {
  transform: translateY(4px);
}

.mobile-menu-button.active span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-button.active span:last-child {
  transform: rotate(-45deg);
}

.mobile-navigation {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  right: 20px;
  left: 20px;
  z-index: 999;
  display: none;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: rgba(10, 14, 22, 0.96);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(24px);
}

.mobile-navigation.active {
  display: grid;
  animation: mobileMenuIn 240ms ease both;
}

.mobile-navigation a {
  padding: 16px;
  color: var(--color-text-soft);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-navigation a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    background var(--transition-normal);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.28);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
}

.button-primary:hover {
  box-shadow:
    0 24px 65px rgba(255, 122, 24, 0.36);
}

.button-secondary {
  color: var(--color-text-soft);
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.button-light {
  color: var(--color-text-dark);
  background: #ffffff;
  box-shadow:
    0 20px 50px rgba(255, 255, 255, 0.12);
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;
  min-height: 900px;
  padding: 180px 0 100px;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(
    calc(100% - 48px),
    var(--container-width)
  );
  margin-inline: auto;
  display: grid;
  grid-template-columns:
    minmax(0, 0.96fr)
    minmax(500px, 1.04fr);
  align-items: center;
  gap: 76px;
}

.hero-copy {
  max-width: 650px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding: 9px 13px;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-success);
  box-shadow:
    0 0 0 4px rgba(56, 217, 150, 0.1),
    0 0 16px rgba(56, 217, 150, 0.6);
}

.hero-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 6.6vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;

  color: transparent;
  background: linear-gradient(
    158deg,
    #fffaf2 0%,
    #ffe4a8 22%,
    #ffb347 48%,
    #e87820 72%,
    #c05800 100%
  );
  background-clip: text;
  -webkit-background-clip: text;

  filter:
    drop-shadow(0 0 38px rgba(255, 140, 30, 0.28))
    drop-shadow(0 10px 40px rgba(0, 0, 0, 0.40));
}

.hero-title span {
  display: block;
  color: transparent;
  background:
    linear-gradient(
      95deg,
      #ffffff 0%,
      #fff3df 38%,
      #ff9d45 70%,
      #b94808 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-item strong {
  font-size: 14px;
  font-weight: 800;
}

.hero-meta-item span {
  color: var(--color-text-muted);
  font-size: 11px;
}

.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: var(--color-border);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 500px;
  height: 500px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 122, 24, 0.19),
      transparent 68%
    );
  filter: blur(18px);
}

.hero-visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 184, 92, 0.09);
  border-radius: 50%;
}

.hero-visual-orbit-one {
  width: 540px;
  height: 540px;
  animation: orbitSpin 28s linear infinite;
}

.hero-visual-orbit-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: orbitSpinReverse 24s linear infinite;
}

.hero-product-card {
  position: relative;
  z-index: 3;
  width: min(100%, 540px);
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      rgba(20, 27, 42, 0.94),
      rgba(10, 14, 23, 0.88)
    );
  box-shadow:
    0 55px 130px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform:
    perspective(1100px)
    rotateY(-5deg)
    rotateX(2deg);
  backdrop-filter: blur(28px);
  transition: transform 600ms ease;
}

.hero-product-card:hover {
  transform:
    perspective(1100px)
    rotateY(-1deg)
    rotateX(0deg)
    translateY(-7px);
}

.hero-product-card::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 320px;
  height: 320px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.2);
  filter: blur(90px);
}

.hero-product-card-top,
.hero-product-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-product-card-top {
  padding: 8px 7px 18px;
}

.hero-product-card-top > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-product-card-top span,
.hero-product-card-bottom span {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-product-card-top strong {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.hero-product-badge {
  padding: 8px 10px;
  color: var(--color-primary-light);
  border: 1px solid rgba(255, 184, 92, 0.22);
  border-radius: 9px;
  background: rgba(255, 122, 24, 0.08);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero-product-preview {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.13),
      transparent 55%
    ),
    #080c14;
}

.hero-product-preview-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 34px 34px;
  mask-image:
    radial-gradient(
      circle at center,
      #000,
      transparent 75%
    );
}

.hero-product-preview-glow {
  position: absolute;
  bottom: 60px;
  width: 310px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.34);
  filter: blur(26px);
}

.hero-product-placeholder {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-6px);
}

.hero-product-placeholder span {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.hero-product-placeholder strong {
  margin: 4px 0 1px;
  color: transparent;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #7d91c8
    );
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Manrope", sans-serif;
  font-size: 108px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  filter:
    drop-shadow(
      0 25px 25px rgba(255, 122, 24, 0.22)
    );
}

.hero-product-placeholder small {
  color: var(--color-primary-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.hero-product-controls {
  position: absolute;
  right: 16px;
  bottom: 10px;
  left: 16px;
  display: flex;
  gap: 7px;
}

.hero-product-controls span {
  padding: 7px 9px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-product-card-bottom {
  padding: 18px 7px 6px;
}

.hero-product-card-bottom > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-product-card-bottom strong {
  font-size: 17px;
}

.hero-product-card-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-light);
  font-size: 12px;
  font-weight: 800;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid var(--color-border-strong);
  border-radius: 15px;
  background: rgba(12, 17, 27, 0.84);
  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.floating-chip-top {
  top: 70px;
  right: -20px;
  animation: floatingChip 5s ease-in-out infinite;
}

.floating-chip-bottom {
  bottom: 88px;
  left: -42px;
  animation:
    floatingChip 5s 1.4s ease-in-out infinite;
}

.floating-chip-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--color-primary-light);
  border-radius: 9px;
  background: rgba(255, 122, 24, 0.12);
  font-size: 12px;
}

.floating-chip > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-chip strong {
  font-size: 11px;
}

.floating-chip small {
  color: var(--color-text-muted);
  font-size: 9px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-left {
  top: 130px;
  left: -250px;
  width: 520px;
  height: 520px;
  background: rgba(50, 79, 202, 0.17);
}

.hero-glow-right {
  top: 160px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: rgba(56, 128, 255, 0.1);
}

.hero-bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-border-strong),
      transparent
    );
}

/* =========================================================
   CATEGORIES
   ========================================================= */

.category-section {
  padding: 120px 0 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 24, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(255, 100, 0, 0.09), transparent 55%),
    linear-gradient(155deg, rgba(22, 14, 8, 0.96), rgba(10, 6, 3, 0.98));
  box-shadow:
    0 2px 0 0 rgba(255, 180, 80, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

/* Üst kenarda ince amber accent çizgisi */
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 170, 60, 0.45), transparent);
  transition: opacity 0.28s ease;
}

/* Sağ-alt köşe glow */
.category-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 100, 20, 0.10);
  filter: blur(50px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 150, 50, 0.32);
  box-shadow:
    0 2px 0 0 rgba(255, 180, 80, 0.10) inset,
    0 0 0 1px rgba(255, 122, 24, 0.10),
    0 30px 70px rgba(0, 0, 0, 0.40),
    0 8px 30px rgba(255, 100, 20, 0.10);
}

.category-card:hover::after {
  opacity: 1.6;
  transform: scale(1.18);
}

/* Numara — büyük, soluk, arka planda */
.category-number {
  position: relative;
  z-index: 2;
  color: rgba(255, 180, 80, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.category-card-content {
  position: relative;
  z-index: 2;
}

.category-card-content span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 160, 60, 0.70);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.20em;
}

.category-card-content h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff8f0;
}

.category-card-content p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 230, 190, 0.42);
  font-size: 13px;
  line-height: 1.72;
}

/* Ok butonu */
.category-card-arrow {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: rgba(255, 160, 60, 0.55);
  border: 1px solid rgba(255, 140, 40, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.10), rgba(255, 80, 0, 0.05));
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.category-card:hover .category-card-arrow {
  color: #ffcf80;
  border-color: rgba(255, 180, 60, 0.42);
  background: linear-gradient(135deg, rgba(255, 140, 30, 0.22), rgba(255, 80, 0, 0.12));
  transform: translate(2px, -2px);
}



/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */

.featured-section {
  padding: 100px 0 130px;
}

.featured-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(0, 0.75fr);
  gap: 20px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 27px;
  background:
    linear-gradient(
      150deg,
      rgba(17, 23, 36, 0.9),
      rgba(9, 13, 21, 0.82)
    );
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 184, 92, 0.24);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.35);
}

.product-media {
  position: relative;
  height: 300px;
  display: block;
  overflow: hidden;
  background: #0b101a;
}

.product-card-large {
  grid-row: span 2;
}

.product-card-large .product-media {
  height: 500px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.product-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 8, 13, 0.78),
      transparent 50%
    );
}

.product-category,
.product-3d-badge {
  position: absolute;
  top: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(5, 8, 13, 0.52);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-category {
  left: 18px;
}

.product-3d-badge {
  right: 18px;
  color: var(--color-primary-light);
}

.product-open-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid var(--color-border-strong);
  border-radius: 14px;
  background: rgba(10, 14, 22, 0.64);
  backdrop-filter: blur(12px);
  transition:
    transform var(--transition-normal),
    background var(--transition-normal);
}

.product-card:hover .product-open-icon {
  transform: translate(3px, -3px);
  background: var(--color-primary);
}

.product-card-body {
  padding: 25px;
}

.product-card-label {
  color: var(--color-primary-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-card-copy h3 {
  margin: 10px 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.product-card-copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.product-card-footer > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-card-footer span {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 700;
}

.product-card-footer strong {
  font-size: 17px;
}

.product-detail-link {
  color: var(--color-text-soft);
  font-size: 12px;
  font-weight: 800;
  transition: color var(--transition-fast);
}

.product-detail-link:hover {
  color: var(--color-primary-light);
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  padding: 40px 0 130px;
}

.process-panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  gap: 90px;
  padding: 68px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 36px;
  background:
    linear-gradient(
      140deg,
      rgba(18, 25, 40, 0.94),
      rgba(8, 12, 20, 0.9)
    );
  box-shadow:
    0 50px 130px rgba(0, 0, 0, 0.3);
}

.process-panel::before {
  position: absolute;
  top: -240px;
  left: -180px;
  width: 480px;
  height: 480px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.13);
  filter: blur(100px);
}

.process-intro {
  position: relative;
  z-index: 2;
}

.process-intro h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(39px, 4.5vw, 61px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.process-intro p {
  margin: 24px 0 30px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.process-steps {
  position: relative;
  z-index: 2;
  display: grid;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 23px;
  padding: 27px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-step:first-child {
  padding-top: 2px;
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--color-primary-light);
  border: 1px solid rgba(255, 184, 92, 0.2);
  border-radius: 15px;
  background: rgba(255, 122, 24, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin: 1px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.process-step p {
  max-width: 470px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================================================
   DISCORD CTA
   ========================================================= */

.discord-cta-section {
  padding: 0 0 130px;
}

.discord-cta {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 58px 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 92, 0.23);
  border-radius: 34px;
  background:
    linear-gradient(
      120deg,
      rgba(38, 67, 180, 0.82),
      rgba(49, 55, 155, 0.7),
      rgba(15, 22, 39, 0.92)
    );
  box-shadow:
    0 40px 110px rgba(31, 56, 155, 0.22);
}

.discord-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 50%,
      transparent
    );
}

.discord-cta-glow {
  position: absolute;
  top: -180px;
  right: 80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(126, 164, 255, 0.24);
  filter: blur(100px);
}

.discord-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.discord-cta-copy .section-kicker {
  color: #cdd8ff;
}

.discord-cta-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.discord-cta-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(235, 240, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.discord-cta .button {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--color-border);
  background: rgba(5, 7, 12, 0.82);
}

.footer-shell {
  width: min(
    calc(100% - 48px),
    var(--container-width)
  );
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns:
    1.5fr
    0.65fr
    0.65fr
    1fr;
  gap: 55px;
  padding: 70px 0 62px;
}

.footer-brand {
  margin-bottom: 23px;
}

.footer-brand-column > p,
.footer-action-column > p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.75;
}

.footer-brand-column > p {
  max-width: 350px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 700;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow:
    0 0 12px rgba(56, 217, 150, 0.65);
}

.footer-links-column,
.footer-action-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column-title {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links-column a {
  color: var(--color-text-muted);
  font-size: 13px;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.footer-links-column a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-ticket-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
  color: var(--color-primary-light);
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 10px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   KEYFRAMES
   ========================================================= */

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes floatingChip {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .desktop-navigation {
    display: none;
  }

  .mobile-menu-button {
    position: relative;
    display: grid;
  }

  .header-products-link {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 155px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card-large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .product-card-large .product-media {
    height: 480px;
  }

  .process-panel {
    gap: 55px;
    padding: 54px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-action-column {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .section-shell,
  .header-shell,
  .footer-shell,
  .hero-shell {
    width: min(
      calc(100% - 30px),
      var(--container-width)
    );
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-ticket-button {
    display: none;
  }

  .hero-section {
    padding: 128px 0 75px;
  }

  .hero-eyebrow {
    margin-bottom: 23px;
    font-size: 9px;
  }

  .hero-title {
    font-size: clamp(46px, 15vw, 66px);
    line-height: 1;
  }

  .hero-description {
    margin-top: 23px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 34px;
  }

  .hero-meta-divider {
    display: none;
  }

  .hero-meta-item {
    min-width: calc(50% - 10px);
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-product-card {
    padding: 13px;
    border-radius: 25px;
    transform: none;
  }

  .hero-product-card:hover {
    transform: translateY(-4px);
  }

  .hero-product-preview {
    min-height: 320px;
  }

  .hero-product-placeholder strong {
    font-size: 82px;
  }

  .hero-visual-orbit-one {
    width: 410px;
    height: 410px;
  }

  .hero-visual-orbit-two {
    width: 335px;
    height: 335px;
  }

  .floating-chip-top {
    top: 35px;
    right: -8px;
  }

  .floating-chip-bottom {
    bottom: 40px;
    left: -5px;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .section-heading > p {
    margin-top: 19px;
  }

  .section-link {
    margin-top: 22px;
  }

  .category-section {
    padding: 90px 0 50px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 240px;
  }

  .featured-section {
    padding: 80px 0 100px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .product-card-large {
    grid-column: auto;
  }

  .product-media,
  .product-card-large .product-media {
    height: 330px;
  }

  .process-section {
    padding-bottom: 95px;
  }

  .process-panel {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 35px 24px;
    border-radius: 28px;
  }

  .process-intro h2 {
    font-size: 42px;
  }

  .process-step {
    grid-template-columns: 54px 1fr;
    gap: 15px;
  }

  .process-step-number {
    width: 46px;
    height: 46px;
  }

  .discord-cta-section {
    padding-bottom: 90px;
  }

  .discord-cta {
    min-height: 0;
    display: block;
    padding: 42px 25px;
    border-radius: 28px;
  }

  .discord-cta-copy h2 {
    font-size: 41px;
  }

  .discord-cta .button {
    width: 100%;
    margin-top: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
    padding: 55px 0;
  }

  .footer-brand-column,
  .footer-action-column {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-product-card-top strong {
    font-size: 16px;
  }

  .hero-product-preview {
    min-height: 275px;
  }

  .hero-product-placeholder strong {
    font-size: 70px;
  }

  .floating-chip {
    padding: 10px 11px;
  }

  .floating-chip strong {
    font-size: 9px;
  }

  .floating-chip small {
    font-size: 8px;
  }

  .hero-product-card-bottom {
    gap: 15px;
  }

  .hero-product-card-bottom a {
    font-size: 10px;
  }

  .section-heading h2,
  .process-intro h2,
  .discord-cta-copy h2 {
    font-size: 36px;
  }

  .product-media,
  .product-card-large .product-media {
    height: 275px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-column,
  .footer-action-column {
    grid-column: auto;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   PRODUCT CATALOG PAGE
   ========================================================= */

.catalog-hero {
  position: relative;
  padding: 180px 0 92px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.catalog-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 122, 24, 0.12),
      transparent 34%
    ),
    linear-gradient(
      to bottom,
      transparent,
      rgba(255, 255, 255, 0.012)
    );
}

.catalog-hero-glow {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.14);
  filter: blur(120px);
  pointer-events: none;
}

.catalog-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(390px, 0.85fr);
  align-items: end;
  gap: 80px;
}

.catalog-hero-copy {
  max-width: 780px;
}

.catalog-hero-copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 6.4vw, 82px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.catalog-hero-copy h1 span {
  display: block;
  color: transparent;
  background:
    linear-gradient(
      95deg,
      #ffffff,
      #fff3df 42%,
      #648cff 75%,
      #7b63ec
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.catalog-hero-copy p {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.82;
}

.catalog-hero-stats {
  display: grid;
  gap: 12px;
}

.catalog-hero-stats article {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 19px 22px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
  backdrop-filter: blur(14px);
}

.catalog-hero-stats article span {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.catalog-hero-stats article strong {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* =========================================================
   CATALOG TOOLBAR
   ========================================================= */

.catalog-section {
  padding: 66px 0 110px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 22px;
}

.catalog-search-form {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns:
    minmax(250px, 1fr)
    minmax(190px, 0.36fr)
    auto;
  gap: 10px;
}

.catalog-search-field,
.catalog-select-field {
  min-width: 0;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.028);
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.catalog-search-field:focus-within,
.catalog-select-field:focus-within {
  border-color: rgba(255, 184, 92, 0.32);
  background: rgba(255, 122, 24, 0.045);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.055);
}

.catalog-search-field input,
.catalog-select-field select {
  width: 100%;
  height: 100%;
  color: var(--color-text);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.catalog-search-field input::placeholder {
  color: #697184;
}

.catalog-select-field {
  position: relative;
}

.catalog-select-field select {
  appearance: none;
  cursor: pointer;
}

.catalog-select-field select option {
  color: #ffffff;
  background: #0b1019;
}

.catalog-select-field svg {
  flex-shrink: 0;
  pointer-events: none;
}

.catalog-filter-button {
  min-width: 126px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.26);
  border-radius: 15px;
  background: var(--gradient-primary);
  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.2);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.catalog-filter-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 45px rgba(255, 122, 24, 0.3);
}

.catalog-result-count {
  flex-shrink: 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

.catalog-result-count span {
  color: #ffffff;
  font-weight: 800;
}

/* =========================================================
   CATEGORY TABS
   ========================================================= */

.catalog-category-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-category-tabs::-webkit-scrollbar {
  display: none;
}

.catalog-category-tabs a {
  flex-shrink: 0;
  padding: 11px 15px;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.catalog-category-tabs a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
}

.catalog-category-tabs a.active {
  color: #ffffff;
  border-color: rgba(255, 184, 92, 0.2);
  background: rgba(255, 122, 24, 0.09);
}

/* =========================================================
   CATALOG PRODUCT GRID
   ========================================================= */

.catalog-product-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.catalog-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 27px;
  background:
    linear-gradient(
      148deg,
      rgba(18, 24, 38, 0.92),
      rgba(8, 12, 20, 0.9)
    );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.catalog-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 184, 92, 0.25);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.34);
}

.catalog-product-media {
  position: relative;
  height: 360px;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.08),
      transparent 60%
    ),
    #090e17;
}

.catalog-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 800ms ease;
}

.catalog-product-card:hover
.catalog-product-media img {
  transform: scale(1.06);
  filter:
    saturate(1.08)
    contrast(1.04);
}

.catalog-product-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 8, 13, 0.84),
      transparent 52%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 8, 13, 0.22),
      transparent 26%
    );
}

.catalog-product-top,
.catalog-product-bottom {
  position: absolute;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.catalog-product-top {
  top: 18px;
}

.catalog-product-bottom {
  bottom: 18px;
}

.catalog-product-category,
.catalog-product-featured,
.catalog-product-ready,
.catalog-product-3d,
.catalog-product-class {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(7, 10, 17, 0.58);
  backdrop-filter: blur(13px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-product-featured {
  color: #cbd5ff;
  border-color: rgba(255, 184, 92, 0.22);
  background: rgba(255, 122, 24, 0.13);
}

.catalog-product-3d {
  color: var(--color-primary-light);
}

.catalog-product-ready {
  color: var(--color-text-soft);
}

.catalog-product-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid var(--color-border-strong);
  border-radius: 14px;
  background: rgba(7, 10, 17, 0.62);
  backdrop-filter: blur(14px);
  transition:
    transform var(--transition-normal),
    background var(--transition-normal),
    border-color var(--transition-normal);
}

.catalog-product-card:hover
.catalog-product-arrow {
  transform: translate(3px, -3px);
  border-color: rgba(255, 184, 92, 0.28);
  background: var(--color-primary);
}

/* =========================================================
   CATALOG PRODUCT CONTENT
   ========================================================= */

.catalog-product-content {
  padding: 26px;
}

.catalog-product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.catalog-product-heading > div {
  min-width: 0;
}

.catalog-product-heading span {
  color: var(--color-primary-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.catalog-product-heading h2 {
  margin: 9px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.catalog-product-heading h2 a {
  transition: color var(--transition-fast);
}

.catalog-product-heading h2 a:hover {
  color: var(--color-primary-light);
}

.catalog-product-heading > strong {
  flex-shrink: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.catalog-product-content > p {
  margin: 15px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.75;
}

.catalog-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.catalog-product-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.024);
  font-size: 9px;
  font-weight: 700;
}

.catalog-product-features svg {
  color: var(--color-success);
}

.catalog-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.catalog-detail-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.2);
  border-radius: 12px;
  background: rgba(255, 122, 24, 0.09);
  font-size: 11px;
  font-weight: 800;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.catalog-detail-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 122, 24, 0.16);
}

.catalog-ticket-link {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 800;
  transition: color var(--transition-fast);
}

.catalog-ticket-link:hover {
  color: var(--color-primary-light);
}

/* =========================================================
   CATALOG EMPTY STATE
   ========================================================= */

.catalog-empty-state {
  min-height: 500px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.08),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.018);
}

.catalog-empty-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--color-primary-light);
  border: 1px solid rgba(255, 184, 92, 0.18);
  border-radius: 24px;
  background: rgba(255, 122, 24, 0.075);
}

.catalog-empty-state h2 {
  max-width: 600px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.catalog-empty-state p {
  max-width: 540px;
  margin: 16px 0 28px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   CATALOG SUPPORT CTA
   ========================================================= */

.catalog-support-section {
  padding: 0 0 125px;
}

.catalog-support-panel {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 92, 0.22);
  border-radius: 31px;
  background:
    linear-gradient(
      120deg,
      rgba(40, 67, 177, 0.78),
      rgba(48, 56, 154, 0.68),
      rgba(13, 19, 32, 0.94)
    );
  box-shadow:
    0 38px 100px rgba(28, 50, 140, 0.22);
}

.catalog-support-panel::before {
  position: absolute;
  top: -180px;
  right: 70px;
  width: 450px;
  height: 450px;
  content: "";
  border-radius: 50%;
  background: rgba(127, 160, 255, 0.25);
  filter: blur(100px);
}

.catalog-support-panel > div,
.catalog-support-panel > a {
  position: relative;
  z-index: 2;
}

.catalog-support-panel h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.catalog-support-panel p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(232, 238, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   PRODUCT CATALOG RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .catalog-hero-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .catalog-hero-stats {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .catalog-hero-stats article {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-result-count {
    align-self: flex-end;
  }

  .catalog-search-form {
    grid-template-columns:
      minmax(220px, 1fr)
      minmax(170px, 0.45fr)
      auto;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-product-media {
    height: 430px;
  }
}

@media (max-width: 760px) {
  .catalog-hero {
    padding: 132px 0 70px;
  }

  .catalog-hero-copy h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .catalog-hero-copy p {
    font-size: 14px;
  }

  .catalog-hero-stats {
    grid-template-columns: 1fr;
  }

  .catalog-hero-stats article {
    min-height: 78px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .catalog-section {
    padding: 48px 0 90px;
  }

  .catalog-search-form {
    grid-template-columns: 1fr;
  }

  .catalog-result-count {
    align-self: flex-start;
  }

  .catalog-category-tabs {
    margin-right: -15px;
    padding-right: 15px;
  }

  .catalog-product-media {
    height: 330px;
  }

  .catalog-product-content {
    padding: 22px;
  }

  .catalog-product-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .catalog-product-heading h2 {
    font-size: 23px;
  }

  .catalog-product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-detail-button {
    justify-content: center;
  }

  .catalog-ticket-link {
    text-align: center;
  }

  .catalog-empty-state {
    min-height: 430px;
    padding: 40px 22px;
  }

  .catalog-support-section {
    padding-bottom: 90px;
  }

  .catalog-support-panel {
    display: block;
    min-height: 0;
    padding: 40px 24px;
    border-radius: 27px;
  }

  .catalog-support-panel h2 {
    font-size: 38px;
  }

  .catalog-support-panel .button {
    width: 100%;
    margin-top: 28px;
  }
}

@media (max-width: 430px) {
  .catalog-product-media {
    height: 280px;
  }

  .catalog-product-top,
  .catalog-product-bottom {
    right: 13px;
    left: 13px;
  }

  .catalog-product-top {
    top: 13px;
  }

  .catalog-product-bottom {
    bottom: 13px;
  }

  .catalog-product-category,
  .catalog-product-featured,
  .catalog-product-ready,
  .catalog-product-3d {
    padding: 7px 8px;
    font-size: 7px;
  }

  .catalog-product-arrow {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */

.product-detail-hero {
  position: relative;
  padding: 138px 0 120px;
  overflow: hidden;
}

.product-detail-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}

.product-detail-glow-left {
  top: 160px;
  left: -280px;
  width: 560px;
  height: 560px;
  background: rgba(255, 122, 24, 0.14);
}

.product-detail-glow-right {
  top: 100px;
  right: -260px;
  width: 600px;
  height: 600px;
  background: rgba(96, 73, 230, 0.1);
}

.product-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 31px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
}

.product-breadcrumb a {
  transition: color var(--transition-fast);
}

.product-breadcrumb a:hover {
  color: #ffffff;
}

.product-breadcrumb strong {
  color: var(--color-text-soft);
  font-weight: 700;
}

.product-breadcrumb > span {
  color: rgba(255, 255, 255, 0.18);
}

.product-detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(390px, 0.75fr);
  align-items: start;
  gap: 28px;
}

/* =========================================================
   PRODUCT SHOWROOM
   ========================================================= */

.product-showroom {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 31px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 25, 39, 0.9),
      rgba(8, 12, 20, 0.88)
    );
  box-shadow:
    0 45px 120px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
}

.product-showroom-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 2px 3px 17px;
}

.product-showroom-badges,
.product-showroom-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-showroom-category,
.product-showroom-featured {
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-showroom-category {
  color: var(--color-text-soft);
}

.product-showroom-featured {
  color: var(--color-primary-light);
  border-color: rgba(255, 184, 92, 0.2);
  background: rgba(255, 122, 24, 0.08);
}

.product-showroom-action {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.product-showroom-action:hover {
  color: #ffffff;
  border-color: rgba(255, 184, 92, 0.25);
  background: rgba(255, 122, 24, 0.08);
  transform: translateY(-2px);
}

.product-showroom-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 24, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 140, 30, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 80, 0, 0.10), transparent 42%),
    radial-gradient(ellipse at 80% 75%, rgba(255, 80, 0, 0.07), transparent 38%),
    linear-gradient(160deg, #110805 0%, #0a0503 50%, #050201 100%);
  box-shadow:
    0 0 0 1px rgba(255, 122, 24, 0.08),
    inset 0 1px 0 rgba(255, 180, 80, 0.06),
    0 40px 100px rgba(0, 0, 0, 0.50);
}

.product-showroom-stage:fullscreen {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 140, 30, 0.20), transparent 50%),
    #050201;
}

.product-showroom-grid {
  position: absolute;
  inset: 0;
  opacity: 0.30;
  background-image:
    linear-gradient(rgba(255, 122, 24, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 24, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image:
    radial-gradient(ellipse at 50% 40%, #000 0%, transparent 72%);
}

.product-showroom-light {
  position: absolute;
  bottom: 90px;
  width: 62%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 130, 30, 0.38), rgba(200, 70, 0, 0.14) 60%, transparent 100%);
  filter: blur(38px);
  pointer-events: none;
}

.product-main-image {
  position: relative;
  z-index: 2;
  width: 88%;
  max-height: 480px;
  object-fit: contain;
  filter:
    drop-shadow(
      0 38px 40px rgba(0, 0, 0, 0.46)
    );
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    filter 500ms ease;
}

.product-showroom-stage:hover
.product-main-image {
  filter:
    drop-shadow(
      0 45px 48px rgba(0, 0, 0, 0.54)
    )
    saturate(1.05);
}

.product-model-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.25);
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.92),
      rgba(86, 66, 224, 0.92)
    );
  box-shadow:
    0 15px 38px rgba(255, 122, 24, 0.24);
  font-size: 11px;
  font-weight: 800;
}

.product-model-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 9px;
}

.product-model-status {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(6, 9, 15, 0.64);
  backdrop-filter: blur(14px);
  font-size: 9px;
  font-weight: 700;
}

.product-model-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow:
    0 0 12px rgba(56, 217, 150, 0.62);
}

.product-showroom-controls {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-showroom-controls span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(6, 9, 15, 0.6);
  backdrop-filter: blur(13px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-detail-colors {
  margin: 28px 0 16px;
}

.product-detail-colors .product-detail-label {
  display: block;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-color-swatch {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  outline: none;
}

.product-color-swatch:hover,
.product-color-swatch:focus-visible {
  border-color: rgba(255, 184, 92, 0.35);
}

.product-color-swatch.active {
  border-color: rgba(255, 184, 92, 0.8);
  box-shadow: 0 0 0 6px rgba(255, 184, 92, 0.15);
  transform: translateY(-1px);
}

.product-color-swatch--0 { background-color: #181a1f; }
.product-color-swatch--1 { background-color: #c91518; }
.product-color-swatch--2 { background-color: #253fb7; }
.product-color-swatch--3 { background-color: #f6c04d; }
.product-color-swatch--4 { background-color: #d7d7d7; }

.product-thumbnail-list {
  display: flex;
  gap: 10px;
  margin-top: 13px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-thumbnail-list::-webkit-scrollbar {
  display: none;
}

.product-thumbnail {
  width: 92px;
  height: 74px;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: #090d15;
  opacity: 0.6;
  transition:
    opacity var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.product-thumbnail:hover,
.product-thumbnail.active {
  opacity: 1;
  border-color: rgba(255, 184, 92, 0.35);
  transform: translateY(-2px);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showroom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 13px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.018);
}

.product-showroom-note > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-showroom-note span {
  color: var(--color-primary-light);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.product-showroom-note strong {
  font-size: 12px;
  font-weight: 800;
}

.product-showroom-note p {
  max-width: 320px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.6;
  text-align: right;
}

/* =========================================================
   PRODUCT DETAIL SIDEBAR
   ========================================================= */

.product-detail-sidebar {
  position: sticky;
  top: 112px;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 29px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 23, 36, 0.92),
      rgba(8, 12, 20, 0.9)
    );
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
}

.product-detail-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-primary-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-detail-heading h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-detail-heading p {
  margin: 20px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.78;
}

.product-detail-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 21px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-detail-price > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-detail-price > div span {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 700;
}

.product-detail-price > div strong {
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-price-status {
  padding: 8px 11px;
  color: var(--color-success);
  border: 1px solid rgba(56, 217, 150, 0.18);
  border-radius: 9px;
  background: rgba(56, 217, 150, 0.07);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-detail-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.product-detail-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 11px;
  font-weight: 600;
}

.product-detail-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--color-success);
  border-radius: 8px;
  background: rgba(56, 217, 150, 0.07);
}

.product-purchase-panel {
  margin-top: 23px;
  padding: 20px;
  border: 1px solid rgba(255, 184, 92, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 122, 24, 0.09),
      rgba(255, 255, 255, 0.018)
    );
}

.product-purchase-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-purchase-panel-heading > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-purchase-panel-heading > div span {
  color: var(--color-text-muted);
  font-size: 8px;
  font-weight: 700;
}

.product-purchase-panel-heading > div strong {
  font-size: 14px;
  font-weight: 800;
}

.product-purchase-online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-success);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-purchase-online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow:
    0 0 11px rgba(56, 217, 150, 0.62);
}

.product-purchase-panel > p {
  margin: 15px 0 18px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.7;
}

.product-purchase-button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.26);
  border-radius: 14px;
  background: var(--gradient-primary);
  box-shadow:
    0 18px 44px rgba(255, 122, 24, 0.24);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.product-purchase-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 58px rgba(255, 122, 24, 0.34);
}

.product-purchase-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--color-text-muted);
  font-size: 9px;
}

.product-trust-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 17px;
}

.product-trust-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.product-trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--color-primary-light);
  border-radius: 9px;
  background: rgba(255, 122, 24, 0.07);
}

.product-trust-grid article > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-trust-grid strong {
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-trust-grid article > div span {
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */

.product-information-section {
  padding: 0 0 125px;
}

.product-information-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    repeat(3, minmax(0, 0.6fr));
  gap: 16px;
}

.product-information-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 23px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal);
}

.product-information-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 92, 0.22);
}

.product-information-main {
  justify-content: center;
  padding: 38px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 122, 24, 0.12),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(18, 25, 40, 0.9),
      rgba(8, 12, 20, 0.88)
    );
}

.product-information-main h2 {
  max-width: 560px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.3vw, 55px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-information-main p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-information-number {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.14);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-information-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.product-information-card > p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   PRODUCT FINAL CTA
   ========================================================= */

.product-final-cta {
  padding: 0 0 125px;
}

.product-final-panel {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  padding: 58px 62px;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 92, 0.24);
  border-radius: 33px;
  background:
    linear-gradient(
      120deg,
      rgba(38, 67, 180, 0.82),
      rgba(49, 55, 155, 0.7),
      rgba(15, 22, 39, 0.94)
    );
  box-shadow:
    0 40px 110px rgba(31, 56, 155, 0.22);
}

.product-final-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
}

.product-final-panel-glow {
  position: absolute;
  top: -220px;
  right: 40px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(129, 162, 255, 0.24);
  filter: blur(100px);
}

.product-final-panel > div,
.product-final-panel > a {
  position: relative;
  z-index: 2;
}

.product-final-panel > div {
  max-width: 760px;
}

.product-final-panel h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 4.5vw, 59px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-final-panel p {
  max-width: 630px;
  margin: 18px 0 0;
  color: rgba(232, 238, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   COPY NOTIFICATION
   ========================================================= */

.copy-notification {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 4000;
  padding: 14px 17px;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.24);
  border-radius: 13px;
  background: rgba(11, 16, 26, 0.95);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity var(--transition-normal),
    transform var(--transition-normal);
}

.copy-notification.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PRODUCT DETAIL RESPONSIVE
   ========================================================= */

@media (max-width: 1120px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-sidebar {
    position: relative;
    top: auto;
  }

  .product-information-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .product-information-main {
    grid-column: 1 / -1;
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .product-detail-hero {
    padding: 112px 0 90px;
  }

  .product-breadcrumb {
    margin-bottom: 22px;
  }

  .product-showroom {
    padding: 12px;
    border-radius: 24px;
  }

  .product-showroom-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-showroom-actions {
    align-self: flex-end;
  }

  .product-showroom-stage {
    min-height: 430px;
    border-radius: 19px;
  }

  .product-main-image {
    width: 94%;
    max-height: 330px;
  }

  .product-showroom-controls {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .product-showroom-controls span {
    padding: 8px;
    font-size: 7px;
  }

  .product-model-status,
  .product-model-button {
    right: 13px;
    bottom: 64px;
  }

  .product-showroom-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-showroom-note p {
    max-width: none;
    text-align: left;
  }

  .product-detail-sidebar {
    padding: 24px;
    border-radius: 24px;
  }

  .product-detail-heading h1 {
    font-size: 42px;
  }

  .product-trust-grid {
    grid-template-columns: 1fr;
  }

  .product-information-section,
  .product-final-cta {
    padding-bottom: 90px;
  }

  .product-information-grid {
    grid-template-columns: 1fr;
  }

  .product-information-main {
    grid-column: auto;
    min-height: 340px;
    padding: 30px 25px;
  }

  .product-information-card {
    min-height: 240px;
  }

  .product-final-panel {
    display: block;
    min-height: 0;
    padding: 42px 25px;
    border-radius: 27px;
  }

  .product-final-panel h2 {
    font-size: 41px;
  }

  .product-final-panel .button {
    width: 100%;
    margin-top: 29px;
  }
}

@media (max-width: 430px) {
  .product-showroom-stage {
    min-height: 350px;
  }

  .product-main-image {
    max-height: 250px;
  }

  .product-showroom-controls span:nth-child(2),
  .product-showroom-controls span:nth-child(3) {
    display: none;
  }

  .product-model-status {
    max-width: calc(100% - 26px);
    font-size: 8px;
  }

  .product-detail-sidebar {
    padding: 20px;
  }

  .product-detail-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-price > div strong {
    font-size: 26px;
  }

  .product-purchase-panel {
    padding: 16px;
  }

  .product-purchase-button {
    font-size: 10px;
  }

  .copy-notification {
    right: 15px;
    bottom: 15px;
    left: 15px;
    text-align: center;
  }
}

/* =========================================================
   ADMIN LOGIN
   ========================================================= */

.admin-login-body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: #05070c;
}

.admin-login-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.admin-login-background::before {
  position: absolute;
  top: -280px;
  left: -220px;
  width: 700px;
  height: 700px;
  content: "";
  border-radius: 50%;
  background: rgba(57, 91, 220, 0.2);
  filter: blur(140px);
}

.admin-login-background::after {
  position: absolute;
  right: -320px;
  bottom: -300px;
  width: 760px;
  height: 760px;
  content: "";
  border-radius: 50%;
  background: rgba(76, 58, 210, 0.12);
  filter: blur(160px);
}

.admin-login-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 68px 68px;
  mask-image:
    radial-gradient(
      circle at center,
      #000,
      transparent 85%
    );
}

.admin-login-glow {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.09);
  filter: blur(120px);
  transform: translate(-50%, -50%);
}

.admin-login-page {
  width: min(100%, 1500px);
  min-height: 100vh;
  margin-inline: auto;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(440px, 0.95fr);
}

.admin-login-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 70px 55px;
  border-right: 1px solid var(--color-border);
  background:
    linear-gradient(
      135deg,
      rgba(13, 19, 32, 0.74),
      rgba(6, 9, 15, 0.42)
    );
}

.admin-login-brand::after {
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 38%;
  content: "";
  background:
    linear-gradient(
      transparent,
      var(--color-primary),
      transparent
    );
  box-shadow:
    0 0 22px rgba(255, 122, 24, 0.6);
}

.admin-login-brand-copy {
  max-width: 670px;
  margin: 90px 0 70px;
}

.admin-login-brand-copy h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.admin-login-brand-copy p {
  max-width: 590px;
  margin: 27px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.admin-login-features {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-login-features article {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
}

.admin-login-features article > span {
  display: block;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.admin-login-features strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.admin-login-features p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.6;
}

.admin-login-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 50px;
}

.admin-login-panel::before {
  position: absolute;
  width: 440px;
  height: 440px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.08);
  filter: blur(100px);
}

.admin-login-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  padding: 38px;
  border: 1px solid var(--color-border-strong);
  border-radius: 29px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 23, 37, 0.95),
      rgba(8, 12, 20, 0.94)
    );
  box-shadow:
    0 50px 140px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(28px);
}

.admin-login-card::before {
  position: absolute;
  top: 0;
  right: 45px;
  left: 45px;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 184, 92, 0.75),
      transparent
    );
}

.admin-login-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--color-primary-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.admin-login-card-header h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.admin-login-card-header p {
  margin: 12px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.admin-login-error {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 13px 14px;
  color: #ff9d9d;
  border: 1px solid rgba(255, 84, 84, 0.18);
  border-radius: 12px;
  background: rgba(255, 65, 65, 0.06);
  font-size: 11px;
  font-weight: 700;
}

.admin-login-error > span {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 65, 65, 0.11);
  font-weight: 900;
}

.admin-login-form {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.admin-login-form label {
  display: grid;
  gap: 9px;
}

.admin-login-form label > span {
  color: var(--color-text-soft);
  font-size: 10px;
  font-weight: 700;
}

.admin-login-form input {
  width: 100%;
  height: 55px;
  padding: 0 16px;
  color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-login-form input::placeholder {
  color: #60697a;
}

.admin-login-form input:focus {
  border-color: rgba(255, 184, 92, 0.4);
  background: rgba(255, 122, 24, 0.045);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.06);
}

.admin-login-form button {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 18px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.27);
  border-radius: 14px;
  background: var(--gradient-primary);
  box-shadow:
    0 20px 48px rgba(255, 122, 24, 0.24);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.admin-login-form button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 62px rgba(255, 122, 24, 0.34);
}

.admin-login-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 21px;
  color: var(--color-text-muted);
  font-size: 9px;
}

.admin-login-security > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow:
    0 0 10px rgba(56, 217, 150, 0.55);
}

@media (max-width: 1100px) {
  .admin-login-page {
    grid-template-columns: 1fr;
  }

  .admin-login-brand {
    min-height: auto;
    padding: 38px 45px 55px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .admin-login-brand-copy {
    margin: 80px 0 55px;
  }

  .admin-login-panel {
    min-height: 720px;
  }
}

@media (max-width: 720px) {
  .admin-login-brand {
    padding: 25px 20px 40px;
  }

  .admin-login-brand-copy {
    margin: 65px 0 42px;
  }

  .admin-login-brand-copy h1 {
    font-size: 47px;
  }

  .admin-login-brand-copy p {
    font-size: 14px;
  }

  .admin-login-features {
    grid-template-columns: 1fr;
  }

  .admin-login-panel {
    min-height: 640px;
    padding: 35px 15px;
  }

  .admin-login-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .admin-login-card-header h2 {
    font-size: 32px;
  }
}

/* =========================================================
   ADMIN DASHBOARD
   ========================================================= */

.admin-body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: #05070c;
}

.admin-body.admin-sidebar-open {
  overflow: hidden;
}

.admin-background {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
}

.admin-background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      to bottom,
      #000,
      transparent 90%
    );
}

.admin-background-glow {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.11);
  filter: blur(150px);
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
}

/* =========================================================
   ADMIN SIDEBAR
   ========================================================= */

.admin-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 286px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-border);
  background:
    linear-gradient(
      180deg,
      rgba(12, 17, 28, 0.98),
      rgba(7, 10, 17, 0.98)
    );
  box-shadow:
    24px 0 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px);
}

.admin-sidebar-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--color-border);
}

.admin-sidebar-brand .brand-symbol {
  width: 41px;
  height: 41px;
}

.admin-sidebar-brand .brand-copy strong {
  font-size: 13px;
}

.admin-sidebar-brand .brand-copy small {
  font-size: 7px;
}

.admin-sidebar-close {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  cursor: pointer;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-sidebar-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 18px 18px 8px;
  padding: 13px;
  border: 1px solid rgba(56, 217, 150, 0.13);
  border-radius: 14px;
  background: rgba(56, 217, 150, 0.035);
}

.admin-sidebar-status-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(56, 217, 150, 0.08);
}

.admin-sidebar-status-icon i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow:
    0 0 12px rgba(56, 217, 150, 0.65);
}

.admin-sidebar-status > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-sidebar-status strong {
  font-size: 10px;
  font-weight: 800;
}

.admin-sidebar-status span {
  color: var(--color-text-muted);
  font-size: 8px;
}

.admin-navigation {
  flex: 1;
  padding: 15px 14px;
  overflow-y: auto;
  scrollbar-width: none;
}

.admin-navigation::-webkit-scrollbar {
  display: none;
}

.admin-navigation-label {
  display: block;
  margin: 19px 12px 8px;
  color: #596174;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.admin-navigation a {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  padding: 0 13px;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 700;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.admin-navigation a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  transform: translateX(2px);
}

.admin-navigation a.active {
  color: #ffffff;
  border-color: rgba(255, 184, 92, 0.17);
  background:
    linear-gradient(
      90deg,
      rgba(255, 122, 24, 0.13),
      rgba(255, 122, 24, 0.035)
    );
}

.admin-navigation a.active::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -1px;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: var(--color-primary-light);
  box-shadow:
    0 0 14px rgba(255, 122, 24, 0.8);
}

.admin-navigation-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: inherit;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-navigation a.active
.admin-navigation-icon {
  color: var(--color-primary-light);
  background: rgba(255, 122, 24, 0.1);
}

.admin-navigation a > i {
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--color-primary-light);
  box-shadow:
    0 0 10px rgba(255, 122, 24, 0.7);
}

.admin-navigation-badge {
  min-width: 22px;
  height: 22px;
  margin-left: auto;
  display: grid;
  place-items: center;
  padding: 0 6px;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 8px;
  font-weight: 800;
}

.admin-sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid var(--color-border);
}

.admin-sidebar-user {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.admin-sidebar-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.78),
      rgba(88, 67, 218, 0.78)
    );
  font-size: 13px;
  font-weight: 800;
}

.admin-sidebar-user > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-sidebar-user strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-sidebar-user span {
  color: var(--color-text-muted);
  font-size: 8px;
}

.admin-logout-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.admin-logout-button:hover {
  color: #ff9999;
  border-color: rgba(255, 90, 90, 0.18);
  background: rgba(255, 70, 70, 0.055);
}

.admin-sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

/* =========================================================
   ADMIN MAIN AREA
   ========================================================= */

.admin-main {
  min-width: 0;
  grid-column: 2;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 34px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(6, 9, 15, 0.76);
  backdrop-filter: blur(24px);
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  cursor: pointer;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-topbar-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary-light);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.admin-topbar h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-view-store,
.admin-primary-action {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-view-store {
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.025);
}

.admin-view-store:hover {
  color: #ffffff;
  border-color: var(--color-border-strong);
  background: rgba(255, 255, 255, 0.045);
}

.admin-primary-action {
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.25);
  background: var(--gradient-primary);
  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.2);
}

.admin-primary-action:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(255, 122, 24, 0.29);
}

.admin-content {
  width: min(calc(100% - 68px), 1540px);
  margin-inline: auto;
  padding: 38px 0 70px;
}

/* =========================================================
   ADMIN WELCOME
   ========================================================= */

.admin-welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.admin-section-label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.admin-welcome h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.admin-welcome h2 span {
  color: var(--color-text-muted);
}

.admin-welcome p {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.admin-live-status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(56, 217, 150, 0.13);
  border-radius: 14px;
  background: rgba(56, 217, 150, 0.035);
}

.admin-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow:
    0 0 14px rgba(56, 217, 150, 0.7);
}

.admin-live-status > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-live-status strong {
  font-size: 10px;
}

.admin-live-status span {
  color: var(--color-text-muted);
  font-size: 8px;
}

/* =========================================================
   ADMIN STATS
   ========================================================= */

.admin-stat-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 22px;
}

.admin-stat-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 24, 38, 0.9),
      rgba(8, 12, 20, 0.88)
    );
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.12);
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal);
}

.admin-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 184, 92, 0.18);
}

.admin-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 27px;
}

.admin-stat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--color-primary-light);
  border: 1px solid rgba(255, 184, 92, 0.16);
  border-radius: 12px;
  background: rgba(255, 122, 24, 0.07);
}

.admin-stat-icon.success {
  color: var(--color-success);
  border-color: rgba(56, 217, 150, 0.14);
  background: rgba(56, 217, 150, 0.055);
}

.admin-stat-icon.featured {
  color: #ffd27d;
  border-color: rgba(255, 194, 87, 0.14);
  background: rgba(255, 194, 87, 0.055);
}

.admin-stat-icon.category {
  color: #b399ff;
  border-color: rgba(155, 123, 255, 0.14);
  background: rgba(155, 123, 255, 0.055);
}

.admin-stat-change {
  padding: 7px 9px;
  color: var(--color-primary-light);
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.07);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-stat-change.success {
  color: var(--color-success);
  background: rgba(56, 217, 150, 0.06);
}

.admin-stat-change.featured {
  color: #ffd27d;
  background: rgba(255, 194, 87, 0.06);
}

.admin-stat-change.category {
  color: #b399ff;
  background: rgba(155, 123, 255, 0.06);
}

.admin-stat-label {
  display: block;
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 700;
}

.admin-stat-value {
  display: block;
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.admin-stat-card p {
  margin: 12px 0 0;
  color: #687184;
  font-size: 9px;
}

/* =========================================================
   DASHBOARD PANELS
   ========================================================= */

.admin-dashboard-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(310px, 0.5fr);
  align-items: start;
  gap: 18px;
}

.admin-products-panel,
.admin-quick-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 24, 38, 0.9),
      rgba(8, 12, 20, 0.88)
    );
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.15);
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 18px;
}

.admin-panel-header h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.admin-panel-header > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 800;
  transition: color var(--transition-fast);
}

.admin-panel-header > a:hover {
  color: var(--color-primary-light);
}

/* =========================================================
   PRODUCT TABLE
   ========================================================= */

.admin-product-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  scrollbar-width: thin;
}

.admin-product-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-product-table th {
  padding: 13px 15px;
  color: #646d7e;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.018);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.admin-product-table td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-soft);
  font-size: 10px;
}

.admin-product-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-product-table tbody tr {
  transition: background var(--transition-fast);
}

.admin-product-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.admin-product-cell {
  display: flex;
  align-items: center;
  gap: 11px;
}

.admin-product-thumb {
  width: 46px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 122, 24, 0.07);
}

.admin-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product-thumb span {
  color: var(--color-primary-light);
  font-size: 12px;
  font-weight: 800;
}

.admin-product-cell > div:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-product-cell strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-product-cell span {
  color: #616a7c;
  font-size: 8px;
}

.admin-category-pill,
.admin-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.admin-category-pill {
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.025);
}

.admin-status-pill {
  border: 1px solid transparent;
}

.admin-status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.admin-status-pill.active {
  color: var(--color-success);
  border-color: rgba(56, 217, 150, 0.12);
  background: rgba(56, 217, 150, 0.05);
}

.admin-status-pill.active i {
  background: var(--color-success);
  box-shadow:
    0 0 8px rgba(56, 217, 150, 0.65);
}

.admin-status-pill.inactive {
  color: #ff9b9b;
  border-color: rgba(255, 84, 84, 0.12);
  background: rgba(255, 84, 84, 0.05);
}

.admin-status-pill.inactive i {
  background: #ff7777;
}

.admin-table-price {
  color: #ffffff;
  font-size: 10px;
}

.admin-table-action {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.admin-table-action:hover {
  color: #ffffff;
  border-color: rgba(255, 184, 92, 0.2);
  background: rgba(255, 122, 24, 0.07);
}

.admin-empty-products {
  padding: 55px 20px;
  color: var(--color-text-muted);
  text-align: center;
  font-size: 11px;
}

/* =========================================================
   QUICK ACTIONS
   ========================================================= */

.admin-quick-actions {
  display: grid;
  gap: 9px;
}

.admin-quick-actions > a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.admin-quick-actions > a:hover {
  transform: translateX(3px);
  border-color: rgba(255, 184, 92, 0.18);
  background: rgba(255, 122, 24, 0.045);
}

.admin-quick-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--color-primary-light);
  border-radius: 11px;
  background: rgba(255, 122, 24, 0.07);
}

.admin-quick-actions > a > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-quick-actions strong {
  color: #ffffff;
  font-size: 10px;
}

.admin-quick-actions span {
  color: var(--color-text-muted);
  font-size: 8px;
}

.admin-quick-actions > a > i {
  color: #666f80;
  font-size: 14px;
  font-style: normal;
}

.admin-system-card {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(56, 217, 150, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      rgba(56, 217, 150, 0.055),
      rgba(255, 255, 255, 0.012)
    );
}

.admin-system-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.admin-system-card-top span {
  color: var(--color-success);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.admin-system-card-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow:
    0 0 11px rgba(56, 217, 150, 0.65);
}

.admin-system-card > strong {
  display: block;
  font-size: 12px;
}

.admin-system-card > p {
  margin: 8px 0 15px;
  color: var(--color-text-muted);
  font-size: 9px;
  line-height: 1.6;
}

.admin-system-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.admin-system-progress span {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #2fc887,
      #5de5ad
    );
  box-shadow:
    0 0 14px rgba(56, 217, 150, 0.35);
}

.admin-system-card small {
  display: block;
  margin-top: 8px;
  color: #6a7485;
  font-size: 7px;
}

/* =========================================================
   ADMIN RESPONSIVE
   ========================================================= */

@media (max-width: 1250px) {
  .admin-stat-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-quick-panel {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(300px, 0.45fr);
    gap: 18px;
  }

  .admin-quick-panel
  .admin-panel-header {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .admin-system-card {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-main {
    grid-column: 1;
  }

  .admin-sidebar {
    width: 286px;
    transform: translateX(-105%);
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-sidebar-close,
  .admin-menu-button {
    display: grid;
  }

  .admin-sidebar-overlay.active {
    display: block;
  }

  .admin-content {
    width: min(calc(100% - 40px), 1540px);
  }
}

@media (max-width: 720px) {
  .admin-topbar {
    min-height: 78px;
    padding: 0 18px;
  }

  .admin-topbar-actions {
    gap: 7px;
  }

  .admin-view-store span,
  .admin-primary-action span {
    display: none;
  }

  .admin-view-store,
  .admin-primary-action {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .admin-content {
    width: min(calc(100% - 28px), 1540px);
    padding-top: 26px;
  }

  .admin-welcome {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-live-status {
    width: 100%;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-quick-panel {
    grid-template-columns: 1fr;
  }

  .admin-quick-panel
  .admin-panel-header {
    grid-column: auto;
  }

  .admin-products-panel,
  .admin-quick-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .admin-welcome h2 {
    font-size: 38px;
  }
}

/* =========================================================
   ADMIN PRODUCTS PAGE
   ========================================================= */

.admin-products-page,
.admin-product-form-page {
  width: min(calc(100% - 52px), 1540px);
  margin-inline: auto;
  padding: 46px 0 80px;
}

.admin-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}

.admin-products-header h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.admin-products-header p {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.admin-products-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   ADMIN MESSAGES
   ========================================================= */

.admin-message {
  display: flex;
  align-items: center;
  min-height: 50px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
}

.admin-message.success {
  color: #74e7b1;
  border-color: rgba(56, 217, 150, 0.16);
  background: rgba(56, 217, 150, 0.055);
}

.admin-message.error {
  color: #ff9b9b;
  border-color: rgba(255, 80, 80, 0.16);
  background: rgba(255, 80, 80, 0.055);
}

/* =========================================================
   ADMIN PRODUCT FILTERS
   ========================================================= */

.admin-product-filters {
  display: grid;
  grid-template-columns:
    minmax(260px, 1fr)
    minmax(190px, 0.34fr)
    minmax(170px, 0.28fr)
    auto;
  gap: 10px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 24, 38, 0.9),
      rgba(8, 12, 20, 0.88)
    );
}

.admin-product-filters input,
.admin-product-filters select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-product-filters input::placeholder {
  color: #677083;
}

.admin-product-filters select {
  appearance: none;
  cursor: pointer;
}

.admin-product-filters select option {
  color: #ffffff;
  background: #0b1019;
}

.admin-product-filters input:focus,
.admin-product-filters select:focus {
  border-color: rgba(255, 184, 92, 0.35);
  background: rgba(255, 122, 24, 0.04);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.055);
}

.admin-product-filters button {
  min-width: 118px;
  height: 50px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.24);
  border-radius: 13px;
  background: var(--gradient-primary);
  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.19);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-product-filters button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(255, 122, 24, 0.28);
}

/* =========================================================
   ADMIN PRODUCT LIST
   ========================================================= */

.admin-products-list {
  display: grid;
  gap: 12px;
}

.admin-product-row {
  min-width: 0;
  display: grid;
  grid-template-columns:
    88px
    minmax(240px, 1.4fr)
    minmax(130px, 0.4fr)
    minmax(110px, 0.32fr)
    auto;
  align-items: center;
  gap: 20px;
  padding: 17px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 24, 38, 0.9),
      rgba(8, 12, 20, 0.88)
    );
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.11);
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.admin-product-row:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 92, 0.18);
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.22);
}

.admin-product-row-image {
  width: 88px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background:
    radial-gradient(
      circle,
      rgba(255, 122, 24, 0.11),
      transparent 70%
    ),
    #0a0f18;
}

.admin-product-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product-row-image span {
  color: var(--color-primary-light);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.admin-product-row-main {
  min-width: 0;
}

.admin-product-row-main > span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary-light);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-product-row-main h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.admin-product-row-main p {
  max-width: 520px;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-product-row-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-product-row-price span {
  color: var(--color-text-muted);
  font-size: 8px;
}

.admin-product-row-price strong {
  font-size: 13px;
  font-weight: 800;
}

.admin-product-row-status {
  display: flex;
  align-items: center;
}

.admin-product-row-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.admin-product-row-actions a,
.admin-product-row-actions button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  cursor: pointer;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
  font-weight: 800;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.admin-product-row-actions a:hover,
.admin-product-row-actions button:hover {
  color: #ffffff;
  border-color: rgba(255, 184, 92, 0.2);
  background: rgba(255, 122, 24, 0.07);
}

.admin-product-row-actions button.danger {
  color: #ff9595;
}

.admin-product-row-actions button.danger:hover {
  color: #ffb4b4;
  border-color: rgba(255, 80, 80, 0.16);
  background: rgba(255, 80, 80, 0.055);
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.admin-products-empty {
  min-height: 390px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.07),
      transparent 48%
    ),
    rgba(255, 255, 255, 0.016);
}

.admin-products-empty h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.admin-products-empty p {
  margin: 12px 0 22px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.admin-products-empty a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #ffffff;
  border-radius: 12px;
  background: var(--gradient-primary);
  font-size: 10px;
  font-weight: 800;
}

/* =========================================================
   ADMIN PRODUCT FORM
   ========================================================= */

.admin-product-form {
  display: grid;
  gap: 18px;
}

.admin-form-panel {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 24, 38, 0.9),
      rgba(8, 12, 20, 0.88)
    );
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.12);
}

.admin-form-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-border);
}

.admin-form-panel-header span {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.admin-form-panel-header strong {
  color: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.admin-form-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.admin-form-field {
  display: grid;
  gap: 9px;
}

.admin-form-wide {
  grid-column: 1 / -1;
}

.admin-form-field > span {
  color: var(--color-text-soft);
  font-size: 9px;
  font-weight: 700;
}

.admin-form-field input,
.admin-form-field select,
.admin-form-field textarea {
  width: 100%;
  color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-form-field input,
.admin-form-field select {
  height: 50px;
  padding: 0 14px;
}

.admin-form-field textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
  line-height: 1.7;
}

.admin-form-field input::placeholder,
.admin-form-field textarea::placeholder {
  color: #626b7d;
}

.admin-form-field select {
  appearance: none;
}

.admin-form-field select option {
  color: #ffffff;
  background: #0b1019;
}

.admin-form-field input:focus,
.admin-form-field select:focus,
.admin-form-field textarea:focus {
  border-color: rgba(255, 184, 92, 0.36);
  background: rgba(255, 122, 24, 0.04);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.055);
}

.admin-form-switches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-form-switches label {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-form-switches input {
  width: 15px;
  height: 15px;
  accent-color: var(--color-primary);
}

.admin-form-switches span {
  color: var(--color-text-soft);
  font-size: 9px;
  font-weight: 700;
}

.admin-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

.admin-form-actions a,
.admin-form-actions button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 13px;
  font-size: 10px;
  font-weight: 800;
}

.admin-form-actions a {
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
}

.admin-form-actions button {
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.24);
  background: var(--gradient-primary);
  box-shadow:
    0 16px 38px rgba(255, 122, 24, 0.21);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-form-actions button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(255, 122, 24, 0.3);
}

/* =========================================================
   ADMIN PRODUCTS RESPONSIVE
   ========================================================= */

@media (max-width: 1150px) {
  .admin-product-row {
    grid-template-columns:
      78px
      minmax(220px, 1fr)
      120px
      auto;
  }

  .admin-product-row-status {
    display: none;
  }
}

@media (max-width: 900px) {
  .admin-products-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-product-filters {
    grid-template-columns: 1fr 1fr;
  }

  .admin-product-filters button {
    grid-column: 1 / -1;
  }

  .admin-product-row {
    grid-template-columns: 72px 1fr auto;
  }

  .admin-product-row-price {
    display: none;
  }

  .admin-product-row-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-product-row-actions form {
    width: 100%;
  }

  .admin-product-row-actions a,
  .admin-product-row-actions button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .admin-products-page,
  .admin-product-form-page {
    width: min(calc(100% - 28px), 1540px);
    padding-top: 28px;
  }

  .admin-products-header h1 {
    font-size: 42px;
  }

  .admin-products-header-actions {
    width: 100%;
  }

  .admin-products-header-actions a {
    flex: 1;
    justify-content: center;
  }

  .admin-product-filters {
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .admin-product-filters button {
    grid-column: auto;
  }

  .admin-product-row {
    grid-template-columns: 64px 1fr;
    gap: 13px;
  }

  .admin-product-row-image {
    width: 64px;
    height: 56px;
  }

  .admin-product-row-main p {
    white-space: normal;
  }

  .admin-product-row-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-form-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-wide {
    grid-column: auto;
  }

  .admin-form-switches {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-form-switches label {
    width: 100%;
  }

  .admin-form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .admin-form-actions a,
  .admin-form-actions button {
    width: 100%;
  }
}

/* =========================================================
   ADMIN CATEGORIES PAGE
   ========================================================= */

.admin-category-page {
  width: min(calc(100% - 52px), 1540px);
  margin-inline: auto;
  padding: 46px 0 80px;
}

.admin-category-layout {
  display: grid;
  grid-template-columns:
    minmax(330px, 0.38fr)
    minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.admin-category-create,
.admin-category-card {
  border: 1px solid var(--color-border);
  background:
    linear-gradient(
      145deg,
      rgba(18, 24, 38, 0.92),
      rgba(8, 12, 20, 0.9)
    );
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.13);
}

.admin-category-create {
  position: sticky;
  top: 24px;
  padding: 22px;
  border-radius: 22px;
}

.admin-category-form,
.admin-category-edit-form {
  display: grid;
  gap: 15px;
}

.admin-category-checkbox {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-category-checkbox input {
  width: 15px;
  height: 15px;
  accent-color: var(--color-primary);
}

.admin-category-checkbox span {
  color: var(--color-text-soft);
  font-size: 9px;
  font-weight: 700;
}

.admin-category-create-button,
.admin-category-save-button {
  min-height: 48px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.24);
  border-radius: 13px;
  background: var(--gradient-primary);
  box-shadow:
    0 16px 38px rgba(255, 122, 24, 0.2);
  font-size: 10px;
  font-weight: 800;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.admin-category-create-button:hover,
.admin-category-save-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(255, 122, 24, 0.29);
}

.admin-category-list {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.admin-category-card {
  min-width: 0;
  padding: 20px;
  border-radius: 20px;
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.admin-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 184, 92, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22);
}

.admin-category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-category-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 184, 92, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.13),
      rgba(83, 64, 210, 0.08)
    );
}

.admin-category-card-icon span {
  color: var(--color-primary-light);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.admin-category-inline-fields {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  align-items: end;
  gap: 12px;
}

.admin-category-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.admin-category-card-meta span {
  color: var(--color-text-muted);
  font-size: 8px;
  font-weight: 700;
}

.admin-category-save-button {
  width: 100%;
}

.admin-category-card-actions {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.admin-category-card-actions form {
  width: 100%;
}

.admin-category-card-actions button {
  width: 100%;
  min-height: 38px;
  cursor: pointer;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
  font-weight: 800;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.admin-category-card-actions button:hover {
  color: #ffffff;
  border-color: rgba(255, 184, 92, 0.2);
  background: rgba(255, 122, 24, 0.07);
}

.admin-category-card-actions button.danger {
  color: #ff9696;
}

.admin-category-card-actions button.danger:hover {
  color: #ffb2b2;
  border-color: rgba(255, 80, 80, 0.16);
  background: rgba(255, 80, 80, 0.055);
}

@media (max-width: 1120px) {
  .admin-category-layout {
    grid-template-columns: 1fr;
  }

  .admin-category-create {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .admin-category-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .admin-category-page {
    width: min(calc(100% - 28px), 1540px);
    padding-top: 28px;
  }

  .admin-category-create,
  .admin-category-card {
    padding: 17px;
    border-radius: 18px;
  }

  .admin-category-inline-fields {
    grid-template-columns: 1fr;
  }

  .admin-category-checkbox {
    width: 100%;
  }

  .admin-category-card-actions {
    grid-template-columns: 1fr;
  }
}

.admin-form-help {
  margin-top: -2px;
  color: var(--color-text-muted);
  font-size: 8px;
  line-height: 1.6;
}

/* =========================================================
   REAL 3D MODEL VIEWER
   ========================================================= */

.product-model-viewer {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--color-primary);
  --progress-bar-height: 3px;
}

.product-model-viewer::part(default-progress-bar) {
  height: 3px;
  background: var(--gradient-primary);
}

.product-model-viewer::part(default-ar-button) {
  display: none;
}

.product-model-loading {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--color-text-soft);
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.12),
      transparent 48%
    ),
    #080c14;
}

.product-model-loading span {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--color-primary-light);
  border-radius: 50%;
  animation: productModelSpin 850ms linear infinite;
}

.product-model-loading strong {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-media-placeholder {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.product-media-placeholder span {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.product-media-placeholder strong {
  color: var(--color-text);
  font-family: "Manrope", sans-serif;
  font-size: 104px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.product-media-placeholder small {
  color: var(--color-primary-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

@keyframes productModelSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero-product-image {
  position: relative;
  z-index: 3;
  width: 92%;
  height: 340px;
  object-fit: contain;
  filter:
    drop-shadow(
      0 35px 45px rgba(0, 0, 0, 0.5)
    );
}

.hero-product-empty {
  min-height: 460px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-product-empty span {
  color: var(--color-primary-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-product-empty strong {
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.hero-product-empty p {
  max-width: 320px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.walkable-map-preview {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 35px;
}

.walkable-map-poster {
  width: min(100%, 560px);
  padding: 36px;
  text-align: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 24, 39, 0.94),
      rgba(8, 12, 20, 0.92)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.walkable-map-poster > span {
  color: var(--color-primary-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.walkable-map-poster strong {
  display: block;
  margin-top: 13px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.walkable-map-poster p {
  margin: 14px 0 24px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.walkable-map-poster button {
  min-height: 48px;
  padding: 0 18px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.24);
  border-radius: 13px;
  background: var(--gradient-primary);
  box-shadow:
    0 18px 44px rgba(255, 122, 24, 0.24);
  font-size: 10px;
  font-weight: 800;
}

/* WALKABLE MODAL VISIBILITY FIX */

.map-viewer-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;

  width: 100vw !important;
  height: 100vh !important;

  display: none !important;
  overflow: hidden !important;

  background: #05070c !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.map-viewer-modal.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.map-viewer-canvas {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;

  width: 100% !important;
  height: 100% !important;
}

.map-viewer-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.map-viewer-loading {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;

  display: grid !important;
  place-content: center !important;
  justify-items: center !important;

  color: #ffffff;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.15),
      transparent 50%
    ),
    #05070c;
}

.map-viewer-loading.hidden {
  display: none !important;
}

.map-viewer-start {
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;

  display: grid !important;
  place-content: center !important;
  justify-items: center !important;

  padding: 30px;
  text-align: center;

  color: #ffffff;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.13),
      transparent 50%
    ),
    rgba(5, 7, 12, 0.76);

  backdrop-filter: blur(12px);
}

.map-viewer-start.hidden {
  display: none !important;
}

.map-viewer-start button {
  min-height: 52px;
  padding: 0 22px;

  cursor: pointer;
  color: #ffffff;

  border: 1px solid rgba(255, 184, 92, 0.28);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #ff9d45,
      #ff7a1a
    );

  font-size: 11px;
  font-weight: 800;
}

.map-viewer-hud {
  position: absolute !important;
  bottom: 22px !important;
  left: 22px !important;
  z-index: 7 !important;
}

.map-viewer-close {
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  z-index: 8 !important;

  width: 48px;
  height: 48px;

  cursor: pointer;
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;

  background: rgba(7, 10, 17, 0.82);
  backdrop-filter: blur(14px);

  font-size: 25px;
}

.admin-form-field input[type="file"] {
  height: auto;
  min-height: 56px;
  padding: 14px;
  cursor: pointer;
}

.admin-form-field input[type="file"]::file-selector-button {
  height: 34px;
  margin-right: 12px;
  padding: 0 13px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.95),
      rgba(84, 66, 230, 0.95)
    );
  font-size: 9px;
  font-weight: 800;
}

.admin-body {
  min-height: 100vh;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 122, 24, 0.16),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #070a12,
      #0b1020 48%,
      #05070c
    );
}

.admin-body .admin-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 70px;
}

.admin-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-page-head h1 {
  margin: 8px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.admin-page-head p {
  max-width: 680px;
  margin: 0;
  color: #93a0b8;
  font-size: 14px;
  line-height: 1.7;
}

.admin-eyebrow {
  color: #ffb86b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.admin-form-card {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.94),
      rgba(7, 10, 17, 0.92)
    );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.admin-form-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.admin-form-card-head span {
  color: #ffb86b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-form-card-head h2 {
  margin: 7px 0 0;
  font-size: 22px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-form-wide {
  grid-column: 1 / -1;
}

.admin-form-field {
  display: grid;
  gap: 8px;
}

.admin-form-field span {
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 800;
}

.admin-form-field input,
.admin-form-field textarea {
  width: 100%;
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 15px;
  background: rgba(5, 8, 15, 0.62);
  outline: none;
  font-size: 13px;
}

.admin-form-field input {
  min-height: 52px;
  padding: 0 15px;
}

.admin-form-field textarea {
  resize: vertical;
  padding: 15px;
  line-height: 1.7;
}

.admin-form-field input:focus,
.admin-form-field textarea:focus {
  border-color: rgba(255, 184, 92, 0.58);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.12);
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.admin-submit-button,
.admin-cancel-link,
.admin-primary-link,
.admin-secondary-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.admin-submit-button,
.admin-primary-link {
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.28);
  background:
    linear-gradient(
      135deg,
      #ff9d45,
      #ff7a1a
    );
}

.admin-submit-button {
  cursor: pointer;
}

.admin-secondary-link,
.admin-cancel-link {
  color: #dbe4ff;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.admin-alert {
  margin-bottom: 18px;
  padding: 15px 18px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 800;
}

.admin-alert-success {
  color: #8fffd0;
  border: 1px solid rgba(47, 255, 171, 0.18);
  background: rgba(47, 255, 171, 0.08);
}

@media (max-width: 760px) {
  .admin-body .admin-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 26px;
  }

  .admin-page-head {
    flex-direction: column;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-actions {
    flex-direction: column-reverse;
  }

  .admin-submit-button,
  .admin-cancel-link {
    width: 100%;
  }
}

.site-logo-image {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.site-logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--color-primary, #ff7a1a),
      #ff7a1a
    );
  font-size: 18px;
  font-weight: 900;
}

.header-ticket-button {
  gap: 12px;
}

.header-ticket-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.site-brand {
  gap: 12px;
}

.site-brand-text {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.site-brand-text strong {
  display: block;
  max-width: 220px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-brand-text span {
  display: block;
  color: #8b98b3;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.site-header {
  left: 0;
  right: 0;
}

.header-shell {
  width: min(1720px, calc(100% - 72px)) !important;
  margin: 0 auto !important;
}

.hero {
  min-height: calc(100vh - 96px);
  padding: 140px 0 70px !important;
}

.hero .container,
.container {
  width: min(1720px, calc(100% - 72px)) !important;
  margin: 0 auto !important;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(520px, 0.95fr) minmax(620px, 1.05fr) !important;
  align-items: center !important;
  gap: 90px !important;
}

.hero-content {
  max-width: 760px !important;
}

.hero-title,
.hero h1 {
  max-width: 760px !important;
  font-size: clamp(72px, 6.4vw, 132px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.08em !important;

  color: transparent !important;
  background: linear-gradient(
    158deg,
    #fffaf2 0%,
    #ffe4a8 22%,
    #ffb347 48%,
    #e87820 72%,
    #c05800 100%
  ) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;

  filter:
    drop-shadow(0 0 38px rgba(255, 140, 30, 0.30))
    drop-shadow(0 12px 48px rgba(0, 0, 0, 0.45)) !important;
}

.hero-description,
.hero-content p {
  max-width: 620px !important;
  font-size: 19px !important;
  line-height: 1.85 !important;
  color: rgba(255, 240, 215, 0.62) !important;
  letter-spacing: 0.01em !important;
}

.hero-product-card {
  width: 100% !important;
  max-width: 720px !important;
  margin-left: auto !important;
  transform: none !important;
}

.hero-product-image {
  height: 360px !important;
  width: 94% !important;
  object-fit: contain !important;
}

.site-brand {
  min-width: 230px;
}

.site-brand-text strong {
  max-width: 260px;
}

.header-actions,
.header-nav {
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 46px !important;
  }

  .hero-product-card {
    margin: 0 !important;
    max-width: 100% !important;
  }

  .hero-title,
  .hero h1 {
    font-size: clamp(56px, 12vw, 92px) !important;
  }
}

@media (max-width: 760px) {
  .header-shell,
  .hero .container,
  .container {
    width: min(100% - 32px, 1720px) !important;
  }

  .hero {
    padding-top: 118px !important;
  }

  .hero-title,
  .hero h1 {
    font-size: clamp(46px, 14vw, 68px) !important;
  }

  .hero-description,
  .hero-content p {
    font-size: 15px !important;
  }
}

.site-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  min-width: 260px;
}

.site-logo-mark,
.site-logo-image {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}

.site-brand-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 4px !important;
  line-height: 1 !important;
  min-width: 0;
}

.site-brand-text strong {
  display: block !important;
  max-width: 230px;
  color: #ffffff;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-brand-text span {
  display: block !important;
  color: #8b98b3;
  font-size: 8px !important;
  font-weight: 900 !important;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.admin-table-card {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.94),
      rgba(7, 10, 17, 0.92)
    );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.admin-table-head {
  margin-bottom: 20px;
}

.admin-table-head span {
  color: #ffb86b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-table-head h2 {
  margin: 7px 0 0;
  font-size: 24px;
}

.admin-empty-state {
  padding: 30px;
  color: #93a0b8;
  border: 1px dashed rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  text-align: center;
}

.admin-ticket-list {
  display: grid;
  gap: 14px;
}

.admin-ticket-card {
  display: grid;
  grid-template-columns: 1.1fr 0.5fr 0.9fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-ticket-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-ticket-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #ffb86b;
  background: rgba(255, 122, 24, 0.13);
  font-weight: 900;
}

.admin-ticket-main strong,
.admin-ticket-product {
  display: block;
}

.admin-ticket-product {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.admin-ticket-main strong {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 12px;
}

.admin-ticket-main small {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 10px;
}

.admin-ticket-meta span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.ticket-status {
  display: inline-flex;
  margin-top: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}

.ticket-status-channel_created {
  color: #ffcf91;
  background: rgba(59, 130, 246, 0.14);
}

.ticket-status-completed {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
}

.ticket-status-cancelled {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.14);
}

.admin-ticket-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-ticket-actions a,
.admin-ticket-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}

.admin-ticket-actions a {
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.26);
  background: rgba(255, 122, 24, 0.13);
}

.admin-ticket-actions form {
  display: flex;
  gap: 8px;
}

.admin-ticket-actions select {
  min-height: 38px;
  padding: 0 10px;
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background: rgba(5, 8, 15, 0.72);
  font-size: 10px;
  font-weight: 800;
}

.admin-ticket-actions button {
  color: #ffffff;
  border: 1px solid rgba(255, 184, 92, 0.26);
  background:
    linear-gradient(
      135deg,
      #ff9d45,
      #ff7a1a
    );
}

@media (max-width: 940px) {
  .admin-ticket-card {
    grid-template-columns: 1fr;
  }

  .admin-ticket-actions {
    justify-content: flex-start;
  }
}

/* =========================================================
   TRAXON ORANGE PREMIUM THEME OVERRIDE
   ========================================================= */

:root {
  --color-primary: #ff7a1a;
  --color-primary-light: #ffb15c;
  --color-primary-dark: #c84f00;

  --color-accent: #ff9f1c;
  --color-accent-soft: rgba(255, 122, 26, 0.14);

  --color-bg: #070604;
  --color-bg-soft: #110c08;
  --color-surface: rgba(18, 12, 7, 0.88);
  --color-surface-strong: rgba(28, 17, 9, 0.96);

  --color-border: rgba(255, 157, 66, 0.14);
  --color-border-strong: rgba(255, 157, 66, 0.26);

  --color-text: #fff8f0;
  --color-text-muted: #b69b82;

  --gradient-primary:
    linear-gradient(
      135deg,
      #ffb15c 0%,
      #ff7a1a 45%,
      #e85d04 100%
    );

  --gradient-primary-soft:
    linear-gradient(
      135deg,
      rgba(255, 122, 26, 0.18),
      rgba(255, 159, 28, 0.08)
    );

  --shadow-primary:
    0 22px 55px rgba(255, 122, 26, 0.24);
}

/* BODY / BACKGROUND */

body {
  color: var(--color-text) !important;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 122, 26, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 84% 12%,
      rgba(255, 174, 89, 0.1),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #060504 0%,
      #100904 46%,
      #050403 100%
    ) !important;
}

.site-background {
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 122, 26, 0.2),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 183, 77, 0.12),
      transparent 32%
    ) !important;
}

.background-orb-one {
  background:
    radial-gradient(
      circle,
      rgba(255, 122, 26, 0.3),
      transparent 68%
    ) !important;
}

.background-orb-two {
  background:
    radial-gradient(
      circle,
      rgba(255, 183, 77, 0.18),
      transparent 68%
    ) !important;
}

.background-grid {
  opacity: 0.22 !important;
  background-image:
    linear-gradient(
      rgba(255, 122, 26, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 122, 26, 0.08) 1px,
      transparent 1px
    ) !important;
}

/* HEADER */

.site-header {
  background:
    linear-gradient(
      180deg,
      rgba(7, 5, 3, 0.82),
      rgba(7, 5, 3, 0.46)
    ) !important;
}

.header-shell,
.header-nav {
  border-color: rgba(255, 157, 66, 0.13) !important;
  background:
    rgba(13, 9, 6, 0.62) !important;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28) !important;
}

.site-logo-mark,
.site-logo-image {
  border-color: rgba(255, 174, 89, 0.28) !important;
  background:
    linear-gradient(
      135deg,
      #ffb15c,
      #ff7a1a
    ) !important;
  box-shadow:
    0 14px 35px rgba(255, 122, 26, 0.22) !important;
}

.site-brand-text strong {
  color: #fff8f0 !important;
}

.site-brand-text span {
  color: #c89b72 !important;
}

.header-nav a,
.header-products-link {
  color: #b69b82 !important;
}

.header-nav a:hover,
.header-nav a.active {
  color: #fff8f0 !important;
  background:
    rgba(255, 122, 26, 0.12) !important;
}

.header-ticket-button,
.btn-primary,
.hero-primary-button,
.product-buy-button,
.admin-submit-button,
.admin-primary-link {
  color: #170b02 !important;
  border-color: rgba(255, 183, 77, 0.42) !important;
  background: var(--gradient-primary) !important;
  box-shadow: var(--shadow-primary) !important;
}

.header-ticket-button:hover,
.btn-primary:hover,
.hero-primary-button:hover,
.product-buy-button:hover,
.admin-submit-button:hover,
.admin-primary-link:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* HERO */

.hero-badge,
.section-eyebrow,
.admin-eyebrow,
.product-detail-eyebrow {
  color: #ffb15c !important;
  border-color: rgba(255, 157, 66, 0.22) !important;
  background:
    rgba(255, 122, 26, 0.09) !important;
}

.hero-badge::before {
  background: #39ff9d !important;
  box-shadow:
    0 0 18px rgba(57, 255, 157, 0.65) !important;
}

.hero-title span,
.hero h1 span,
.gradient-text {
  color: transparent !important;
  background:
    linear-gradient(
      135deg,
      #fff8f0 0%,
      #ffb15c 45%,
      #ff7a1a 100%
    ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.hero-description,
.hero-content p,
.section-description {
  color: #b69b82 !important;
}

.hero-secondary-button,
.btn-secondary,
.admin-secondary-link,
.admin-cancel-link {
  color: #ffe4c7 !important;
  border-color: rgba(255, 157, 66, 0.18) !important;
  background:
    rgba(255, 122, 26, 0.055) !important;
}

.hero-secondary-button:hover,
.btn-secondary:hover,
.admin-secondary-link:hover,
.admin-cancel-link:hover {
  border-color: rgba(255, 157, 66, 0.35) !important;
  background:
    rgba(255, 122, 26, 0.11) !important;
}

/* CARDS / PRODUCT */

.hero-product-card,
.product-card,
.product-detail-card,
.product-showroom-card,
.product-info-card,
.admin-form-card,
.admin-table-card,
.admin-ticket-card {
  border-color: rgba(255, 157, 66, 0.14) !important;
  background:
    linear-gradient(
      145deg,
      rgba(23, 14, 8, 0.94),
      rgba(9, 6, 4, 0.94)
    ) !important;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.34) !important;
}

.hero-product-card::before,
.product-showroom-stage::before,
.product-card::before {
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 26, 0.18),
      transparent 58%
    ) !important;
}

.product-card:hover,
.admin-ticket-card:hover {
  border-color: rgba(255, 157, 66, 0.34) !important;
  box-shadow:
    0 34px 90px rgba(255, 122, 26, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.34) !important;
}

.product-price,
.hero-product-price,
.price-value {
  color: #ffb15c !important;
}

.product-tag,
.product-badge,
.featured-badge,
.ticket-status-channel_created {
  color: #ffd8ae !important;
  border-color: rgba(255, 157, 66, 0.18) !important;
  background:
    rgba(255, 122, 26, 0.12) !important;
}

/* FORMS */

input,
textarea,
select {
  color: #fff8f0 !important;
  border-color: rgba(255, 157, 66, 0.16) !important;
  background:
    rgba(12, 8, 5, 0.72) !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 157, 66, 0.62) !important;
  box-shadow:
    0 0 0 4px rgba(255, 122, 26, 0.13) !important;
}

.admin-form-field span,
label span {
  color: #ffd8ae !important;
}

.admin-form-help,
small {
  color: #a98768 !important;
}

/* ADMIN */

.admin-body {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 122, 26, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #070604,
      #110a05 48%,
      #050403
    ) !important;
}

.admin-sidebar,
.admin-navigation,
.admin-shell-sidebar {
  border-color: rgba(255, 157, 66, 0.14) !important;
  background:
    linear-gradient(
      180deg,
      rgba(15, 9, 5, 0.98),
      rgba(7, 5, 3, 0.98)
    ) !important;
}

.admin-navigation a,
.admin-sidebar a {
  color: #b69b82 !important;
}

.admin-navigation a.active,
.admin-sidebar a.active {
  color: #fff8f0 !important;
  border-color: rgba(255, 157, 66, 0.28) !important;
  background:
    rgba(255, 122, 26, 0.14) !important;
}

.admin-navigation-icon,
.admin-ticket-icon {
  color: #ffb15c !important;
  background:
    rgba(255, 122, 26, 0.13) !important;
}

/* TABLE / STATUS */

.ticket-status-completed {
  color: #9dffbd !important;
  background:
    rgba(34, 197, 94, 0.14) !important;
}

.ticket-status-cancelled {
  color: #ff9d9d !important;
  background:
    rgba(239, 68, 68, 0.14) !important;
}

.admin-alert-success {
  color: #9dffbd !important;
  border-color: rgba(34, 197, 94, 0.18) !important;
  background:
    rgba(34, 197, 94, 0.08) !important;
}

/* MODEL / MAP VIEWER */

.product-model-loading,
.walkable-map-poster,
.map-viewer-start,
.map-viewer-loading {
  border-color: rgba(255, 157, 66, 0.18) !important;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 26, 0.14),
      transparent 52%
    ),
    rgba(8, 5, 3, 0.92) !important;
}

.walkable-map-poster button,
.map-viewer-start button {
  color: #170b02 !important;
  background: var(--gradient-primary) !important;
  border-color: rgba(255, 183, 77, 0.38) !important;
}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #070604;
}

::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      180deg,
      #ffb15c,
      #ff7a1a
    );
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      #ffc078,
      #ff8a2a
    );
}

.site-logo-image {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* =========================================================
   HERO ORANGE MOTION UPGRADE
   ========================================================= */

.hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.hero .container {
  position: relative !important;
  z-index: 2 !important;
}

.hero-grid {
  position: relative !important;
}

.hero-content,
.hero-visual,
.hero-product-card {
  position: relative !important;
  z-index: 3 !important;
}

.hero-motion-layer {
  position: absolute;
  inset: -120px -140px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-motion-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(
      rgba(255, 122, 26, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 122, 26, 0.08) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
  mask-image:
    radial-gradient(
      circle at 32% 42%,
      black 0%,
      transparent 64%
    );
  animation: heroGridMove 18s linear infinite;
}

.hero-motion-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 44%,
      rgba(255, 122, 26, 0.28),
      transparent 24%
    ),
    radial-gradient(
      circle at 58% 34%,
      rgba(255, 184, 92, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 84% 58%,
      rgba(255, 96, 0, 0.14),
      transparent 28%
    );
  filter: blur(10px);
  animation: heroAuraPulse 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.62;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 160px;
  background:
    radial-gradient(
      circle,
      rgba(255, 122, 26, 0.38),
      transparent 68%
    );
  animation: heroGlowFloatOne 8s ease-in-out infinite;
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  right: 18%;
  top: 12%;
  background:
    radial-gradient(
      circle,
      rgba(255, 184, 92, 0.22),
      transparent 70%
    );
  animation: heroGlowFloatTwo 10s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  left: 54%;
  top: 18%;
  border-radius: 999px;
  border: 1px solid rgba(255, 157, 66, 0.16);
  box-shadow:
    inset 0 0 55px rgba(255, 122, 26, 0.08),
    0 0 80px rgba(255, 122, 26, 0.08);
  animation: heroRingRotate 18s linear infinite;
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-ring::before {
  inset: 36px;
  border: 1px dashed rgba(255, 184, 92, 0.18);
}

.hero-ring::after {
  width: 12px;
  height: 12px;
  right: 42px;
  top: 42px;
  background: #ffb15c;
  box-shadow:
    0 0 18px rgba(255, 177, 92, 0.9);
}

.hero-scan-line {
  position: absolute;
  width: 44%;
  height: 1px;
  left: 4%;
  top: 50%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 184, 92, 0.72),
      transparent
    );
  opacity: 0;
  animation: heroScan 5.5s ease-in-out infinite;
}

.hero-particle {
  position: absolute;
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 999px;
  background: #ffb15c;
  box-shadow:
    0 0 16px rgba(255, 177, 92, 0.85);
  opacity: 0.7;
}

.hero-particle-1 {
  left: 8%;
  top: 25%;
  animation: heroParticleFloat 7s ease-in-out infinite;
}

.hero-particle-2 {
  left: 32%;
  top: 14%;
  width: 5px;
  height: 5px;
  animation: heroParticleFloat 8.5s ease-in-out infinite reverse;
}

.hero-particle-3 {
  left: 46%;
  top: 72%;
  width: 6px;
  height: 6px;
  animation: heroParticleFloat 9s ease-in-out infinite;
}

.hero-particle-4 {
  right: 17%;
  top: 21%;
  width: 8px;
  height: 8px;
  animation: heroParticleFloat 7.8s ease-in-out infinite reverse;
}

.hero-particle-5 {
  right: 8%;
  bottom: 18%;
  width: 5px;
  height: 5px;
  animation: heroParticleFloat 10s ease-in-out infinite;
}

/* Başlığa premium ışık efekti */
.hero-title,
.hero h1 {
  position: relative !important;
  text-shadow:
    0 18px 65px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(255, 122, 26, 0.08);
}

.hero-title::after,
.hero h1::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 34%,
      rgba(255, 255, 255, 0.28) 46%,
      transparent 58%,
      transparent 100%
    );
  transform: translateX(-120%);
  mix-blend-mode: screen;
  animation: heroTitleShine 5.8s ease-in-out infinite;
}

/* Butonlara daha canlı his */
.hero-primary-button,
.header-ticket-button,
.product-buy-button {
  position: relative !important;
  overflow: hidden !important;
}

.hero-primary-button::before,
.header-ticket-button::before,
.product-buy-button::before {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background:
    linear-gradient(
      105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.42) 50%,
      transparent 65%
    );
  transform: translateX(-80%) rotate(8deg);
  animation: buttonShine 4.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-primary-button > *,
.header-ticket-button > *,
.product-buy-button > * {
  position: relative;
  z-index: 2;
}

/* Sağ ürün kartına hafif canlılık */
.hero-product-card {
  animation: heroCardFloat 6.5s ease-in-out infinite;
}

.hero-product-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 184, 92, 0.12);
  pointer-events: none;
  animation: heroCardBorderPulse 4.5s ease-in-out infinite;
}

/* Animations */

@keyframes heroGridMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(58px, 58px, 0);
  }
}

@keyframes heroAuraPulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(1);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.05);
  }
}

@keyframes heroGlowFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(60px, -26px, 0) scale(1.08);
  }
}

@keyframes heroGlowFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-44px, 38px, 0) scale(1.1);
  }
}

@keyframes heroRingRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroScan {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(-18%) scaleX(0.6);
  }

  82% {
    opacity: 0.9;
  }

  92% {
    opacity: 0;
    transform: translateX(145%) scaleX(1);
  }
}

@keyframes heroParticleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(22px, -34px, 0);
    opacity: 0.95;
  }
}

@keyframes heroTitleShine {
  0%,
  62%,
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  90% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes buttonShine {
  0%,
  70%,
  100% {
    transform: translateX(-85%) rotate(8deg);
  }

  84% {
    transform: translateX(85%) rotate(8deg);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroCardBorderPulse {
  0%,
  100% {
    opacity: 0.35;
    box-shadow: 0 0 0 rgba(255, 122, 26, 0);
  }

  50% {
    opacity: 0.75;
    box-shadow: 0 0 45px rgba(255, 122, 26, 0.12);
  }
}

@media (max-width: 900px) {
  .hero-motion-layer {
    inset: -80px -60px;
  }

  .hero-ring {
    width: 260px;
    height: 260px;
    left: 52%;
    top: 12%;
    opacity: 0.5;
  }

  .hero-product-card {
    animation: none;
  }
}

.vehicle-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.vehicle-viewer canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.product-showroom-light {
  display: none !important;
}

.product-buy-button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 22px;
  border-radius: 16px;

  color: #120906 !important;
  text-decoration: none !important;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;

  background:
    linear-gradient(135deg, #ffb35c 0%, #ff7a1a 45%, #ff5a00 100%);

  border: 1px solid rgba(255, 184, 92, 0.85);

  box-shadow:
    0 16px 38px rgba(255, 112, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.product-buy-button span {
  color: inherit !important;
  background: none !important;
}

.product-buy-button svg {
  flex: 0 0 auto;
  transition: transform 0.18s ease;
}

.product-buy-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 22px 48px rgba(255, 112, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.product-buy-button:hover svg {
  transform: translateX(4px);
}

.product-buy-button:focus,
.product-buy-button:active {
  outline: none;
  text-decoration: none;
}

.product-purchase-panel a {
  text-decoration: none;
}

.admin-live-preview {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 122, 24, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), transparent 55%),
    rgba(4, 8, 15, 0.72);
}

.admin-live-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.admin-live-preview-head div {
  display: grid;
  gap: 5px;
}

.admin-live-preview-head span {
  color: #ff9d45;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.admin-live-preview-head strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.admin-live-preview-head button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 122, 24, 0.36);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 122, 24, 0.12);
  cursor: pointer;
  font-weight: 800;
}

.admin-live-preview iframe {
  width: 100%;
  height: 620px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #070b12;
}

.admin-live-preview-placeholder {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(255, 122, 24, 0.35);
  border-radius: 18px;
  background: rgba(255, 122, 24, 0.06);
}

.admin-live-preview-placeholder strong {
  color: #fff;
}

.admin-live-preview-placeholder span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

@media (max-width: 900px) {
  .admin-live-preview iframe {
    height: 480px;
  }

  .admin-live-preview-head {
    align-items: stretch;
    flex-direction: column;
  }
}

.admin-product-tabs {
  position: sticky;
  top: 14px;
  z-index: 20;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  margin-bottom: 18px;
  padding: 10px;
  border: 1px solid rgba(255, 122, 24, 0.18);
  border-radius: 22px;

  background:
    linear-gradient(180deg, rgba(9, 14, 24, 0.96), rgba(5, 8, 14, 0.92));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.admin-product-tabs button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;

  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.035);

  font-weight: 900;
  cursor: pointer;

  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.admin-product-tabs button span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;

  color: #ff9d45;
  background: rgba(255, 122, 24, 0.12);

  font-size: 11px;
  font-weight: 900;
}

.admin-product-tabs button.active {
  color: #fff;
  border-color: rgba(255, 122, 24, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.22), rgba(255, 122, 24, 0.06));
  transform: translateY(-1px);
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active {
  display: block;
}

.admin-live-preview {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 122, 24, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), transparent 55%),
    rgba(4, 8, 15, 0.72);
}

.admin-live-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.admin-live-preview-head div {
  display: grid;
  gap: 5px;
}

.admin-live-preview-head span {
  color: #ff9d45;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.admin-live-preview-head strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.admin-live-preview-head button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 122, 24, 0.36);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 122, 24, 0.12);
  cursor: pointer;
  font-weight: 800;
}

.admin-live-preview iframe {
  width: 100%;
  height: 620px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #070b12;
}

.admin-live-preview-placeholder {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(255, 122, 24, 0.35);
  border-radius: 18px;
  background: rgba(255, 122, 24, 0.06);
}

.admin-live-preview-placeholder strong {
  color: #fff;
}

.admin-live-preview-placeholder span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.admin-vehicle-settings {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid rgba(255, 122, 24, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), transparent 42%),
    rgba(6, 10, 18, 0.62);
}

.admin-vehicle-settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-vehicle-settings-head > div {
  display: grid;
  gap: 5px;
}

.admin-vehicle-settings-head span {
  color: #ff9d45;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.admin-vehicle-settings-head strong {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.admin-vehicle-settings-head small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.admin-switch-card {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 122, 24, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.admin-switch-card input {
  width: 22px;
  height: 22px;
  accent-color: #ff7a1a;
}

.admin-switch-card span {
  display: grid;
  gap: 3px;
  color: #fff;
  letter-spacing: normal;
}

.admin-switch-card b {
  font-size: 13px;
}

.admin-switch-card small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.admin-tuning-panel {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.admin-tuning-panel summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  cursor: pointer;
  user-select: none;
  color: #fff;
  font-weight: 900;
}

.admin-tuning-panel summary::marker {
  color: #ff7a1a;
}

.admin-tuning-panel summary small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
}

.admin-tuning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-form-field.compact-field {
  gap: 8px;
}

.admin-form-field.compact-field input {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
}

.admin-form-field.compact-field small {
  line-height: 1.35;
}

.admin-form-field.compact-field.wide {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .admin-product-tabs {
    grid-template-columns: 1fr;
    position: static;
  }

  .admin-tuning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-vehicle-settings-head,
  .admin-live-preview-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-switch-card {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .admin-tuning-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-field.compact-field.wide {
    grid-column: auto;
  }

  .admin-live-preview iframe {
    height: 460px;
  }
}

/* ================================
   TRAXON ORANGE THEME FINAL OVERRIDE
   Mavi / mor kalan yerleri temizler
================================ */

:root {
  --traxon-orange: #ff7a1a;
  --traxon-orange-soft: #ff9d45;
  --traxon-orange-dark: #b94808;
  --traxon-bg: #080604;
  --traxon-panel: #0c1018;
  --traxon-panel-soft: #10141f;
  --traxon-border: rgba(255, 122, 24, 0.24);
  --traxon-text: #fff7ef;
  --traxon-muted: rgba(255, 247, 239, 0.62);
}

/* Mavi gradient yazılar */
.catalog-hero-copy h1 span,
.hero-title span,
.section-title span,
.catalog-hero h1 span,
.catalog-hero-copy span,
.product-detail-heading h1 span {
  color: #ff9d45 !important;
  background: linear-gradient(135deg, #fff3df 0%, #ffb86b 42%, #ff7a1a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Büyük özel talep / CTA mavi panel */
.catalog-request,
.custom-request,
.special-request,
.request-panel,
.catalog-cta,
.catalog-request-card,
section:has(.catalog-request-button),
section:has(a[href*="ticket"]) .catalog-request {
  border-color: rgba(255, 122, 24, 0.32) !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 24, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(38, 18, 8, 0.96), rgba(12, 8, 6, 0.96)) !important;
  box-shadow:
    0 28px 80px rgba(255, 90, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* “Aradığın ürün katalogda yok mu?” tarzı mavi kutu */
.catalog-section .section-shell > div,
.catalog-section .section-shell > section {
  --orange: #ff9d45;
}

/* Ürün kartı içindeki mavi border / panel */
.catalog-product-card,
.product-card,
.product-detail-sidebar,
.product-showroom,
.product-purchase-panel,
.catalog-product-media,
.admin-product-row {
  border-color: rgba(255, 122, 24, 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.045), transparent 36%),
    #0b0f18 !important;
}

/* Ürün kartı hover mavi glow */
.catalog-product-card:hover,
.product-card:hover,
.admin-product-row:hover {
  border-color: rgba(255, 122, 24, 0.42) !important;
  box-shadow:
    0 28px 70px rgba(255, 122, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

/* Öne çıkan badge mavilik */
.catalog-product-featured,
.product-showroom-featured,
.admin-status-pill,
.product-price-status,
.catalog-product-3d,
.catalog-product-ready {
  color: #ffcf9d !important;
  border-color: rgba(255, 122, 24, 0.32) !important;
  background: rgba(255, 122, 24, 0.12) !important;
}

/* Kategori badge / gri-mavi etiketler */
.catalog-product-category,
.product-showroom-category,
.admin-section-label {
  color: #ffb86b !important;
  border-color: rgba(255, 122, 24, 0.28) !important;
  background: rgba(255, 122, 24, 0.10) !important;
}

/* Section kicker — arka plan yok, sadece glow */
.section-kicker {
  color: #ffb86b !important;
  background: transparent !important;
  text-shadow:
    0 0 18px rgba(255, 122, 24, 0.55),
    0 0 40px rgba(255, 122, 24, 0.28) !important;
}

/* T harfli placeholder kutusu */
.catalog-product-row-image,
.admin-product-row-image,
.product-media-placeholder,
.catalog-product-media span,
.admin-product-row-image span {
  border-color: rgba(255, 122, 24, 0.28) !important;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 122, 24, 0.22), transparent 50%),
    rgba(10, 8, 6, 0.92) !important;
  color: #ffb86b !important;
}

/* Mavi butonları turuncuya çek */
.catalog-filter-button,
.admin-primary-action,
.product-buy-button,
.catalog-request-button,
.mobile-menu-button.active,
button[type="submit"],
a.button-primary {
  color: #120906 !important;
  border-color: rgba(255, 184, 92, 0.72) !important;
  background:
    linear-gradient(135deg, #ffb35c 0%, #ff7a1a 48%, #ff5a00 100%) !important;
  box-shadow:
    0 16px 38px rgba(255, 112, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

/* Buton hover */
.catalog-filter-button:hover,
.admin-primary-action:hover,
.product-buy-button:hover,
.catalog-request-button:hover,
button[type="submit"]:hover,
a.button-primary:hover {
  filter: brightness(1.06) !important;
  box-shadow:
    0 22px 52px rgba(255, 112, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

/* Filter ikon / ok ikon mavi kalmasın */
.catalog-filter-button svg,
.product-buy-button svg,
.catalog-product-arrow svg,
.product-showroom-action svg {
  color: currentColor !important;
  stroke: currentColor !important;
}

/* Header nav aktif mavi/soğuk ton */
.header-nav a.active,
.header-nav a:hover,
.nav-pill a.active,
.nav-pill a:hover,
.site-header a.active {
  color: #fff2df !important;
  border-color: rgba(255, 122, 24, 0.38) !important;
  background: rgba(255, 122, 24, 0.12) !important;
}

/* Form input focus mavi glow */
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 122, 24, 0.72) !important;
  box-shadow:
    0 0 0 3px rgba(255, 122, 24, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  outline: none !important;
}

/* Checkbox mavi kalmasın */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #ff7a1a !important;
}

/* Genel mavi box-shadowları bastır */
[class*="orange"],
[class*="primary"],
[class*="featured"],
[class*="ready"],
[class*="request"] {
  --tw-ring-color: rgba(255, 122, 24, 0.35) !important;
}

/* Sayfa arka planında mor/mavi parlamaları amber yap */
body,
.catalog-section,
.product-detail-hero,
.hero-section {
  background-color: #080604 !important;
}

.catalog-hero-glow,
.hero-glow,
.product-detail-glow,
.admin-background-glow {
  background:
    radial-gradient(circle, rgba(255, 122, 24, 0.24), transparent 62%) !important;
}

/* Selection bile turuncu olsun */
::selection {
  color: #120906;
  background: #ff9d45;
}

/* Özel talep CTA - maviyi tamamen turuncu yap */
.catalog-support-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 24, 0.16), transparent 42%),
    #080604 !important;
}

.catalog-support-panel {
  border: 1px solid rgba(255, 122, 24, 0.34) !important;

  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 24, 0.30), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 157, 69, 0.14), transparent 34%),
    linear-gradient(135deg, #241006 0%, #130a05 52%, #090604 100%) !important;

  box-shadow:
    0 34px 90px rgba(255, 92, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.catalog-support-panel .section-kicker {
  color: #ffb86b !important;
  background: transparent !important;
  -webkit-text-fill-color: #ffb86b !important;
}

.catalog-support-panel .section-kicker::before,
.catalog-support-panel .section-kicker::after {
  background: #ff9d45 !important;
}

.catalog-support-panel h2 {
  color: #fff7ef !important;
}

.catalog-support-panel p {
  color: rgba(255, 247, 239, 0.66) !important;
}

.catalog-support-panel .button-light {
  color: #120906 !important;

  background:
    linear-gradient(135deg, #ffcf91 0%, #ff9d45 42%, #ff7a1a 100%) !important;

  border: 1px solid rgba(255, 184, 92, 0.82) !important;

  box-shadow:
    0 18px 42px rgba(255, 122, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38) !important;
}

.catalog-support-panel .button-light:hover {
  filter: brightness(1.06) !important;
  transform: translateY(-2px);
}

/* =========================================
   TRAXON GLOBAL SMOOTH BACKGROUND
   Tüm sayfa tek parça turuncudan siyaha aksın
========================================= */

html {
  background: #050201 !important;
}

body {
  min-height: 100vh;

  background:
    radial-gradient(circle at 18% 5%, rgba(255, 122, 24, 0.20), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 91, 0, 0.14), transparent 34%),
    linear-gradient(
      180deg,
      #1b0802 0%,
      #2a0d02 16%,
      #180703 38%,
      #0b0402 68%,
      #050201 100%
    ) !important;

  background-attachment: fixed !important;
}

/* Bütün ana bölümler kendi arka planını bırakacak */
.hero-section,
.catalog-hero,
.catalog-section,
.catalog-support-section,
.categories-section,
.category-section,
.featured-section,
.home-products-section,
.home-categories-section,
.product-detail-hero,
.product-information-section,
.product-final-cta,
section {
  background: transparent !important;
}

/* Önceden eklenen negatif margin / sert geçişleri sıfırla */
.hero-section,
.catalog-hero {
  margin-bottom: 0 !important;
  padding-bottom: 110px !important;
}

.catalog-section,
.categories-section,
.category-section,
.featured-section,
.home-products-section,
.home-categories-section {
  margin-top: 0 !important;
  padding-top: 110px !important;
}

/* Section arası keskin çizgi / blok hissini yok et */
.hero-section::after,
.catalog-hero::after,
.catalog-section::before,
.categories-section::before,
.featured-section::before,
.home-products-section::before,
.home-categories-section::before {
  display: none !important;
  background: none !important;
}

/* Büyük koyu blokların section gibi durmasını engelle */
.section-shell,
.hero-shell,
.catalog-hero-shell {
  background: transparent !important;
}

/* Kategori bölümünün üstündeki siyah blok geçişi yumuşasın */
.categories-section,
.home-categories-section,
.catalog-section {
  position: relative;
}

.categories-section::after,
.home-categories-section::after,
.catalog-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 24, 0.08), transparent 36%),
    linear-gradient(
      180deg,
      rgba(42, 13, 2, 0.10) 0%,
      rgba(14, 5, 2, 0.26) 42%,
      rgba(5, 2, 1, 0.42) 100%
    );
}

/* Header da aynı atmosfere otursun */
.site-header,
.header,
.main-header {
  background:
    linear-gradient(
      180deg,
      rgba(10, 4, 2, 0.94),
      rgba(10, 4, 2, 0.72)
    ) !important;

  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 122, 24, 0.13) !important;
}

/* Hero içindeki sağ/sol sert renk perdelerini yumuşat */
.hero-glow,
.hero-glow-left,
.hero-glow-right,
.catalog-hero-glow,
.product-detail-glow {
  opacity: 0.42 !important;
  filter: blur(90px) !important;
  background:
    radial-gradient(circle, rgba(255, 122, 24, 0.22), transparent 65%) !important;
}

/* Eğer hero içinde ekstra grid/perde varsa görünümü yumuşat */
.hero-section::before,
.catalog-hero::before {
  opacity: 0.18 !important;
}

/* Ürün kartları hâlâ kendi halinde kalsın ama sayfadan kopmasın */
.catalog-product-card,
.product-card,
.product-showroom,
.product-detail-sidebar {
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.045), transparent 42%),
    rgba(9, 12, 18, 0.88) !important;

  border-color: rgba(255, 122, 24, 0.20) !important;
}

/* =========================================
   TICKET BUTTON SHINE EFFECT REMOVE
   Kayan parlak efekti kapatır
========================================= */

.product-buy-button::before,
.product-buy-button::after,
.catalog-ticket-link::before,
.catalog-ticket-link::after,
.header-ticket-button::before,
.header-ticket-button::after,
.site-header .button-primary::before,
.site-header .button-primary::after,
a[href*="ticket"]::before,
a[href*="ticket"]::after {
  display: none !important;
  content: none !important;
  animation: none !important;
  transition: none !important;
}

/* Ticket butonlarını sade luxury hale getir */
.product-buy-button,
.catalog-ticket-link,
.header-ticket-button,
.site-header .button-primary,
a[href*="ticket"] {
  position: relative;
  overflow: hidden;

  color: #160904 !important;
  border: 1px solid rgba(255, 205, 145, 0.58) !important;

  background:
    linear-gradient(135deg, #ffd39a 0%, #ff9d45 46%, #ff7618 100%) !important;

  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(90, 28, 0, 0.22) !important;

  text-shadow: none !important;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    border-color 0.18s ease !important;
}

/* Hover artık kayan ışık değil, sadece kaliteli yükselme */
.product-buy-button:hover,
.catalog-ticket-link:hover,
.header-ticket-button:hover,
.site-header .button-primary:hover,
a[href*="ticket"]:hover {
  transform: translateY(-2px) !important;

  filter: brightness(1.035) saturate(1.03) !important;

  border-color: rgba(255, 224, 174, 0.78) !important;

  box-shadow:
    0 20px 46px rgba(255, 122, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(90, 28, 0, 0.26) !important;
}

/* Tıklama hissi */
.product-buy-button:active,
.catalog-ticket-link:active,
.header-ticket-button:active,
.site-header .button-primary:active,
a[href*="ticket"]:active {
  transform: translateY(0) scale(0.985) !important;

  box-shadow:
    0 10px 24px rgba(255, 122, 24, 0.20),
    inset 0 2px 8px rgba(90, 28, 0, 0.24) !important;
}

/* =========================================
   PREMIUM TICKET BUTTON EFFECT
   Shimmer yok, lüks glow + border + arrow
========================================= */

.product-buy-button,
.catalog-ticket-link,
.header-ticket-button,
.site-header a[href*="ticket"],
a[href*="ticket"] {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;

  border: 1px solid rgba(255, 205, 145, 0.58) !important;
  color: #170904 !important;

  background:
    radial-gradient(circle at 50% -40%, rgba(255, 255, 255, 0.38), transparent 36%),
    linear-gradient(135deg, #ffd69c 0%, #ff9d45 44%, #ff7417 100%) !important;

  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(104, 32, 0, 0.28) !important;

  transform: translateZ(0);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    filter 0.18s ease !important;
}

/* Eski kayan efektleri kapat */
.product-buy-button::before,
.catalog-ticket-link::before,
.header-ticket-button::before,
.site-header a[href*="ticket"]::before,
a[href*="ticket"]::before {
  content: "" !important;
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;

  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.30), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%, rgba(90, 28, 0, 0.14));

  opacity: 0.55;
  pointer-events: none;
  transform: none !important;
  animation: none !important;
}

/* Dış lüks aura */
.product-buy-button::after,
.catalog-ticket-link::after,
.header-ticket-button::after,
.site-header a[href*="ticket"]::after,
a[href*="ticket"]::after {
  content: "" !important;
  position: absolute;
  inset: -7px;
  z-index: -2;
  border-radius: inherit;

  background:
    radial-gradient(circle, rgba(255, 122, 24, 0.34), transparent 68%);

  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  transform: scale(0.88);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease !important;

  animation: none !important;
}

/* Hover: yukarı kalkar, aura açılır */
.product-buy-button:hover,
.catalog-ticket-link:hover,
.header-ticket-button:hover,
.site-header a[href*="ticket"]:hover,
a[href*="ticket"]:hover {
  transform: translateY(-2px) scale(1.015) !important;

  filter: brightness(1.04) saturate(1.04) !important;

  border-color: rgba(255, 232, 194, 0.82) !important;

  box-shadow:
    0 22px 52px rgba(255, 122, 24, 0.30),
    0 8px 24px rgba(255, 180, 95, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -1px 0 rgba(104, 32, 0, 0.30) !important;
}

.product-buy-button:hover::after,
.catalog-ticket-link:hover::after,
.header-ticket-button:hover::after,
.site-header a[href*="ticket"]:hover::after,
a[href*="ticket"]:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* SVG ok varsa premium hareket */
.product-buy-button svg,
.catalog-ticket-link svg,
.header-ticket-button svg,
.site-header a[href*="ticket"] svg,
a[href*="ticket"] svg {
  transition:
    transform 0.18s ease,
    opacity 0.18s ease !important;
}

.product-buy-button:hover svg,
.catalog-ticket-link:hover svg,
.header-ticket-button:hover svg,
.site-header a[href*="ticket"]:hover svg,
a[href*="ticket"]:hover svg {
  transform: translateX(4px) !important;
}

/* Tıklama hissi */
.product-buy-button:active,
.catalog-ticket-link:active,
.header-ticket-button:active,
.site-header a[href*="ticket"]:active,
a[href*="ticket"]:active {
  transform: translateY(0) scale(0.982) !important;

  box-shadow:
    0 10px 24px rgba(255, 122, 24, 0.20),
    inset 0 2px 8px rgba(104, 32, 0, 0.28) !important;
}

/* Klavye focus */
.product-buy-button:focus-visible,
.catalog-ticket-link:focus-visible,
.header-ticket-button:focus-visible,
.site-header a[href*="ticket"]:focus-visible,
a[href*="ticket"]:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.18),
    0 22px 52px rgba(255, 122, 24, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.56) !important;
}

/* =====================================================
   HERO LUXURY EFFECT FINAL
   Beyaz kayan efekti kapatır, lüks amber atmosfer ekler
===================================================== */

/* Hero'daki ucuz beyaz kayan/sweep efektleri kapat */
.hero-title::before,
.hero-title::after,
.hero-copy::before,
.hero-copy::after,
.hero-section .shine,
.hero-section .shimmer,
.hero-section .sweep,
.hero-section [class*="shine"],
.hero-section [class*="shimmer"],
.hero-section [class*="sweep"] {
  display: none !important;
  content: none !important;
  animation: none !important;
  transform: none !important;
  opacity: 0 !important;
}

/* Hero ana alanını lüks tek parça atmosfer yap */
.hero-section {
  position: relative !important;
  overflow: visible !important;
  background: transparent !important;
}

.hero-bottom-line {
  display: none !important;
}

/* Lüks soft glow — hareket yok, pahalı durur */
.hero-section::before {
  content: "" !important;
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 18% 24%, rgba(255, 164, 74, 0.18), transparent 28%),
    radial-gradient(circle at 54% 34%, rgba(255, 122, 24, 0.12), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(255, 196, 112, 0.07), transparent 26%);

  filter: blur(36px);
  opacity: 0.82;
}

/* Çok ince luxury grid / texture */
.hero-section::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 157, 69, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 157, 69, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(255, 122, 24, 0.10), transparent 32%);

  background-size:
    72px 72px,
    72px 72px,
    100% 100%;

  opacity: 0.28;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    black 16%,
    black 74%,
    transparent 100%
  );
}

/* Hero içeriği efektlerin üstünde kalsın */
.hero-shell,
.hero-copy,
.hero-visual {
  position: relative !important;
  z-index: 2 !important;
}

/* Başlık artık tertemiz, parlama yok */
.hero-title,
.hero-copy h1 {
  position: relative !important;
  color: #fff7ed !important;

  text-shadow:
    0 22px 70px rgba(255, 122, 24, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.03) !important;
}

/* Başlığın arkasına sade premium derinlik */
.hero-title span,
.hero-copy h1 span {
  background:
    linear-gradient(
      135deg,
      #fff7ed 0%,
      #ffe1b8 38%,
      #ffb45f 70%,
      #ff7a1a 100%
    ) !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;

  animation: none !important;
}

/* Hero badge daha luxury */
.hero-eyebrow,
.hero-kicker,
.hero-copy .hero-eyebrow {
  border: 1px solid rgba(255, 157, 69, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.13), rgba(255, 122, 24, 0.045)) !important;

  box-shadow:
    0 14px 38px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;

  backdrop-filter: blur(16px);
}

/* Küçük yeşil nokta fazla neon durmasın */
.hero-eyebrow-dot,
.hero-kicker-dot {
  background: #ff9d45 !important;
  box-shadow:
    0 0 0 5px rgba(255, 122, 24, 0.12),
    0 0 22px rgba(255, 122, 24, 0.36) !important;
}

/* Hero sağdaki araç kartı daha pahalı dursun */
.hero-product-card,
.hero-preview-card,
.hero-visual-card {
  border-color: rgba(255, 157, 69, 0.24) !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 8, 12, 0.86) !important;

  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.42),
    0 22px 80px rgba(255, 122, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* =====================================================
   HERO TITLE PREMIUM OUTER GLOW
   Donate / Store yazısına lüks dış glow
===================================================== */

.hero-title,
.hero-copy h1 {
  color: #fff7ed !important;

  -webkit-text-stroke: 1px rgba(255, 196, 112, 0.18);

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 157, 69, 0.18),
    0 0 42px rgba(255, 122, 24, 0.16),
    0 0 90px rgba(255, 92, 0, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.45) !important;
}

/* Yazının arkasında çok soft premium aura */
.hero-title::after,
.hero-copy h1::after {
  content: "";
  position: absolute;
  inset: -18px -26px;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(circle at 45% 45%, rgba(255, 122, 24, 0.18), transparent 58%),
    radial-gradient(circle at 60% 28%, rgba(255, 210, 154, 0.10), transparent 44%);

  filter: blur(28px);
  opacity: 0.72;
}

/* H1'in pseudo efekti düzgün çalışsın */
.hero-title,
.hero-copy h1 {
  position: relative !important;
  isolation: isolate;
}

/* =====================================================
   DISCORD LUX PANEL FINAL
   Discord CTA panelini özel/lüks hale getirir
===================================================== */

.discord-lux-panel {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;

  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 34px !important;

  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(88, 101, 242, 0.28), transparent 35%),
    linear-gradient(135deg, #2b315f 0%, #232c52 48%, #0e1324 100%) !important;

  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.42),
    0 24px 90px rgba(88, 101, 242, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Arka planda dev Discord logosu */
.discord-lux-panel::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 50%;
  width: 420px;
  height: 420px;
  z-index: -1;
  pointer-events: none;

  transform: translateY(-50%) rotate(-8deg);

  background-color: rgba(255, 255, 255, 0.05);

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 245 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M104.4 104.3c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.3-5 10.2-11.1.1-6.1-4.5-11.1-10.2-11.1Zm36.2 0c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.3-5 10.2-11.1 0-6.1-4.5-11.1-10.2-11.1Z'/%3E%3Cpath d='M189.5 20h-134C44.2 20 35 29.2 35 40.6v135.2c0 11.4 9.2 20.6 20.5 20.6h113.4l-5.3-18.5 12.8 11.9 12.1 11.2 21.5 19V40.6C210 29.2 200.8 20 189.5 20Zm-38.9 130.6s-3.6-4.3-6.6-8.1c13.1-3.7 18.1-11.9 18.1-11.9-4.1 2.7-8 4.6-11.5 5.9-5 2.1-9.8 3.5-14.5 4.3-9.6 1.8-18.4 1.3-25.9-.1-5.7-1.1-10.6-2.7-14.7-4.3-2.3-.9-4.8-2-7.3-3.4-.3-.2-.6-.3-.9-.5-.2-.1-.3-.2-.4-.3-1.8-1-2.8-1.7-2.8-1.7s4.8 8 17.5 11.8c-3 3.8-6.7 8.3-6.7 8.3-22.1-.7-30.5-15.2-30.5-15.2 0-32.2 14.4-58.3 14.4-58.3 14.4-10.8 28.1-10.5 28.1-10.5l1 1.2c-18 5.2-26.3 13.1-26.3 13.1s2.2-1.2 5.9-2.9c10.7-4.7 19.2-6 22.7-6.3.6-.1 1.1-.2 1.7-.2 6.1-.8 13-1 20.2-.2 9.5 1.1 19.7 3.9 30.1 9.6 0 0-7.9-7.5-24.9-12.7l1.4-1.6s13.7-.3 28.1 10.5c0 0 14.4 26.1 14.4 58.3 0 0-8.5 14.5-30.6 15.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 245 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M104.4 104.3c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.3-5 10.2-11.1.1-6.1-4.5-11.1-10.2-11.1Zm36.2 0c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.3-5 10.2-11.1 0-6.1-4.5-11.1-10.2-11.1Z'/%3E%3Cpath d='M189.5 20h-134C44.2 20 35 29.2 35 40.6v135.2c0 11.4 9.2 20.6 20.5 20.6h113.4l-5.3-18.5 12.8 11.9 12.1 11.2 21.5 19V40.6C210 29.2 200.8 20 189.5 20Zm-38.9 130.6s-3.6-4.3-6.6-8.1c13.1-3.7 18.1-11.9 18.1-11.9-4.1 2.7-8 4.6-11.5 5.9-5 2.1-9.8 3.5-14.5 4.3-9.6 1.8-18.4 1.3-25.9-.1-5.7-1.1-10.6-2.7-14.7-4.3-2.3-.9-4.8-2-7.3-3.4-.3-.2-.6-.3-.9-.5-.2-.1-.3-.2-.4-.3-1.8-1-2.8-1.7-2.8-1.7s4.8 8 17.5 11.8c-3 3.8-6.7 8.3-6.7 8.3-22.1-.7-30.5-15.2-30.5-15.2 0-32.2 14.4-58.3 14.4-58.3 14.4-10.8 28.1-10.5 28.1-10.5l1 1.2c-18 5.2-26.3 13.1-26.3 13.1s2.2-1.2 5.9-2.9c10.7-4.7 19.2-6 22.7-6.3.6-.1 1.1-.2 1.7-.2 6.1-.8 13-1 20.2-.2 9.5 1.1 19.7 3.9 30.1 9.6 0 0-7.9-7.5-24.9-12.7l1.4-1.6s13.7-.3 28.1 10.5c0 0 14.4 26.1 14.4 58.3 0 0-8.5 14.5-30.6 15.2Z'/%3E%3C/svg%3E");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;

  filter: blur(0.2px);
}

/* Discord logo pattern / arka detay */
.discord-lux-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.10), transparent 24%);

  background-size:
    74px 74px,
    74px 74px,
    100% 100%;

  opacity: 0.22;

  mask-image: linear-gradient(
    90deg,
    black 0%,
    black 54%,
    transparent 100%
  );
}

.discord-lux-panel__top {
  margin-bottom: 20px;
}

.discord-lux-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e7ecff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.discord-lux-badge svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.discord-lux-panel .section-kicker {
  color: #c3cbff !important;
  -webkit-text-fill-color: #c3cbff !important;
}

.discord-lux-panel .section-kicker::before,
.discord-lux-panel .section-kicker::after {
  background: linear-gradient(90deg, #7289da, #5865f2) !important;
}

.discord-lux-panel .button-light,
.discord-lux-panel a[href*="discord"] {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 18px !important;

  background:
    radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, #6b7bff 0%, #5865f2 48%, #3e4fcd 100%) !important;

  box-shadow:
    0 20px 52px rgba(88, 101, 242, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(20, 25, 92, 0.36) !important;

  text-shadow: none !important;
}

.discord-lux-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.discord-lux-button-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.discord-lux-panel .button-light:hover,
.discord-lux-panel a[href*="discord"]:hover {
  transform: translateY(-2px) scale(1.015) !important;
  filter: brightness(1.08) saturate(1.08) !important;

  box-shadow:
    0 26px 70px rgba(88, 101, 242, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.46) !important;
}

/* Yazılar */
.discord-lux-panel .section-kicker {
  color: #ffd29a !important;
  -webkit-text-fill-color: #ffd29a !important;
}

.discord-lux-panel .section-kicker::before,
.discord-lux-panel .section-kicker::after {
  background: linear-gradient(90deg, #5865f2, #ff9d45) !important;
}

.discord-lux-panel h2 {
  color: #fff !important;
  text-shadow:
    0 18px 60px rgba(88, 101, 242, 0.24),
    0 10px 42px rgba(0, 0, 0, 0.42) !important;
}

.discord-lux-panel p {
  color: rgba(237, 240, 255, 0.68) !important;
}

/* Discord butonu */
.discord-lux-panel .button-light,
.discord-lux-panel a[href*="discord"] {
  color: #ffffff !important;
  border: 1px solid rgba(174, 184, 255, 0.58) !important;
  border-radius: 18px !important;

  background:
    radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.30), transparent 40%),
    linear-gradient(135deg, #7785ff 0%, #5865f2 48%, #3841bd 100%) !important;

  box-shadow:
    0 20px 52px rgba(88, 101, 242, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(20, 25, 92, 0.36) !important;

  text-shadow: none !important;
}

.discord-lux-panel .button-light::before,
.discord-lux-panel .button-light::after,
.discord-lux-panel a[href*="discord"]::before,
.discord-lux-panel a[href*="discord"]::after {
  display: none !important;
  content: none !important;
}

.discord-lux-panel .button-light:hover,
.discord-lux-panel a[href*="discord"]:hover {
  transform: translateY(-2px) scale(1.015) !important;
  filter: brightness(1.06) saturate(1.04) !important;

  box-shadow:
    0 26px 70px rgba(88, 101, 242, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.46) !important;
}

/* Mobil */
@media (max-width: 760px) {
  .discord-lux-panel {
    border-radius: 26px !important;
  }

  .discord-lux-panel::before {
    width: 260px;
    height: 260px;
    right: -88px;
    top: 18%;
    opacity: 0.75;
  }
}

/* =====================================================
   HOME HERO FEATURED PRODUCT CARD FINAL
   Sağdaki öne çıkan ürün kartını toparlar
===================================================== */

.hero-visual,
.hero-product-showcase,
.hero-preview-wrap {
  position: relative !important;
  overflow: visible !important;
}

/* Ana ürün kartı */
.hero-product-card,
.hero-preview-card,
.hero-visual-card {
  position: relative !important;
  overflow: hidden !important;

  width: min(620px, 100%) !important;
  padding: 22px !important;

  border: 1px solid rgba(255, 157, 69, 0.28) !important;
  border-radius: 34px !important;

  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 24, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 9, 13, 0.90) !important;

  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.42),
    0 22px 80px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;

  backdrop-filter: blur(18px);
}

/* Kart arkasındaki daire/çizgi çok sert durmasın */
.hero-product-card::before,
.hero-preview-card::before,
.hero-visual-card::before {
  content: "" !important;
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;

  background:
    radial-gradient(circle at 50% -10%, rgba(255, 157, 69, 0.12), transparent 42%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 30%, transparent 72%, rgba(255, 122, 24, 0.05));

  opacity: 1 !important;
}

.hero-product-card > *,
.hero-preview-card > *,
.hero-visual-card > * {
  position: relative;
  z-index: 2;
}

/* Üst başlık alanı */
.hero-product-card h3,
.hero-preview-card h3,
.hero-visual-card h3 {
  color: #fff7ed !important;
  font-size: 22px !important;
  letter-spacing: -0.025em;
  margin: 6px 0 18px !important;
}

.hero-product-card small,
.hero-preview-card small,
.hero-visual-card small {
  color: rgba(255, 210, 154, 0.72) !important;
  letter-spacing: 0.16em;
}

/* Görsel kutusu */
.hero-product-card img,
.hero-preview-card img,
.hero-visual-card img {
  width: 100% !important;
  height: 310px !important;
  object-fit: cover !important;

  border-radius: 24px !important;
  border: 1px solid rgba(255, 122, 24, 0.18) !important;

  background: #06080c !important;

  filter:
    saturate(1.08)
    contrast(1.06)
    brightness(0.96) !important;

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* Görsel alanında ekstra koyu çerçeve varsa toparla */
.hero-product-media,
.hero-preview-media,
.hero-card-media {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  padding: 10px !important;

  border: 1px solid rgba(255, 122, 24, 0.15) !important;

  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 24, 0.12), transparent 42%),
    rgba(4, 6, 10, 0.88) !important;
}

/* Sağ üst “Optimize Edildi” rozeti dışarı taşmasın */
.hero-product-status,
.hero-preview-status,
.hero-optimized-badge,
.hero-product-card [class*="status"],
.hero-preview-card [class*="status"],
.hero-visual-card [class*="status"] {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 5 !important;

  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;

  max-width: 190px !important;
  padding: 12px 14px !important;

  border: 1px solid rgba(255, 157, 69, 0.28) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.16), rgba(255, 122, 24, 0.06)),
    rgba(8, 10, 16, 0.92) !important;

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.30),
    0 10px 32px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;

  backdrop-filter: blur(16px);
}

/* Sol alttaki “Premium içerik” badge dışarı taşmasın */
.hero-product-floating,
.hero-preview-floating,
.hero-premium-badge,
.hero-product-card [class*="floating"],
.hero-preview-card [class*="floating"],
.hero-visual-card [class*="floating"] {
  position: absolute !important;
  left: 24px !important;
  bottom: 94px !important;
  z-index: 6 !important;

  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;

  max-width: 190px !important;
  padding: 12px 14px !important;

  border: 1px solid rgba(255, 157, 69, 0.26) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.16), rgba(255, 122, 24, 0.055)),
    rgba(8, 10, 16, 0.92) !important;

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 10px 34px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;

  backdrop-filter: blur(16px);
}

/* Badge iconları */
.hero-product-status i,
.hero-preview-status i,
.hero-optimized-badge i,
.hero-product-floating i,
.hero-preview-floating i,
.hero-premium-badge i,
.hero-product-card [class*="status"] i,
.hero-preview-card [class*="status"] i,
.hero-product-card [class*="floating"] i,
.hero-preview-card [class*="floating"] i {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 12px !important;

  color: #ffd29a !important;

  background:
    radial-gradient(circle at 50% 0%, rgba(255, 210, 154, 0.24), transparent 48%),
    rgba(255, 122, 24, 0.16) !important;
}

/* Badge yazıları */
.hero-product-status strong,
.hero-preview-status strong,
.hero-optimized-badge strong,
.hero-product-floating strong,
.hero-preview-floating strong,
.hero-premium-badge strong,
.hero-product-card [class*="status"] strong,
.hero-preview-card [class*="status"] strong,
.hero-product-card [class*="floating"] strong,
.hero-preview-card [class*="floating"] strong {
  color: #fff7ed !important;
  font-size: 13px !important;
  line-height: 1.1;
}

.hero-product-status span,
.hero-preview-status span,
.hero-optimized-badge span,
.hero-product-floating span,
.hero-preview-floating span,
.hero-premium-badge span,
.hero-product-card [class*="status"] span,
.hero-preview-card [class*="status"] span,
.hero-product-card [class*="floating"] span,
.hero-preview-card [class*="floating"] span {
  color: rgba(255, 210, 154, 0.58) !important;
  font-size: 11px !important;
}

/* Alt fiyat/footer alanı */
.hero-product-footer,
.hero-preview-footer,
.hero-card-footer {
  margin-top: 18px !important;
  padding: 18px 4px 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;

  border-top: 1px solid rgba(255, 122, 24, 0.12) !important;
}

.hero-product-price,
.hero-preview-price,
.hero-card-price {
  display: grid !important;
  gap: 4px !important;
}

.hero-product-price span,
.hero-preview-price span,
.hero-card-price span {
  color: rgba(255, 210, 154, 0.56) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
}

.hero-product-price strong,
.hero-preview-price strong,
.hero-card-price strong {
  color: #fff7ed !important;
  font-size: 18px !important;
  text-shadow: 0 12px 34px rgba(255, 122, 24, 0.18);
}

/* Ürünü İncele linki */
.hero-product-link,
.hero-preview-link,
.hero-card-link,
.hero-product-card a[href*="/urun"],
.hero-preview-card a[href*="/urun"],
.hero-visual-card a[href*="/urun"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;

  color: #ffb45f !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  transition:
    color 0.18s ease,
    transform 0.18s ease !important;
}

.hero-product-link:hover,
.hero-preview-link:hover,
.hero-card-link:hover,
.hero-product-card a[href*="/urun"]:hover,
.hero-preview-card a[href*="/urun"]:hover,
.hero-visual-card a[href*="/urun"]:hover {
  color: #ffd29a !important;
  transform: translateX(4px);
}

/* Mini chipler: 360 / M / HD gibi */
.hero-product-card .chip,
.hero-preview-card .chip,
.hero-visual-card .chip,
.hero-product-card [class*="chip"],
.hero-preview-card [class*="chip"],
.hero-visual-card [class*="chip"] {
  border-color: rgba(255, 122, 24, 0.18) !important;
  color: rgba(255, 210, 154, 0.58) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

/* Hover premium */
.hero-product-card:hover,
.hero-preview-card:hover,
.hero-visual-card:hover {
  border-color: rgba(255, 157, 69, 0.42) !important;

  box-shadow:
    0 48px 140px rgba(0, 0, 0, 0.50),
    0 26px 90px rgba(255, 122, 24, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.hero-product-card:hover img,
.hero-preview-card:hover img,
.hero-visual-card:hover img {
  filter:
    saturate(1.16)
    contrast(1.08)
    brightness(1.02) !important;
}

/* Mobil */
@media (max-width: 900px) {
  .hero-product-card,
  .hero-preview-card,
  .hero-visual-card {
    padding: 16px !important;
    border-radius: 26px !important;
  }

  .hero-product-card img,
  .hero-preview-card img,
  .hero-visual-card img {
    height: 230px !important;
    border-radius: 20px !important;
  }

  .hero-product-status,
  .hero-preview-status,
  .hero-optimized-badge,
  .hero-product-card [class*="status"],
  .hero-preview-card [class*="status"],
  .hero-visual-card [class*="status"] {
    top: 16px !important;
    right: 16px !important;
    max-width: 160px !important;
  }

  .hero-product-floating,
  .hero-preview-floating,
  .hero-premium-badge,
  .hero-product-card [class*="floating"],
  .hero-preview-card [class*="floating"],
  .hero-visual-card [class*="floating"] {
    left: 16px !important;
    bottom: 86px !important;
    max-width: 160px !important;
  }
}

/* =====================================================
   HERO FEATURED PRODUCT CARD CLEAN FINAL
   Floating badge karmaşasını kaldırır, kartı sade premium yapar
===================================================== */

/* Hero ürün kartındaki dışarı taşan badge'leri kapat */
.hero-product-card [class*="badge"],
.hero-product-card [class*="status"],
.hero-product-card [class*="floating"],
.hero-preview-card [class*="badge"],
.hero-preview-card [class*="status"],
.hero-preview-card [class*="floating"],
.hero-visual-card [class*="badge"],
.hero-visual-card [class*="status"],
.hero-visual-card [class*="floating"] {
  display: none !important;
}

/* Kartı daha temiz ve kompakt yap */
.hero-product-card,
.hero-preview-card,
.hero-visual-card {
  overflow: hidden !important;
  padding: 24px !important;
  border-radius: 34px !important;

  border: 1px solid rgba(255, 157, 69, 0.26) !important;

  background:
    radial-gradient(circle at 24% 0%, rgba(255, 122, 24, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(8, 9, 13, 0.92) !important;

  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.46),
    0 22px 80px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.085) !important;
}

/* Üst başlık alanı daha düzenli */
.hero-product-card small,
.hero-preview-card small,
.hero-visual-card small {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  margin-bottom: 8px !important;

  color: rgba(255, 210, 154, 0.72) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
}

.hero-product-card h3,
.hero-preview-card h3,
.hero-visual-card h3 {
  margin: 0 0 20px !important;

  color: #fff7ed !important;
  font-size: 23px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
}

/* Görsel alanı daha düzgün oran */
.hero-product-media,
.hero-preview-media,
.hero-card-media {
  overflow: hidden !important;

  padding: 8px !important;
  border-radius: 28px !important;

  border: 1px solid rgba(255, 122, 24, 0.16) !important;

  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 24, 0.12), transparent 42%),
    rgba(5, 7, 11, 0.92) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 22px 60px rgba(0, 0, 0, 0.32) !important;
}

.hero-product-card img,
.hero-preview-card img,
.hero-visual-card img {
  width: 100% !important;
  height: 300px !important;

  object-fit: cover !important;
  object-position: center !important;

  border-radius: 22px !important;

  border: none !important;

  filter:
    saturate(1.08)
    contrast(1.06)
    brightness(0.98) !important;

  box-shadow: none !important;
}

/* Görsel üstünde siyah ezme varsa yumuşat */
.hero-product-card::before,
.hero-preview-card::before,
.hero-visual-card::before {
  opacity: 0.65 !important;
}

/* Alt chipler çok gereksiz duruyorsa gizle */
.hero-product-card [class*="chip"],
.hero-preview-card [class*="chip"],
.hero-visual-card [class*="chip"],
.hero-product-card .chip,
.hero-preview-card .chip,
.hero-visual-card .chip {
  display: none !important;
}

/* Alt fiyat ve incele alanı daha derli toplu */
.hero-product-footer,
.hero-preview-footer,
.hero-card-footer {
  margin-top: 18px !important;
  padding-top: 18px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;

  border-top: 1px solid rgba(255, 122, 24, 0.13) !important;
}

.hero-product-price,
.hero-preview-price,
.hero-card-price {
  display: grid !important;
  gap: 4px !important;
}

.hero-product-price span,
.hero-preview-price span,
.hero-card-price span {
  color: rgba(255, 210, 154, 0.54) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
}

.hero-product-price strong,
.hero-preview-price strong,
.hero-card-price strong {
  color: #fff7ed !important;
  font-size: 20px !important;
  font-weight: 950 !important;
}

/* Ürünü incele linki */
.hero-product-card a[href*="/urun"],
.hero-preview-card a[href*="/urun"],
.hero-visual-card a[href*="/urun"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;

  color: #ffb45f !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  transition:
    color 0.18s ease,
    transform 0.18s ease !important;
}

.hero-product-card a[href*="/urun"]:hover,
.hero-preview-card a[href*="/urun"]:hover,
.hero-visual-card a[href*="/urun"]:hover {
  color: #ffd29a !important;
  transform: translateX(4px) !important;
}

/* Hover sade premium */
.hero-product-card:hover,
.hero-preview-card:hover,
.hero-visual-card:hover {
  transform: translateY(-5px) !important;

  border-color: rgba(255, 157, 69, 0.42) !important;

  box-shadow:
    0 48px 140px rgba(0, 0, 0, 0.52),
    0 28px 90px rgba(255, 122, 24, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.hero-product-card:hover img,
.hero-preview-card:hover img,
.hero-visual-card:hover img {
  filter:
    saturate(1.14)
    contrast(1.08)
    brightness(1.03) !important;
}

/* =====================================================
   HERO BADGE TEXT ROTATOR
   Kutu sabit kalır, sadece yazı değişir
===================================================== */

.hero-badge-text-rotator {
  position: relative !important;
  width: 116px !important;
  height: 34px !important;
  overflow: hidden !important;
}

.hero-badge-text-item {
  position: absolute !important;
  inset: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 3px !important;

  opacity: 0;
  transform: translateY(8px);
  filter: blur(3px);

  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.hero-badge-text-item strong {
  color: #fff7ed !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.hero-badge-text-item span {
  color: rgba(255, 210, 154, 0.62) !important;
  font-size: 11px !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.hero-badge-text-item.is-optimize {
  animation-name: heroBadgeTextOptimize;
}

.hero-badge-text-item.is-premium {
  animation-name: heroBadgeTextPremium;
}

@keyframes heroBadgeTextOptimize {
  0% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  40% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  50% {
    opacity: 0;
    transform: translateY(-8px);
    filter: blur(3px);
  }

  90% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroBadgeTextPremium {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(3px);
  }

  40% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(3px);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  90% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px);
    filter: blur(3px);
  }
}

@keyframes heroBadgeTextOptimize {
  0% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  44% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  52% {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(2px);
  }

  92% {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroBadgeTextPremium {
  0% {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(2px);
  }

  44% {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(2px);
  }

  52% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  92% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(2px);
  }
}

/* Hero ürün kartındaki 360 / Zoom / HD chiplerini aşağı al */
.hero-product-card [class*="chip"],
.hero-preview-card [class*="chip"],
.hero-visual-card [class*="chip"],
.hero-product-card .chip,
.hero-preview-card .chip,
.hero-visual-card .chip {
  position: relative !important;
  top: 24px !important;
}

/* =====================================================
   CATALOG CARD TICKET BUTTON FIX
   Ürünler sayfasındaki Ticket Aç butonunu düzeltir
===================================================== */

.catalog-product-footer {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.catalog-detail-button,
.catalog-ticket-link {
  min-height: 46px !important;
  flex: 1 1 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  border-radius: 16px !important;
  text-decoration: none !important;

  font-size: 13px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease !important;
}

.catalog-detail-button {
  color: #170904 !important;
  border: 1px solid rgba(255, 210, 154, 0.62) !important;

  background:
    radial-gradient(circle at 50% -35%, rgba(255,255,255,0.34), transparent 42%),
    linear-gradient(135deg, #ffd69c 0%, #ff9d45 44%, #ff7417 100%) !important;

  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

.catalog-ticket-link {
  color: #ffd29a !important;
  border: 1px solid rgba(255, 157, 69, 0.26) !important;

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.13), rgba(255, 122, 24, 0.045)),
    rgba(255, 255, 255, 0.032) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

.catalog-detail-button svg,
.catalog-ticket-link svg {
  flex: 0 0 auto !important;
  transition: transform 0.18s ease !important;
}

.catalog-detail-button:hover,
.catalog-ticket-link:hover {
  transform: translateY(-2px) !important;
}

.catalog-detail-button:hover svg,
.catalog-ticket-link:hover svg {
  transform: translateX(3px) !important;
}

.catalog-ticket-link:hover {
  color: #170904 !important;
  border-color: rgba(255, 210, 154, 0.64) !important;

  background:
    radial-gradient(circle at 50% -35%, rgba(255,255,255,0.30), transparent 42%),
    linear-gradient(135deg, #ffe0aa 0%, #ffad57 44%, #ff7a1a 100%) !important;

  box-shadow:
    0 16px 38px rgba(255, 122, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38) !important;
}

@media (max-width: 680px) {
  .catalog-product-footer {
    flex-direction: column !important;
  }

  .catalog-detail-button,
  .catalog-ticket-link {
    width: 100% !important;
    flex: none !important;
  }
}

/* =====================================================
   CATALOG FILTER BAR LIGHT LUX FIX
   Arama ve kategori kutularını daha premium / okunur yapar
===================================================== */

.catalog-toolbar {
  border: 1px solid rgba(255, 157, 69, 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(255, 122, 24, 0.025)),
    rgba(18, 9, 5, 0.68) !important;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;

  backdrop-filter: blur(18px);
}

/* Arama kutusu ve kategori select ana alan */
.catalog-search-field,
.catalog-select-field {
  border: 1px solid rgba(255, 157, 69, 0.28) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(43, 18, 8, 0.74) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 14px 32px rgba(0, 0, 0, 0.18) !important;
}

/* Sağ taraftaki select içinde kalan ekstra koyu blokları bastır */
.catalog-select-field select,
.catalog-search-field input {
  width: 100% !important;

  color: #fff7ed !important;

  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Select'in kendi native koyu görünümünü yumuşat */
.catalog-select-field select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  color: #fff7ed !important;
  background-color: transparent !important;
}

/* Placeholder daha okunur */
.catalog-search-field input::placeholder {
  color: rgba(255, 226, 194, 0.52) !important;
}

/* Iconlar */
.catalog-search-field svg,
.catalog-select-field svg {
  color: #ffb45f !important;
  opacity: 0.9 !important;
}

/* Focus premium */
.catalog-search-field:focus-within,
.catalog-select-field:focus-within {
  border-color: rgba(255, 190, 118, 0.58) !important;

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.14), rgba(255, 122, 24, 0.045)),
    rgba(50, 20, 8, 0.86) !important;

  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.10),
    0 18px 42px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

/* Chrome autofill koyu basarsa */
.catalog-search-field input:-webkit-autofill,
.catalog-search-field input:-webkit-autofill:hover,
.catalog-search-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff7ed !important;
  box-shadow: 0 0 0 1000px rgba(43, 18, 8, 0.95) inset !important;
}

/* Select option menüsü */
.catalog-select-field select option {
  color: #fff7ed !important;
  background: #160804 !important;
}

/* =====================================================
   CATALOG FILTER BAR FINAL FIX
   Dıştaki çirkin dikdörtgen çerçeveyi kaldırır
===================================================== */

.catalog-toolbar {
  display: grid !important;
  grid-template-columns: minmax(360px, 1fr) 260px 128px auto !important;
  align-items: center !important;
  gap: 12px !important;

  padding: 0 !important;
  margin-bottom: 34px !important;

  border: none !important;
  outline: none !important;

  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Arama ve kategori kutuları */
.catalog-search-field,
.catalog-select-field {
  min-height: 58px !important;

  border: 1px solid rgba(255, 157, 69, 0.28) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.026)),
    rgba(34, 14, 7, 0.74) !important;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
}

/* İçteki ekstra koyulukları temizle */
.catalog-search-field input,
.catalog-select-field select {
  height: 100% !important;
  color: #fff7ed !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Arama placeholder */
.catalog-search-field input::placeholder {
  color: rgba(255, 226, 194, 0.50) !important;
}

/* İkonlar */
.catalog-search-field svg,
.catalog-select-field svg {
  color: #ffb45f !important;
}

/* Filtrele butonu boyutunu düzelt */
.catalog-filter-button {
  min-height: 58px !important;
  padding: 0 24px !important;

  border-radius: 18px !important;

  color: #160904 !important;
  border: 1px solid rgba(255, 210, 154, 0.58) !important;

  background:
    linear-gradient(135deg, #ffd39a 0%, #ff9d45 44%, #ff7417 100%) !important;

  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.40) !important;
}

/* Sağdaki ürün sayısı */
.catalog-result-count {
  min-height: 58px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;

  color: rgba(255, 247, 237, 0.62) !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

/* Focus hali */
.catalog-search-field:focus-within,
.catalog-select-field:focus-within {
  border-color: rgba(255, 190, 118, 0.58) !important;

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.13), rgba(255, 122, 24, 0.040)),
    rgba(44, 17, 7, 0.84) !important;

  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.10),
    0 18px 42px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

/* Mobil */
@media (max-width: 900px) {
  .catalog-toolbar {
    grid-template-columns: 1fr !important;
  }

  .catalog-filter-button,
  .catalog-result-count {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* =====================================================
   CATALOG FILTER BAR REAL FINAL FIX
   Arama / kategori / filtre / ürün sayısı düzgün hizalama
===================================================== */

:root {
  --catalog-filter-shift: 0px !important;
}

/* Filtre ana satırı */
.catalog-toolbar {
  transform: none !important;

  width: min(1240px, calc(100% - 48px)) !important;
  max-width: 1240px !important;

  margin: 0 auto 30px !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: minmax(420px, 1fr) 260px 140px 170px !important;
  align-items: center !important;
  gap: 14px !important;

  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Arama kutusu */
.catalog-search-field {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  padding: 0 18px !important;

  border: 1px solid rgba(255, 157, 69, 0.30) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.026)),
    rgba(34, 14, 7, 0.76) !important;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
}

/* Kategori select */
.catalog-select-field {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  padding: 0 16px !important;

  border: 1px solid rgba(255, 157, 69, 0.30) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.026)),
    rgba(34, 14, 7, 0.76) !important;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
}

/* İç input/select */
.catalog-search-field input,
.catalog-select-field select {
  width: 100% !important;
  height: 100% !important;

  color: #fff7ed !important;
  background: transparent !important;

  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  font-weight: 800 !important;
}

.catalog-search-field input::placeholder {
  color: rgba(255, 226, 194, 0.50) !important;
}

.catalog-select-field select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  cursor: pointer !important;
}

/* İkonlar */
.catalog-search-field svg,
.catalog-select-field svg {
  flex: 0 0 auto !important;
  color: #ffb45f !important;
  opacity: 0.95 !important;
}

/* Filtrele butonu */
.catalog-filter-button {
  width: 100% !important;
  min-height: 58px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  padding: 0 20px !important;

  border-radius: 18px !important;
  border: 1px solid rgba(255, 210, 154, 0.62) !important;

  color: #160904 !important;
  background:
    radial-gradient(circle at 50% -35%, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(135deg, #ffd39a 0%, #ff9d45 44%, #ff7417 100%) !important;

  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.40) !important;

  font-weight: 950 !important;
  white-space: nowrap !important;
}

/* Ürün sayısı */
.catalog-result-count {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  margin: 0 !important;
  padding: 0 !important;

  color: rgba(255, 247, 237, 0.62) !important;

  font-size: 13px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.catalog-result-count span,
.catalog-result-count strong {
  color: #fff7ed !important;
  margin-right: 4px !important;
}

/* Focus */
.catalog-search-field:focus-within,
.catalog-select-field:focus-within {
  border-color: rgba(255, 190, 118, 0.58) !important;

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.13), rgba(255, 122, 24, 0.040)),
    rgba(44, 17, 7, 0.84) !important;

  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.10),
    0 18px 42px rgba(255, 122, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

/* Alttaki kategori butonları aynı hizada */
.catalog-category-tabs {
  transform: none !important;

  width: min(1240px, calc(100% - 48px)) !important;
  max-width: 1240px !important;

  margin: 0 auto 34px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}

/* Kategori butonları */
.catalog-category-tabs a {
  min-height: 44px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 20px !important;

  border-radius: 999px !important;
  border: 1px solid rgba(255, 157, 69, 0.24) !important;

  color: rgba(255, 247, 237, 0.66) !important;
  background: rgba(255, 122, 24, 0.055) !important;

  font-size: 13px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.catalog-category-tabs a.active,
.catalog-category-tabs a:hover {
  color: #fff7ed !important;

  border-color: rgba(255, 157, 69, 0.48) !important;

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.20), rgba(255, 122, 24, 0.075)) !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .catalog-toolbar {
    grid-template-columns: minmax(320px, 1fr) 230px 130px !important;
  }

  .catalog-result-count {
    grid-column: 1 / -1 !important;
    justify-content: flex-end !important;
    min-height: auto !important;
  }
}

/* Mobil */
@media (max-width: 760px) {
  .catalog-toolbar {
    width: calc(100% - 32px) !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .catalog-search-field,
  .catalog-select-field,
  .catalog-filter-button {
    min-height: 54px !important;
  }

  .catalog-result-count {
    justify-content: center !important;
  }

  .catalog-category-tabs {
    width: calc(100% - 32px) !important;
    overflow-x: auto !important;
    padding-bottom: 6px !important;
  }

  .catalog-category-tabs a {
    flex: 0 0 auto !important;
  }
}

/* =====================================================
   PRODUCTS PAGE LAYOUT FINAL FIX
   Ürünler sayfası boşluk + filtre + grid hizalama
===================================================== */

/* Header altındaki gereksiz dev boşluğu azalt */
.catalog-section {
  padding-top: 72px !important;
  margin-top: 0 !important;
}

/* Eğer catalog hero gizliyse aradaki eski boşluğu ez */
.catalog-hero + .catalog-section,
.hero-section + .catalog-section {
  padding-top: 72px !important;
  margin-top: 0 !important;
}

/* Sayfa içeriğini tek genişlikte hizala */
.catalog-section .section-shell {
  width: min(1220px, calc(100% - 48px)) !important;
  max-width: 1220px !important;
  margin: 0 auto !important;
}

/* Filtre satırı ürün grid genişliğiyle aynı hizada */
.catalog-toolbar {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 0 26px !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: minmax(420px, 1fr) 270px 140px 170px !important;
  align-items: center !important;
  gap: 14px !important;

  transform: none !important;

  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Arama kutusu */
.catalog-search-field {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  padding: 0 18px !important;

  border: 1px solid rgba(255, 157, 69, 0.30) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.026)),
    rgba(34, 14, 7, 0.76) !important;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
}

/* Kategori select */
.catalog-select-field {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  padding: 0 16px !important;

  border: 1px solid rgba(255, 157, 69, 0.30) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.026)),
    rgba(34, 14, 7, 0.76) !important;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
}

.catalog-search-field input,
.catalog-select-field select {
  width: 100% !important;
  height: 100% !important;

  color: #fff7ed !important;
  background: transparent !important;

  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  font-weight: 800 !important;
}

.catalog-search-field input::placeholder {
  color: rgba(255, 226, 194, 0.50) !important;
}

.catalog-select-field select {
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
}

.catalog-search-field svg,
.catalog-select-field svg {
  flex: 0 0 auto !important;
  color: #ffb45f !important;
}

/* Filtrele butonu */
.catalog-filter-button {
  width: 100% !important;
  min-height: 58px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  padding: 0 18px !important;

  border-radius: 18px !important;
  border: 1px solid rgba(255, 210, 154, 0.62) !important;

  color: #160904 !important;
  background:
    radial-gradient(circle at 50% -35%, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(135deg, #ffd39a 0%, #ff9d45 44%, #ff7417 100%) !important;

  box-shadow:
    0 14px 34px rgba(255, 122, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.40) !important;

  font-weight: 950 !important;
  white-space: nowrap !important;
}

/* Ürün sayısı sağda düzgün dursun */
.catalog-result-count {
  width: 100% !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  margin: 0 !important;
  padding-left: 2px !important;

  color: rgba(255, 247, 237, 0.62) !important;

  font-size: 13px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.catalog-result-count span,
.catalog-result-count strong {
  color: #fff7ed !important;
  margin-right: 4px !important;
}

/* Kategori butonları filtre satırıyla aynı hizadan başlasın */
.catalog-category-tabs {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 0 34px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;

  transform: none !important;
}

.catalog-category-tabs a {
  min-height: 44px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 20px !important;

  border-radius: 999px !important;
  border: 1px solid rgba(255, 157, 69, 0.24) !important;

  color: rgba(255, 247, 237, 0.66) !important;
  background: rgba(255, 122, 24, 0.055) !important;

  font-size: 13px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.catalog-category-tabs a.active,
.catalog-category-tabs a:hover {
  color: #fff7ed !important;
  border-color: rgba(255, 157, 69, 0.48) !important;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.20), rgba(255, 122, 24, 0.075)) !important;
}

/* Ürün grid de aynı genişlikte ve doğru başlasın */
.catalog-product-grid {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;

  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

/* Kartların aşırı büyümesini engelle */
.catalog-product-card {
  min-width: 0 !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .catalog-section {
    padding-top: 56px !important;
  }

  .catalog-toolbar {
    grid-template-columns: minmax(320px, 1fr) 230px 130px !important;
  }

  .catalog-result-count {
    grid-column: 1 / -1 !important;
    justify-content: flex-end !important;
    min-height: auto !important;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Mobil */
@media (max-width: 760px) {
  .catalog-section .section-shell {
    width: calc(100% - 32px) !important;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .catalog-search-field,
  .catalog-select-field,
  .catalog-filter-button {
    min-height: 54px !important;
  }

  .catalog-result-count {
    justify-content: center !important;
  }

  .catalog-category-tabs {
    overflow-x: auto !important;
    padding-bottom: 6px !important;
  }

  .catalog-category-tabs a {
    flex: 0 0 auto !important;
  }
}

/* Sadece kategori select ve filtre butonunu sağa çek */
:root {
  --filter-controls-shift: 430px;
}

.catalog-select-field,
.catalog-filter-button {
  transform: translateX(var(--filter-controls-shift)) !important;
}

/* Ürün sayısı üstüne binmesin diye biraz sağa aç */
.catalog-result-count {
  padding-left: var(--filter-controls-shift) !important;
}

/* Mobilde kaydırma olmasın */
@media (max-width: 760px) {
  :root {
    --filter-controls-shift: 0px;
  }

  .catalog-select-field,
  .catalog-filter-button {
    transform: none !important;
  }

  .catalog-result-count {
    padding-left: 0 !important;
  }
}

/* Ürün sayısını Filtrele butonunun altına al */
.catalog-toolbar {
  grid-template-columns: minmax(420px, 1fr) 260px 140px !important;
  grid-template-rows: 58px auto !important;
  align-items: start !important;
}

/* Arama */
.catalog-search-field {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

/* Kategori */
.catalog-select-field {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

/* Filtrele */
.catalog-filter-button {
  grid-column: 3 !important;
  grid-row: 1 !important;
}

/* 4 ürün listeleniyor */
.catalog-result-count {
  grid-column: 3 !important;
  grid-row: 2 !important;

  width: 100% !important;
  min-height: auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-top: 8px !important;
  padding: 0 !important;

  font-size: 12px !important;
  font-weight: 900 !important;
  color: rgba(255, 247, 237, 0.58) !important;
  white-space: nowrap !important;
}

/* Kategori butonları çok aşağı kaçmasın */
.catalog-category-tabs {
  margin-top: 4px !important;
}

/* Mobilde eski düzgün akış */
@media (max-width: 760px) {
  .catalog-toolbar {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }

  .catalog-search-field,
  .catalog-select-field,
  .catalog-filter-button,
  .catalog-result-count {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .catalog-result-count {
    justify-content: center !important;
    margin-top: 0 !important;
  }
}

/* =====================================================
   VEHICLE CLASS TABS
   A / B / C / PD Donate klasmanları
===================================================== */

.vehicle-class-tabs {
  width: 100%;
  margin: -18px 0 34px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vehicle-class-tabs a {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  border-radius: 999px;
  border: 1px solid rgba(255, 157, 69, 0.24);

  color: rgba(255, 247, 237, 0.66);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(255, 122, 24, 0.03));

  font-size: 13px;
  font-weight: 900;
  text-decoration: none;

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.vehicle-class-tabs a:hover,
.vehicle-class-tabs a.active {
  color: #fff7ed;

  border-color: rgba(255, 157, 69, 0.48);

  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.22), rgba(255, 122, 24, 0.075));

  transform: translateY(-1px);
}

/* Kart içindeki A/B/C/PD badge */
.catalog-product-class {
  border: 1px solid rgba(255, 210, 154, 0.34) !important;

  color: #160904 !important;

  background:
    linear-gradient(135deg, #ffe0aa 0%, #ffb45f 46%, #ff7a1a 100%) !important;

  box-shadow:
    0 12px 30px rgba(255, 122, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

@media (max-width: 760px) {
  .vehicle-class-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .vehicle-class-tabs a {
    flex: 0 0 auto;
  }
}

/* =====================================================
   NASIL ÇALIŞIR SAYFASI
   ===================================================== */

.how-hero {
  padding: 110px 0 80px;
  text-align: center;
}

.how-hero h1 {
  margin: 16px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.how-hero p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.how-steps-section {
  padding: 0 0 100px;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.how-step-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.how-step-card:hover {
  border-color: rgba(255, 122, 24, 0.38);
  transform: translateY(-3px);
}

.how-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff7a1a, #ffb45f);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.how-step-card:hover::before {
  opacity: 1;
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 122, 24, 0.32);
  border-radius: 14px;
  background: rgba(255, 122, 24, 0.10);
  color: #ff9d45;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.how-step-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.how-step-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.how-step-connector {
  position: absolute;
  top: 50px;
  right: -14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 122, 24, 0.28);
  border-radius: 50%;
  background: var(--color-bg);
  color: rgba(255, 122, 24, 0.6);
  font-size: 14px;
  z-index: 2;
}

.how-step-card:last-child .how-step-connector {
  display: none;
}

/* Detay kartları */
.how-detail-section {
  padding: 0 0 100px;
}

.how-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.how-detail-card {
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-surface);
}

.how-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 122, 24, 0.28);
  border-radius: 16px;
  background: rgba(255, 122, 24, 0.09);
  color: #ff9d45;
}

.how-detail-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.how-detail-card p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.how-detail-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-detail-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.how-detail-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1px solid rgba(255, 122, 24, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 122, 24, 0.28), transparent 70%);
}

/* SSS */
.how-faq-section {
  padding: 0 0 100px;
}

.how-faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-faq-item {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.how-faq-item:hover {
  border-color: rgba(255, 122, 24, 0.28);
}

.how-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  user-select: none;
}

.how-faq-question::-webkit-details-marker {
  display: none;
}

.how-faq-question svg {
  flex-shrink: 0;
  color: #ff9d45;
  transition: transform 0.22s ease;
}

details[open] .how-faq-question svg {
  transform: rotate(180deg);
}

.how-faq-answer {
  padding: 0 28px 22px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-step-connector {
    display: none;
  }

  .how-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .how-hero {
    padding: 80px 0 60px;
  }

  .how-step-card,
  .how-detail-card {
    padding: 28px 22px;
  }

  .how-faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .how-faq-answer {
    padding: 0 20px 18px;
  }
}

.product-buy-button,
.header-ticket-button,
a[href*="ticket"] {
  background: linear-gradient(135deg, #ffb35c 0%, #ff7a1a 48%, #ff5a00 100%) !important;
}