@charset "UTF-8";
/*
  smm.io Landing Page Styles
  - Responsive layout
  - Light/Dark themes via CSS variables on :root[data-theme]
*/
/* CSS Variables */
:root {
  --bg: #ffffff;
  --bg-elev: #fafafa;
  --text: #0f172a;
  --muted: #7e88a3;
  --card: #ffffff;
  --stroke: #f45e2f;
  --primary: #f45e2f; /* smm orange */
  --primary-600: #ff5a24;
  --accent: var(--primary);
  --pill: #f2f3f5;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --gradient: linear-gradient(360deg, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0) 100%);
  --api-stroke: rgba(123, 123, 161, 0.258);
}

:root[data-theme=dark] {
  --bg: #0a0e1b;
  --bg-elev: #0f1522;
  --text: #f3f4f6;
  --muted: #9aa4b2;
  --card: #111827;
  --stroke: #f45e2f;
  --primary: #f45e2f;
  --primary-600: #ff5a24;
  --accent: var(--primary);
  --pill: #1b2333;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --gradient: linear-gradient(360deg, rgba(17, 24, 43, 1) 40%, rgba(17, 24, 43, 0) 100%);
  --api-stroke: #353535;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

button,
input {
  font-family: Inter, sans-serif;
}

select {
  color: var(--text) !important;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.accent {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px 40px;
  border-radius: 59px;
  border: 1px solid var(--stroke);
  color: var(--text);
  background: var(--card);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--primary-600);
}

.btn-outline {
  background: transparent;
  border-color: var(--stroke);
}

.btn-small {
  padding: 0.6rem 0.9rem;
  border-radius: 0.7rem;
  font-size: 0.9rem;
}

.icon-btn {
  border-radius: 10px;
  display: grid;
  place-items: center;
  background-color: transparent;
  color: var(--text);
  border: none;
  font-size: 16px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244, 94, 47, 0.1);
}

:root[data-theme=dark] .site-header.scrolled {
  background: rgba(11, 15, 23, 0.9);
  border-bottom: 1px solid rgba(244, 94, 47, 0.2);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  text-transform: lowercase;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  font-size: 14px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 0.6rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
  opacity: 1;
}

.nav-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.nav-actions .btn {
  padding: 10px 24px;
}
@media (max-width: 720px) {
  .nav-actions .btn {
    display: none;
  }
}

.profile-menu {
  position: relative;
}

.profile-menu .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--stroke);
  transition: all 0.2s ease;
}

.profile-menu .avatar:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.profile-menu .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-menu .notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--bg);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background-image: url(../../public/images/vawe.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero {
    padding-top: 50px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0% -20% auto 0%;
  height: 70%;
  z-index: -2;
  background: radial-gradient(1200px 600px at 85% 30%, color-mix(in srgb, var(--primary) 35%, transparent), transparent 60%), radial-gradient(700px 400px at 10% 20%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 70%);
  filter: blur(20px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 6rem 0 2.5rem;
}

.hero-text {
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.6vw + 0.5rem, 3.2rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}

.lead {
  max-width: 58ch;
}

.cta {
  display: flex;
  gap: 0.8rem;
  margin: 40px 0px 40px;
  flex-wrap: wrap;
}
/* Login form */
.login-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  max-width: 620px;
  margin-top: 0.25rem;
}

.field-in {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 24px;
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.field-in i {
  color: var(--muted);
}

.field-in input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 0.4rem 0.2rem;
  font-weight: 300;
}

.field-in input::placeholder {
  color: var(--muted);
}

.login-form .btn-small {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  padding: 10px 24px;
  white-space: nowrap;
  font-weight: 500;
}

/* Social scroller */
.social-scroller {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  margin-top: 1rem;
  margin-top: -150px;
}
@media (max-width: 720px) {
  .social-scroller {
    margin-top: 0px;
  }
}

.social-scroller .scroller-track {
  display: inline-flex;
  gap: 0.5rem;
  padding-block: 0.1rem;
  will-change: transform;
  animation: scrollX 22s linear infinite;
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 20px 40px;
  border-radius: 0.75rem;
  color: var(--text);
  font-weight: 500;
  backdrop-filter: blur(40px);
  background: rgba(106, 106, 149, 0.0588235294);
}
.pill i {
  font-size: 24px;
}
.pill i.fa-instagram {
  color: #c13584;
}
.pill i.fa-facebook {
  color: #1877f2;
}
.pill i.fa-youtube {
  color: #ff0000;
}
.pill i.fa-twitter {
  color: #1da1f2;
}
.pill i.fa-spotify {
  color: #1ed760;
}
.pill i.fa-twitch {
  color: #9146ff;
}

.hero-media {
  height: 600px;
  overflow: visible;
}
@media (max-width: 720px) {
  .hero-media {
    display: none;
  }
}

.shape {
  position: absolute;
  border-radius: 22px;
  filter: blur(0);
}

.shape-a {
  inset: 8% -10% 45% 20%;
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 65%, #ff8a5b));
  transform: skewX(-18deg);
}

.shape-b {
  inset: 38% -30% -20% 40%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 70%, #ff9c76), var(--primary));
  transform: skewX(-18deg);
}

.phone {
  position: absolute;
  top: 100px;
  right: 0px;
  z-index: 2;
  transform-origin: bottom right;
  max-width: 550px;
}
.phone img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-symbol {
  position: absolute;
  right: 0px;
  top: 150px;
  z-index: 1;
  max-width: 500px;
}
.hero-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  color: var(--text);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  font-size: 30px;
  z-index: 2;
}

.bubble:nth-child(1) {
  top: 40%;
  right: 40%;
}

.bubble:nth-child(2) {
  bottom: 18%;
  right: 8%;
}

.bubble:nth-child(3) {
  top: 15%;
  right: 14%;
}

/* Floating bubble animations */
@keyframes floatA {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(6px, -10px);
  }
  50% {
    transform: translate(-8px, 4px);
  }
  75% {
    transform: translate(4px, 8px);
  }
}
@keyframes floatB {
  0%, 100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-6px, 10px);
  }
  50% {
    transform: translate(10px, -6px);
  }
  80% {
    transform: translate(-4px, -4px);
  }
}
.bubble:nth-child(1) {
  animation: floatA 6s ease-in-out infinite;
}

.bubble:nth-child(2) {
  animation: floatB 7.5s ease-in-out infinite;
}

.bubble:nth-child(3) {
  animation: floatA 8.5s ease-in-out infinite reverse;
}

@media (prefers-reduced-motion: reduce) {
  .bubble {
    animation: none !important;
  }
  .social-scroller .scroller-track {
    animation: none;
  }
}
/* Section: Features */
.section-head {
  text-align: center;
  margin: 3.5rem 0 2rem;
}
.section-head .muted {
  color: var(--muted);
}
.section-head .accent {
  color: var(--accent);
}
.section-head .white {
  color: var(--text);
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-elev);
  color: var(--text);
  margin-bottom: 0.75rem;
  border: 1px solid var(--stroke);
}

.features {
  position: relative;
  padding-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--bg-elev);
  border-radius: 1rem;
  padding: 1.25rem;
}
.card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-elev);
  border: 3px solid var(--stroke);
}
.card .card h3 {
  margin: 0.5rem 0 0.25rem;
}
.card:hover {
  background: var(--primary);
}
.card:hover .card-icon {
  border: 3px solid #fff;
}

/* Split sections */
.split {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.split .text-col {
  position: relative;
  z-index: 1;
}
.split .glow {
  position: absolute;
  inset: 5% -10% -10% -10%;
  background: radial-gradient(500px 320px at 30% 30%, color-mix(in srgb, var(--primary) 25%, transparent), transparent 60%);
  filter: blur(24px);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.split-grid .text-col h3 {
  font-size: 36px;
  line-height: 1;
}

.reverse .glow {
  left: 55%;
  top: -5%;
  z-index: -1;
}
.reverse .split-grid {
  grid-template-columns: 0.95fr 1.05fr;
}
@media (max-width: 720px) {
  .reverse .split-grid {
    grid-template-columns: 1fr !important;
  }
}
.reverse .split-grid .media-col {
  position: relative;
}
.reverse .split-grid .media-col .linear-gradient {
  position: absolute;
  background: var(--gradient);
  width: 100%;
  height: 200px;
  bottom: 0px;
}

.stage {
  border-radius: 1.5rem;
  min-height: 360px;
  overflow: hidden;
}

/* Testimonials */
.testimonials {
  padding: 2rem 0 0;
}
.testimonials .testi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 1rem;
}
@media (max-width: 720px) {
  .testimonials .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials .testi-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonials .testi-main {
  background: var(--primary);
  display: flex;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
}
.testimonials .testi-main .right img {
  margin-bottom: -150px;
}
.testimonials .testi-main .muted {
  color: var(--text);
}
.testimonials .testi-main .btn {
  background: var(--pill);
}
.testimonials .testi-slider {
  position: relative;
  overflow: hidden;
}
.testimonials .testi-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}
.testimonials .slide {
  min-width: calc(50% - 0.5rem);
}
@media (max-width: 720px) {
  .testimonials .slide {
    min-width: 100%;
  }
}
.testimonials .slider-nav {
  position: absolute;
  inset: auto 8px 8px auto;
  display: flex;
  gap: 0.5rem;
}
.testimonials .nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.testimonials .stars {
  color: #fbbf24;
}
.testimonials .author {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: auto;
  flex-direction: column;
}
.testimonials .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d1d5db, #9ca3af);
  border: 2px solid var(--bg);
  box-shadow: var(--shadow);
}

/* Banner */
.cta-banner {
  padding: 2.5rem 0 3rem;
}

.banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  background: #f45e2f;
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: #fff;
  background-image: url(../../public/images/vawe-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.banner-media {
  position: relative;
  min-height: 220px;
}
.banner-media img {
  margin-bottom: -300px;
  max-width: 450px;
}

.banner-text h3 {
  font-size: 52px;
  line-height: 1.3;
  margin-bottom: 0px;
}
@media (max-width: 720px) {
  .banner-text h3 {
    font-size: 32px;
  }
}
.banner-text h3 .muted {
  color: rgba(255, 255, 255, 0.35);
}
.banner-text .accent {
  color: #fff;
}

.banner .muted {
  color: #ffe9e1;
}

/* Footer */
.site-footer {
  padding: 2.25rem 0;
  background: var(--bg);
  position: relative;
}
.site-footer:before {
  content: "";
  position: absolute;
  top: 0;
  background: radial-gradient(circle, rgb(244, 94, 47) 21%, rgba(244, 94, 47, 0.2) 48%, rgba(244, 94, 47, 0.26) 73%);
  width: 100%;
  height: 1px;
}

.footer-stack {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.brand-center {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.actions-center {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.actions-center .btn {
  border-radius: 12px;
}
.actions-center .btn-outline {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border: none;
}

.links-center {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--muted);
}
@media (max-width: 720px) {
  .links-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .links-center span {
    display: none;
  }
}

.links-center a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.links-center a:hover {
  color: var(--text);
}

.links-center .sep {
  opacity: 0.6;
}

.copy {
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-media {
    height: 400px;
    order: 2;
  }
  .hero-text {
    padding-right: 0;
  }
  .login-form {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .login-form .btn-small {
    justify-content: center;
  }
  .media-stage {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
  .hero-symbol {
    right: 5%;
    top: 10%;
    width: 90%;
    height: 70%;
  }
  .phone {
    right: 10%;
    bottom: 10%;
    width: 55%;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .slide {
    min-width: 100%;
  }
  .banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .banner-media {
    order: 2;
    min-height: 180px;
  }
}
@media (max-width: 720px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav .nav-toggle {
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: var(--bg);
    border-bottom: 1px solid var(--stroke);
    padding: 0.75rem 4%;
    flex-direction: column;
    gap: 0.25rem;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-actions {
    justify-self: start;
  }
}
/* Page: Services List */
.page-services {
  /* header area */
  /* toolbar */
}
.page-services .page-hero {
  padding: 6rem 0 1rem;
  text-align: center;
  position: relative;
}
.page-services .page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--muted);
}
.page-services .page-hero h1 {
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(1.6rem, 2.6vw + 0.5rem, 2.4rem);
}
.page-services .page-hero p {
  margin: 0 auto;
  max-width: 70ch;
}
.page-services .toolbar {
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
}
.page-services .filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.page-services .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px 24px;
  background: rgba(106, 106, 149, 0.0588235294);
  color: var(--muted);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-weight: 500;
}
.page-services .filter-btn:hover {
  background: var(--bg-elev);
  color: var(--text);
}
.page-services .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.page-services .search-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.page-services .search-filters .btn {
  height: 58px;
  border-radius: 12px;
}
.page-services .search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 20px 24px;
  min-width: 250px;
  height: 60px;
  background: rgba(106, 106, 149, 0.0588235294);
  overflow: hidden;
}

.search-box i {
  color: var(--muted);
  font-size: 18px;
  margin-left: 12px;
  margin-right: 8px;
}

.search-box input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.select-with-icon {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 0.75rem;
  overflow: hidden;
  height: 60px;
}
@media (max-width: 720px) {
  .select-with-icon {
    width: 100%;
  }
}

.select-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.search-filters select {
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 20px 24px;
  font-weight: 600;
  min-width: 140px;
  border: none;
  height: 60px;
  outline: none;
  cursor: pointer;
  font-weight: 500;
}
@media (max-width: 720px) {
  .search-filters select {
    width: 80%;
  }
}

.search-filters select:focus {
  outline: none;
}

/* services container */
.services-container {
  border-radius: 1rem;
  overflow: hidden;
}

.service-group {
  margin-bottom: 1.5rem;
}

.group-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.group-header.orange {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 65%, #ff8a5b), var(--primary));
}

.group-header.purple {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.group-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

/* services grid - header row */
.services-grid {
  display: grid;
  grid-template-columns: 100px 60px 1fr 120px 100px 100px 180px 80px;
  gap: 0;
  align-items: center;
  border-radius: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.grid-header {
  text-align: center;
  padding: 0.5rem;
  font-weight: 700;
  color: var(--muted);
}

/* service items */
.service-item {
  display: grid;
  grid-template-columns: 80px 60px 1fr 120px 100px 100px 180px 80px;
  gap: 0;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--card);
  border-radius: 0.4rem;
  margin-bottom: 0.15rem;
  transition: background 0.2s ease;
  border: 1px solid transparent;
  margin-bottom: 16px;
  grid-column: 1/-1;
}

.service-item:hover {
  background: var(--bg-elev);
  border-color: var(--stroke);
}

.service-id {
  display: flex;
  align-items: center;
}

.id-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  min-width: 50px;
  justify-content: center;
  color: #fff;
}

.service-group[data-category=instagram] .id-badge {
  background: var(--primary);
}

.service-group[data-category=twitch] .id-badge {
  background: #a855f7;
}

.service-favorite {
  display: flex;
  justify-content: center;
}

.favorite-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 18px;
}

.favorite-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.favorite-btn.faved {
  color: #e11d48;
  background: color-mix(in srgb, #e11d48 12%, var(--card));
  border-color: color-mix(in srgb, #e11d48 25%, var(--stroke));
}

.service-name {
  padding-right: 1rem;
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.platform-info i.fa-play {
  color: var(--text);
  font-size: 0.8rem;
  margin-right: 0.25rem;
}

.service-price {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.service-min,
.service-max {
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.service-duration {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

.service-action {
  display: flex;
  justify-content: center;
}

.action-btn {
  width: 45px;
  height: 45px;
  border-radius: 0.5rem;
  background: var(--bg);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 18px;
}

.action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-elev);
}

@media (max-width: 1200px) {
  .services-grid,
  .service-item {
    gap: 0.5rem;
  }
  .service-name {
    padding-right: 0.5rem;
  }
}
@media (max-width: 980px) {
  .services-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--stroke) var(--bg-elev);
  }
  .services-container::-webkit-scrollbar {
    height: 8px;
  }
  .services-container::-webkit-scrollbar-track {
    background: var(--bg-elev);
    border-radius: 4px;
  }
  .services-container::-webkit-scrollbar-thumb {
    background: var(--stroke);
    border-radius: 4px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: 100px 60px 1fr 120px 100px 100px 180px 80px;
    min-width: 1200px;
    gap: 0;
    align-items: center;
    border-radius: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }
  .service-item {
    display: grid;
    grid-template-columns: 100px 60px 1fr 120px 100px 100px 180px 80px;
    gap: 0;
    align-items: center;
    padding: 0.6rem 1.25rem;
    background: var(--card);
    border-radius: 0.4rem;
    margin-bottom: 0.15rem;
    transition: background 0.2s ease;
    border: 1px solid transparent;
    margin-bottom: 16px;
    min-width: 1200px;
  }
  .service-item::before {
    display: none;
  }
  .service-id,
  .service-favorite,
  .service-price,
  .service-min,
  .service-max,
  .service-duration,
  .service-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-box {
    min-width: auto;
  }
}
@media (max-width: 720px) {
  .filter-buttons {
    justify-content: center;
  }
  .filter-btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
  .group-header {
    padding: 0.75rem 1rem;
  }
  .group-title {
    font-size: 1rem;
  }
  .service-item {
    padding: 0.75rem;
  }
  .services-container {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  .services-container::-webkit-scrollbar {
    height: 6px;
  }
}
/* Page: API Docs */
.page-api {
  background: var(--bg);
  min-height: 100vh;
  margin-top: 100px;
  /* API Details Table */
  /* API Sections */
  /* Dropdown Section */
  /* Parameters Table */
  /* Example Response */
  /* JSON Syntax Highlighting */
}
@media (max-width: 720px) {
  .page-api {
    margin-top: 50px;
  }
}
.page-api .api-content {
  background: rgba(106, 106, 149, 0.0392156863);
  padding: 20px;
  border-radius: 12px;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .page-api .api-content {
    padding: 0px;
  }
}
.page-api .hero-card {
  display: flex;
  background: rgba(106, 106, 149, 0.0392156863);
  border-radius: 1.5rem;
  overflow: hidden;
  background-image: url("../../public/images/banner-bg.png");
  background-size: 500px;
  background-position: 120% center;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .page-api .hero-card {
    background-size: 300px;
    background-position: 100% 130%;
  }
}
@media (min-width: 768px) {
  .page-api .hero-card {
    max-height: 265px;
  }
}
.page-api .hero-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.page-api .hero-left h1 {
  font-size: 24px !important;
}
.page-api .hero-left p {
  font-size: 18px !important;
}
.page-api .hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.page-api .api-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background: transparent;
  display: grid;
  place-items: center;
  margin: 0 0 2rem;
  color: var(--text);
  font-size: 24px;
}
.page-api .hero-left h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.page-api .hero-left p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}
.page-api .hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-api .hero-image img {
  width: 100%;
  border-radius: 1rem;
  object-fit: contain;
  margin-bottom: -200px;
}
.page-api .notification-bubble {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  background: #fff;
  color: var(--text);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 200px;
  z-index: 2;
}
.page-api .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.page-api .check-icon i {
  color: #fff;
  font-size: 0.8rem;
}
.page-api .notification-text {
  flex: 1;
}
.page-api .notification-text .main-text {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.page-api .notification-text .sub-text {
  font-size: 0.8rem;
  color: var(--muted);
}
.page-api .api-details {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-elev);
}
.page-api .api-details::-webkit-scrollbar {
  height: 8px;
}
.page-api .api-details::-webkit-scrollbar-track {
  background: var(--bg-elev);
  border-radius: 4px;
}
.page-api .api-details::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
.page-api .api-details h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
}
.page-api .api-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border: 1px solid var(--stroke);
  border-radius: 0.75rem;
  overflow: hidden;
}
.page-api .api-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--api-stroke);
  color: var(--text);
}
.page-api .api-table td:first-child {
  font-weight: 600;
  color: var(--muted);
  width: 40%;
}
.page-api .api-table tr:last-child td {
  border-bottom: none;
}
.page-api .api-section {
  margin: 3rem 0;
  border-radius: 1rem;
}
.page-api .api-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
}
.page-api .dropdown-section {
  margin-bottom: 2rem;
}
.page-api .service-dropdown {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  min-width: 150px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}
.page-api .service-dropdown:focus {
  outline: none;
}
.page-api .params-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--api-stroke);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.page-api .params-table th {
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--api-stroke);
}
.page-api .params-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--api-stroke);
  color: var(--text);
  font-size: 0.9rem;
}
.page-api .params-table tr:last-child td {
  border-bottom: none;
}
.page-api .example-response h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}
.page-api .code-block {
  background: rgba(244, 94, 47, 0.0588235294);
  border-radius: 0.75rem;
  overflow: hidden;
}
.page-api .code-block pre {
  margin: 0;
  padding: 1.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  overflow: auto;
  background: rgba(244, 94, 47, 0.0588235294);
  color: #e5e7eb;
}
.page-api .json-key {
  color: var(--primary);
  font-weight: 600;
}
.page-api .json-string {
  color: #ff8a5b;
}
.page-api .json-number {
  color: #a855f7;
}
@media (max-width: 980px) {
  .page-api .hero-card {
    flex-direction: column;
    min-height: auto;
  }
  .page-api .hero-left {
    flex: none;
    padding: 2rem;
    text-align: center;
  }
  .page-api .hero-right {
    flex: none;
    min-height: 300px;
  }
  .page-api .api-icon {
    margin: 0 auto 2rem;
  }
  .page-api .hero-left p {
    margin: 0 auto;
  }
}
@media (max-width: 720px) {
  .page-api .api-hero {
    padding: 2rem 0 1rem;
  }
  .page-api .api-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  .page-api .api-section {
    padding: 8px;
  }
  .page-api .api-section h2 {
    font-size: 1.25rem;
  }
  .page-api .params-table th,
  .page-api .params-table td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  .page-api .code-block pre {
    padding: 1rem;
    font-size: 0.8rem;
  }
  .page-api .notification-bubble {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    max-width: none;
  }
  .page-api .api-details {
    padding: 12px;
  }
  .page-api .api-details::-webkit-scrollbar {
    height: 6px;
  }
  .page-api .api-table {
    min-width: 500px;
  }
}

/* Page: Auth (Register) */
.page-auth {
  position: relative;
  overflow-x: hidden;
}

.page-auth::before {
  content: "";
  position: fixed;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 94, 47, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}

.page-auth .auth-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 1rem;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 720px) {
  .page-auth .auth-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
}

.auth-media {
  position: relative;
  min-height: 420px;
}

.auth-media::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 94, 47, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(20px);
}

.auth-phone {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.auth-phone img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.auth-card {
  position: absolute;
  right: 6%;
  top: 18%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  min-width: 180px;
}

.card-content {
  display: flex;
  align-items: center;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-text {
  flex: 1;
}

.card-title {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}

.auth-form {
  position: relative;
}

.auth-form h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 1.8vw + 0.6rem, 2rem);
}

.form {
  display: grid;
  gap: 0.7rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text);
}

.field input[type=text],
.field input[type=email],
.field input[type=password] {
  height: 44px;
  border-radius: 8px;
  background: rgba(106, 106, 149, 0.0588235294);
  color: var(--text);
  padding: 30px 25px;
  font-weight: 600;
  border: none;
}

.check {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.check input {
  width: 18px;
  height: 18px;
}

.form .btn-primary {
  height: 46px;
  justify-content: center;
  font-weight: 500;
  border-radius: 12px;
  padding: 30px 30px;
  margin-top: 12px;
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.form-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }
  .auth-media {
    order: 2;
    min-height: 300px;
  }
}
/* Page: Orders (Yeni Sipariş) */
.page-orders {
  /* Sidebar */
  /* Content */
  /* Form */
  /* Right service box */
  /* toolbar */
  /* Filters + Services table (dashboard style) */
  /* Balance/Top-up page */
  /* Payment Methods Section - Full Width */
  /* Support Detail Page Styles */
  /* Restore missing styles */
  /* Restore missing styles */
}
.page-orders .layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.page-orders .sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  background: rgba(106, 106, 149, 0.0588235294);
  padding: 1rem 0.75rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.75rem;
}
.page-orders .sidebar.show {
  background: #0a0e1b;
}
.page-orders .user-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.9rem;
  padding: 1rem;
  position: relative;
}
.page-orders .avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.page-orders .user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page-orders .username {
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}
.page-orders .balance-text {
  font-size: 0.85rem;
  color: var(--muted);
}
.page-orders .balance {
  color: var(--primary);
  font-weight: 700;
}
.page-orders .settings-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.page-orders .settings-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.page-orders .menu {
  display: grid;
  gap: 0.35rem;
}
.page-orders .menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 16px;
  border-radius: 0.7rem;
  color: var(--text);
  text-decoration: none;
  border: 1px solid transparent;
}
.page-orders .menu a.active,
.page-orders .menu a:hover {
  background: rgba(244, 93, 47, 0.1607843137);
  color: #f45d2f;
}
.page-orders .menu a.active i,
.page-orders .menu a:hover i {
  color: #f45d2f;
}
.page-orders .menu .icon {
  width: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
}
.page-orders .content {
  padding: 1rem;
}
.page-orders .topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 24px;
  background: rgba(106, 106, 149, 0.0588235294);
  padding: 30px 24px;
  border-radius: 12px;
}
@media (max-width: 720px) {
  .page-orders .topbar {
    justify-content: flex-end;
  }
}
.page-orders .topbar .greet {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 720px) {
  .page-orders .topbar .greet {
    display: none;
  }
}
.page-orders .welcome-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
}
.page-orders .welcome-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}
.page-orders .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.page-orders .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-orders .topbar .actions {
  display: flex;
  gap: 0.5rem;
}
.page-orders .topbar .icon-btn {
  margin-right: 10px;
}
.page-orders .sb-toggle {
  display: none;
}
@media (max-width: 980px) {
  .page-orders .sb-toggle {
    display: inline-grid;
  }
  .page-orders .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 260px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 60;
  }
  .page-orders .sidebar.show {
    transform: translateX(0);
  }
}
.page-orders .hero-card {
  display: flex;
  background: rgba(106, 106, 149, 0.0392156863);
  border-radius: 1.5rem;
  overflow: hidden;
  background-image: url("../../public/images/banner-bg.png");
  background-size: 500px;
  background-position: 120% center;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .page-orders .hero-card {
    background-size: 300px;
    background-position: 100% 130%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-orders .hero-card {
    max-height: 265px;
  }
}
.page-orders .hero-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
@media (max-width: 720px) {
  .page-orders .hero-left {
    align-items: center;
  }
}
.page-orders .hero-left h1 {
  font-size: 24px !important;
}
.page-orders .hero-left p {
  font-size: 18px !important;
}
.page-orders .hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.page-orders .hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background: transparent;
  display: grid;
  place-items: center;
  margin: 0 0 2rem;
  color: var(--text);
  font-size: 24px;
}
.page-orders .hero-left h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}
.page-orders .hero-left p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}
.page-orders .hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-orders .hero-image img {
  width: 100%;
  border-radius: 1rem;
  object-fit: contain;
  margin-bottom: -200px;
}
.page-orders .stats-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .page-orders .stats-grid {
    grid-template-columns: 1fr !important;
  }
}
.page-orders .stat {
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-orders .stat-top {
  background: rgba(106, 106, 149, 0.0588235294);
  padding: 16px;
  border-bottom: 1px solid rgba(244, 94, 47, 0.1);
  max-width: 75%;
  width: 100%;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.page-orders .stat-value {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.page-orders .stat-bottom {
  background: var(--primary);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  border-radius: 12px;
  height: 100%;
}
@media (max-width: 720px) {
  .page-orders .stat-bottom {
    width: 100%;
  }
}
.page-orders .stat-icon {
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}
.page-orders .stat-label {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  flex: 1;
}
.page-orders .stat-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 500;
}
.page-orders .stat-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.page-orders .order-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
}
.page-orders .dash-card {
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 1rem;
  padding: 16px;
}
.page-orders .order-form {
  padding: 0.9rem;
  display: grid;
  gap: 0.8rem;
}
.page-orders .order-form .field {
  display: grid;
  gap: 0.35rem;
}
.page-orders .order-form .field label {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--muted);
}
.page-orders .order-form select,
.page-orders .order-form input {
  border-radius: 0.8rem;
  background: rgba(106, 106, 149, 0.0588235294);
  color: var(--text);
  padding: 16px 24px;
  font-weight: 600;
  width: 100%;
  border: none;
}
.page-orders .order-form .btn-primary {
  height: 46px;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 12px;
  font-weight: 500;
}
.page-orders .service-box {
  padding: 1.5rem;
  display: grid;
  gap: 1.5rem;
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 1rem;
}
.page-orders .service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-orders .service-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
.page-orders .service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.page-orders .service-title {
  font-weight: 500;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}
.page-orders .service-price {
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
  flex-shrink: 0;
}
.page-orders .service-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 0.75rem;
}
.page-orders .detail-item {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.page-orders .detail-item.highlight {
  color: #10b981;
  font-weight: 600;
}
.page-orders .service-btn {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: auto;
}
.page-orders .service-btn:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}
.page-orders .service-features {
  display: grid;
  gap: 0.75rem;
}
.page-orders .feature-item {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding-left: 0.5rem;
}
.page-orders .service-notes {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 0.75rem;
}
.page-orders .notes-title {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0.5rem;
}
.page-orders .note-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.page-orders .note-item i {
  color: #ef4444;
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.page-orders .toolbar {
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
}
.page-orders .filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.page-orders .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px 24px;
  background: rgba(106, 106, 149, 0.0588235294);
  color: var(--muted);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-weight: 500;
}
.page-orders .filter-btn:hover {
  background: var(--bg-elev);
  color: var(--text);
}
.page-orders .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.page-orders .search-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.page-orders .search-filters .btn {
  height: 58px;
  border-radius: 12px;
}
.page-orders .search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 20px 24px;
  min-width: 250px;
  height: 60px;
  background: rgba(106, 106, 149, 0.0588235294);
  overflow: hidden;
}
.page-orders .filters {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.page-orders .filters .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.page-orders .filters .btn,
.page-orders .filters select,
.page-orders .filters input {
  height: 40px;
}
.page-orders .filters select,
.page-orders .filters input {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: 0.7rem;
  padding: 0.45rem 0.65rem;
  font-weight: 700;
}
.page-orders .filters .searchbox {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 0.8rem;
  padding: 0.35rem 0.5rem;
  min-width: 220px;
}
.page-orders .filters .searchbox input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
}
.page-orders .filters .right {
  margin-left: auto;
}
.page-orders .services-ctx {
  margin-top: 0.6rem;
}
.page-orders .services-ctx .table-scroll {
  overflow: auto;
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  background: var(--card);
}
.page-orders .services-ctx table.services {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 880px;
}
.page-orders .services-ctx .services thead th {
  position: sticky;
  top: 0;
  background: var(--bg-elev);
  color: var(--muted);
  font-weight: 700;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--stroke);
  padding: 0.9rem 0.9rem;
}
.page-orders .services-ctx .services tbody tr {
  background: var(--card);
}
.page-orders .services-ctx .services td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--stroke);
  vertical-align: middle;
}
.page-orders .services-ctx .services .id {
  width: 86px;
  font-weight: 800;
  color: var(--text);
}
.page-orders .services-ctx .services .price,
.page-orders .services-ctx .services .num {
  white-space: nowrap;
  font-weight: 700;
}
.page-orders .services-ctx .services .muted {
  color: var(--muted);
  font-weight: 600;
}
.page-orders .services-ctx .services .act {
  text-align: right;
}
.page-orders .services-ctx .services .icon-btn {
  width: 34px;
  height: 34px;
}
.page-orders .services-ctx .services .fav {
  width: 56px;
}
.page-orders .services-ctx .fav-btn.faved {
  color: #e11d48;
  background: color-mix(in srgb, #e11d48 12%, var(--card));
  border-color: color-mix(in srgb, #e11d48 25%, var(--stroke));
}
.page-orders .services-ctx tbody.group.collapsed tr:not(.group-head) {
  display: none;
}
.page-orders .services-ctx tr.group-head td {
  padding: 0;
  border-bottom: 0;
}
.page-orders .services-ctx .group-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.8rem;
  margin: 0.6rem 0.6rem;
  color: #fff;
  font-weight: 700;
  justify-content: space-between;
}
.page-orders .services-ctx .group-bar .title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.page-orders .services-ctx .group-bar button {
  all: unset;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}
.page-orders .services-ctx .group-bar.orange {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 65%, #ff8a5b), var(--primary));
}
.page-orders .services-ctx .group-bar.purple {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}
.page-orders .service-item {
  min-width: 1048px;
}
.page-orders .services-grid {
  min-width: 1048px;
}
.page-orders .page-orders-filter-tabs {
  margin-top: 24px;
}
.page-orders .page-orders-filter-tabs .filter-tab {
  border: none;
  border-radius: 6px;
  padding: 18px 24px;
  background-color: rgba(106, 106, 149, 0.0588235294);
  font-weight: 500;
}
.page-orders .page-orders-filter-tabs .filter-tab:hover {
  background-color: rgba(106, 106, 149, 0.1215686275);
}
.page-orders .page-orders-filter-tabs .filter-tab.active {
  background-color: rgba(106, 106, 149, 0.1215686275);
  color: var(--primary);
}
.page-orders .page-orders-filter-tabs .search-btn {
  min-height: 50px;
  border: none;
}
.page-orders .page-orders-filter-tabs .search-container {
  border: none;
  border-radius: 6px;
}
.page-orders .page-orders-filter-tabs input {
  border: none;
}
@media (max-width: 720px) {
  .page-orders .services-ctx .services thead {
    display: none;
  }
  .page-orders .services-ctx table.services {
    min-width: 0;
  }
  .page-orders .services-ctx .services tbody tr:not(.group-head) {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.35rem 0.75rem;
    padding: 0.7rem 0.9rem;
    align-items: center;
  }
  .page-orders .services-ctx .services td {
    border: 0;
    padding: 0.15rem 0;
  }
  .page-orders .services-ctx .services td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 700;
  }
  .page-orders .services-ctx .services td.id {
    grid-column: 1;
  }
  .page-orders .services-ctx .services td.fav {
    grid-column: 3;
    justify-self: end;
  }
  .page-orders .services-ctx .services td[data-label="Servis Adı"] {
    grid-column: 1/-1;
  }
  .page-orders .services-ctx .services .act {
    grid-column: 1/-1;
    text-align: right;
    padding-top: 0.35rem;
  }
}
.page-orders .balance-hero {
  margin-top: 0.5rem;
}
.page-orders .payment-methods {
  margin: 1.5rem 0;
}
.page-orders .payment-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  font-size: 16px;
}
.page-orders .payment-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.page-orders .payment-card {
  background: var(--bg-elev);
  border: 1px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.page-orders .payment-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.page-orders .payment-card.active {
  background: rgba(244, 94, 47, 0.1490196078);
  color: #fff;
}
.page-orders .card-content {
  display: grid;
}
.page-orders .card-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.page-orders .card-title i {
  font-size: 1rem;
  color: var(--text);
  margin-right: 10px;
}
.page-orders .card-subtitle {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}
.page-orders .radio-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
}
.page-orders .radio-btn.selected::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--text);
  border-radius: 50%;
}
.page-orders .card-content {
  display: grid;
}
.page-orders .card-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  padding-right: 36px;
}
.page-orders .card-subtitle {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.3;
  color: var(--text);
}
@media (max-width: 1200px) {
  .page-orders .payment-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
@media (max-width: 720px) {
  .page-orders .payment-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .page-orders .payment-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .page-orders .payment-card {
    padding: 1.25rem;
  }
}
.page-orders .ticket-header {
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-orders .ticket-info {
  display: grid;
  gap: 1rem;
}
.page-orders .ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  width: fit-content;
}
.page-orders .ticket-status.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.page-orders .ticket-status.solved {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.page-orders .ticket-details h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}
.page-orders .ticket-details p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}
.page-orders .ticket-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.page-orders .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.page-orders .meta-item i {
  color: var(--primary);
}
.page-orders .chat-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  height: calc(100vh - 300px);
  min-height: 500px;
}
.page-orders .chat-container {
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-orders .chat-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: grid;
  gap: 1rem;
}
.page-orders .message {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.page-orders .message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}
.page-orders .message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-orders .message-content {
  flex: 1;
  background: var(--card);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-orders .message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.page-orders .message-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.page-orders .message-time {
  color: var(--muted);
  font-size: 0.8rem;
}
.page-orders .message-text {
  color: var(--text);
  line-height: 1.5;
  font-size: 0.95rem;
}
.page-orders .user-message .message-content {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}
.page-orders .user-message .message-author,
.page-orders .user-message .message-time,
.page-orders .user-message .message-text {
  color: #fff;
}
.page-orders .chat-input {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
}
.page-orders .input-container {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.page-orders .input-container textarea {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  background: rgba(106, 106, 149, 0.0392156863);
  color: var(--text);
  font-family: Inter, sans-serif;
  resize: none;
  outline: none;
  font-size: 0.9rem;
}
.page-orders .send-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-orders .send-btn:hover {
  background: var(--primary-600);
  transform: scale(1.05);
}
.page-orders .chat-actions {
  display: flex;
  gap: 0.75rem;
}
.page-orders .action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: rgba(106, 106, 149, 0.0392156863);
  color: var(--text);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-orders .action-btn:hover {
  background: rgba(106, 106, 149, 0.1215686275);
}
.page-orders .ticket-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.page-orders .sidebar-card {
  background: rgba(106, 106, 149, 0.0588235294);
  border-radius: 1rem;
  padding: 1.5rem;
}
.page-orders .sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem 0;
}
.page-orders .info-grid {
  display: grid;
  gap: 0.75rem;
}
.page-orders .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-orders .info-item:last-child {
  border-bottom: none;
}
.page-orders .info-item .label {
  color: var(--muted);
  font-size: 0.85rem;
}
.page-orders .info-item .value {
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
}
.page-orders .status-pending {
  color: #f59e0b !important;
}
.page-orders .priority-medium {
  color: #f59e0b !important;
}
.page-orders .action-buttons {
  display: grid;
  gap: 0.75rem;
}
.page-orders .action-buttons .btn {
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}
@media (max-width: 1200px) {
  .page-orders .chat-section {
    grid-template-columns: 1fr;
  }
  .page-orders .ticket-sidebar {
    order: -1;
  }
}
@media (max-width: 720px) {
  .page-orders .ticket-header {
    padding: 1rem;
  }
  .page-orders .ticket-details h1 {
    font-size: 1.25rem;
  }
  .page-orders .ticket-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .page-orders .chat-section {
    height: auto;
    min-height: auto;
  }
  .page-orders .chat-messages {
    padding: 1rem;
  }
  .page-orders .chat-input {
    padding: 1rem;
  }
  .page-orders .sidebar-card {
    padding: 1rem;
  }
}
.page-orders .payment-methods .amount-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.page-orders .payment-methods .chip-amt {
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-orders .payment-methods .chip-amt:hover,
.page-orders .payment-methods .chip-amt.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.page-orders .payment-methods .field-inline {
  margin-bottom: 1rem;
}
.page-orders .payment-methods .field-inline input {
  height: 48px;
  font-size: 1rem;
}
.page-orders .payment-methods .btn-primary {
  width: 100%;
  height: 48px;
  font-size: 1rem;
  font-weight: 600;
}
.page-orders .pay-body input[type=text],
.page-orders .pay-body input[type=number],
.page-orders .pay-body select {
  height: 42px;
  border-radius: 0.8rem;
  background: var(--card);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-weight: 500;
  width: 100%;
  background-color: rgba(106, 106, 149, 0.0392156863) !important;
  font-size: 14px !important;
  border-radius: 6px !important;
  min-height: 50px !important;
  border: none !important;
}
.page-orders .pay-body .btn-primary {
  background-color: #f45e2f !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50px !important;
  border: none !important;
  font-size: 14px !important;
}
.page-orders .balance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 0.8rem;
}
.page-orders .amount-selection-card {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
  font-weight: 500;
}
.page-orders .amount-selection-card .amount-body h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.page-orders .amount-selection-card .amount-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.page-orders .amount-selection-card .chip-amt {
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  border: 1px solid rgba(68, 86, 99, 0.5019607843);
  background: var(--card);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
}
.page-orders .amount-selection-card .chip-amt:hover,
.page-orders .amount-selection-card .chip-amt.active {
  background: rgba(244, 94, 47, 0.1019607843);
  color: #fff;
  border-color: rgba(244, 94, 47, 0.5019607843);
}
.page-orders .amount-selection-card .field-inline {
  margin-bottom: 1.5rem;
}
.page-orders .amount-selection-card .field-inline input {
  height: 48px;
  font-size: 1rem;
}
.page-orders .amount-selection-card .btn-primary {
  width: 100%;
  height: 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.page-orders .amount-input-section {
  margin-bottom: 1.5rem;
}
.page-orders .amount-input-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem 0;
}
.page-orders .amount-selection-card .field-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
  background: var(--bg-elev);
  border-radius: 8px;
  overflow: hidden;
}
.page-orders .amount-selection-card .field-inline .prefix {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  border-radius: 0px;
}
.page-orders .amount-selection-card .field-inline input {
  height: 48px;
  border: none;
  background: transparent;
  color: var(--text);
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
}
.page-orders .amount-selection-card .field-inline input::placeholder {
  color: var(--muted);
}
.page-orders .amount-input-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-orders .amount-body h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.page-orders .amount-display {
  text-align: center;
  display: grid;
  gap: 0.5rem;
}
.page-orders .amount-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.page-orders .amount-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.page-orders .pay-card {
  border-radius: 1rem;
}
.page-orders .pay-body {
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}
.page-orders .pay-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.page-orders .pay-tab {
  display: grid;
  gap: 0.25rem;
  padding: 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid var(--stroke);
  background: var(--bg-elev);
  font-weight: 800;
}
.page-orders .pay-tab small {
  color: var(--muted);
  font-weight: 600;
}
.page-orders .amount-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.page-orders .chip-amt {
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 0.7rem;
  border: 1px solid var(--stroke);
  background: var(--card);
  font-weight: 800;
}
.page-orders .field-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.4rem;
}
.page-orders .field-inline .prefix {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  background: var(--bg-elev);
  font-weight: 800;
}
.page-orders .pay-body input[type=text],
.page-orders .pay-body input[type=number],
.page-orders .pay-body select {
  height: 42px;
  border-radius: 0.8rem;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-weight: 600;
}
.page-orders .promo-visual {
  position: relative;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 68%, #ff8a5b), var(--primary));
}
.page-orders .promo-visual .img-plc {
  position: absolute;
  inset: 10% 16% 10% 46%;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  background: linear-gradient(180deg, #e5e7eb, #9ca3af);
}
.page-orders .bank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 0.9rem;
}
.page-orders .bank-list {
  padding: 0.9rem;
  display: grid;
  gap: 0.6rem;
}
.page-orders .bank-item {
  background: var(--bg-elev);
  border-radius: 0.8rem;
  padding: 0.7rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
}
.page-orders .bank-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
}
.page-orders .bank-item .name {
  font-weight: 800;
}
.page-orders .bank-item .iban {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 1200px) {
  .page-orders .balance-grid {
    grid-template-columns: 1fr;
  }
  .page-orders .bank-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .page-orders .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-orders .order-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .page-orders .layout {
    grid-template-columns: 1fr;
  }
  .page-orders .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 260px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 60;
  }
  .page-orders .sidebar.show {
    transform: translateX(0);
  }
  .page-orders .content {
    padding: 1rem 0.75rem;
    overflow-x: hidden;
  }
  .page-orders .sb-toggle {
    display: inline-grid;
  }
  .page-orders .hero-panel {
    grid-template-columns: 1fr;
  }
}

/* Page: Support */
.page-support .support-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  margin-top: 0.8rem;
  margin-bottom: 24px;
  margin-top: 24px;
}
.page-support .support-card {
  border-radius: 1rem;
}
.page-support .support-body {
  display: grid;
  gap: 0.6rem;
}
.page-support .support-body select,
.page-support .support-body input[type=text],
.page-support .support-body textarea {
  width: 100%;
  border-radius: 0.8rem;
  color: var(--text);
  padding: 0.6rem 0.75rem;
  font-weight: 500;
  font-size: 14px;
  border: none;
  background-color: rgba(106, 106, 149, 0.0392156863);
  min-height: 50px;
}
.page-support .support-body textarea {
  min-height: 120px;
  resize: vertical;
  font-family: Inter, sans-serif;
}
.page-support .support-visual {
  border-radius: 1rem;
}
.page-support .support-visual .promo-visual {
  position: relative;
  min-height: 240px;
  height: 100%;
}
.page-support .support-visual .promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.page-support .support-body .btn-primary {
  background-color: #f45e2f !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50px !important;
  border: none !important;
  font-size: 14px !important;
}
.page-support .tickets-card {
  border-radius: 1rem;
}
.page-support .tickets-body {
  display: grid;
  gap: 16px;
}
.page-support .ticket-item {
  background: rgba(106, 106, 149, 0.0392156863);
  border-radius: 12px;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
}
.page-support .ticket-item i {
  font-size: 24px;
  color: var(--primary);
}
.page-support .ticket-item .label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(115, 119, 139, 0.1215686275);
  font-weight: 800;
  font-size: 0.8rem;
}
.page-support .ticket-item .btn-small {
  background-color: rgba(106, 106, 149, 0.1215686275);
  font-size: 12px;
  color: var(--text);
  padding: 6px 12px;
  border: none;
  font-weight: 500;
  border-radius: 6px;
}
.page-support .state {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 12px 16px;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 0.8rem;
}
.page-support .state.answered {
  background: rgba(2, 6, 23, 0.5);
  color: #e5e7eb;
}
.page-support .state.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.page-support .state.solved {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
@media (max-width: 980px) {
  .page-support .support-grid {
    grid-template-columns: 1fr;
  }
  .page-support .ticket-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Page: Panel Kirala */
.page-panel .panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  margin-top: 0.8rem;
}
.page-panel .panel-card {
  border-radius: 1rem;
}
.page-panel .panel-body {
  display: grid;
  gap: 16px;
}
.page-panel .panel-body .row2 {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0.6rem;
}
.page-panel .panel-body input[type=text],
.page-panel .panel-body input[type=password],
.page-panel .panel-body select {
  border-radius: 0.8rem;
  background: rgba(106, 106, 149, 0.0392156863);
  color: var(--text);
  padding: 12px 16px;
  font-weight: 600;
  width: 100%;
  border: none;
  font-size: 14px;
  font-weight: 500;
  min-height: 52px;
  border-radius: 6px !important;
}
.page-panel .price-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0.6rem;
}
.page-panel .price-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  height: 46px;
  border-radius: 0.9rem;
  border: 1px solid var(--stroke);
  background: var(--bg-elev);
  font-weight: 800;
  background-color: var(--text);
  border: none;
  border-radius: 8px;
  min-height: 52px;
}
.page-panel .price-row .btn-primary {
  border-radius: 0.8rem;
  background: #f45e2f;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
}
.page-panel .ns-card {
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.page-panel .ns-visual {
  position: relative;
  min-height: 260px;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 68%, #ff8a5b), var(--primary));
  overflow: hidden;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}
.page-panel .ns-visual .lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.6rem;
  margin-top: 32px;
}
.page-panel .ns-line {
  height: 52px;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 500;
  width: 100%;
}
@media (max-width: 1200px) {
  .page-panel .panel-grid {
    grid-template-columns: 1fr;
  }
  .page-panel .price-row {
    grid-template-columns: 1fr;
  }
}

/* Page: Profile (Hesabım) */
.page-profile .profile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  margin-top: 0.8rem;
}
.page-profile .profile-card {
  border-radius: 1rem;
}
.page-profile .profile-body {
  display: grid;
  gap: 16px;
}
.page-profile .profile-body input[type=password],
.page-profile .profile-body input[type=text],
.page-profile .profile-body select {
  height: 50px;
  border-radius: 0.8rem;
  color: var(--text);
  background-color: rgba(106, 106, 149, 0.0392156863);
  padding: 0.55rem 0.7rem;
  font-weight: 500;
  width: 100%;
  border-radius: 8px;
  border: none;
}
.page-profile .profile-body .btn-primary {
  background-color: #f45e2f !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-profile .profile-visual {
  border-radius: 1rem;
}
.page-profile .profile-visual .promo-visual {
  position: relative;
  min-height: 240px;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 68%, #ff8a5b), var(--primary));
  overflow: hidden;
}
.page-profile .profile-visual .promo-visual .img-plc {
  position: absolute;
  inset: 10% 16% 10% 46%;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  background: linear-gradient(180deg, #e5e7eb, #9ca3af);
}
.page-profile .tz-card {
  border-radius: 1rem;
}
.page-profile .tz-body {
  display: grid;
  gap: 16px;
}
.page-profile .tz-body select {
  height: 50px;
  border-radius: 0.8rem;
  color: var(--text);
  background-color: rgba(106, 106, 149, 0.0392156863);
  padding: 0.55rem 0.7rem;
  font-weight: 500;
  width: 100%;
  border-radius: 8px;
  border: none;
}
.page-profile .tz-body .btn-primary {
  background-color: #f45e2f !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-profile .tz-body .btn-primary:hover {
  background-color: #f45e2f !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
}
.page-profile .api-card {
  border-radius: 1rem;
}
.page-profile .api-body {
  display: grid;
  gap: 16px;
}
.page-profile .api-input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
}
.page-profile .api-input input {
  height: 50px;
  border-radius: 0.8rem;
  background-color: rgba(106, 106, 149, 0.0392156863);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-weight: 500;
  border-radius: 8px;
  border: none;
}
.page-profile .api-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid color-mix(in srgb, #10b981 35%);
  color: #10b981;
  padding: 16px 16px;
  border-radius: 8px;
  font-weight: 500;
}
.page-profile .api-body .btn-primary {
  background-color: #f45e2f !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .page-profile .profile-grid {
    grid-template-columns: 1fr;
  }
}

/* Page: Blog */
.page-blog .blog-hero {
  padding: 6rem 0 1rem;
  text-align: center;
  position: relative;
}
.page-blog .blog-hero h1 {
  margin: 0.4rem 0 0.25rem;
}
.page-blog .blog-hero .muted {
  max-width: 70ch;
  margin: 0 auto;
}
.page-blog .blog-grid {
  margin: 1.25rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.page-blog .post-card {
  border-radius: 1rem;
  overflow: hidden;
}
.page-blog .post-thumb {
  aspect-ratio: 4/3;
}
.page-blog .post-body {
  display: grid;
  gap: 0.25rem;
  margin-top: 16px;
}
.page-blog .post-cat {
  font-size: 0.75rem;
  color: var(--muted);
}
.page-blog .post-title {
  font-weight: 800;
}
.page-blog .post-desc {
  font-size: 0.9rem;
  color: var(--muted);
}
@media (max-width: 1200px) {
  .page-blog .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 980px) {
  .page-blog .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .page-blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Page: Blog Detail */
.page-blog-detail .post-title {
  text-align: center;
  padding: 6rem 0 0.5rem;
}
.page-blog-detail .post-lead {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
}
.page-blog-detail .post-hero {
  display: grid;
  place-items: center;
  padding: 1rem 0 1.25rem;
}
.page-blog-detail .post-hero .thumb {
  width: min(780px, 100%);
  aspect-ratio: 16/9;
  border-radius: 1rem;
}
.page-blog-detail .post-body {
  width: min(960px, 92%);
  margin: 0 auto 1.5rem;
  display: grid;
  gap: 0.9rem;
}
.page-blog-detail .post-body h3 {
  margin: 0.75rem 0 0.25rem;
}
.page-blog-detail .post-body p {
  color: var(--muted);
}/*# sourceMappingURL=main.css.map */