:root {
  --primary: #33055b;
  --light-purple: #67168f;
  --secondary: #cb38b7;
  --dark: #141414;
  --black: #080808;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.4);
  --border-color: rgba(255, 255, 255, 0.05);
  --card-bg: #121212;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--light-purple) 50%, var(--secondary) 100%);
  /* Arka plan rengi - Admin panelinden değiştirilebilir */
  --bg: #030303;
  --bg-gradient: radial-gradient(circle at 50% 50%, rgba(25, 20, 35, 1) 0%, rgba(3, 3, 3, 1) 100%);
  --navbar-offset: 108px;
  --hero-title-scale: 1;
  --hero-subtitle-scale: 1;
  --hero-btn-scale: 1;
  --site-font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Inter Font - Lokal Dosyalar */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype'),
    url('../fonts/Inter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.ttf') format('truetype'),
    url('../fonts/Inter-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype'),
    url('../fonts/Inter-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype'),
    url('../fonts/Inter-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf') format('truetype'),
    url('../fonts/Inter-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--site-font);
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection {
  background-color: var(--secondary);
  color: var(--white);
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

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

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

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

/* Container */
.container {
  max-w: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 0.75rem 0;
  background: transparent;
}

/* Katman 1: Canlı gradient arka plan — kayan mor/magenta ışık */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 80% 120% at 10% 50%, rgba(203, 56, 183, 0.55), transparent 50%),
    radial-gradient(ellipse 60% 100% at 90% 50%, rgba(138, 43, 226, 0.45), transparent 45%),
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(0, 200, 255, 0.12), transparent 40%),
    radial-gradient(ellipse 40% 60% at 30% 80%, rgba(255, 0, 128, 0.18), transparent 35%);
  background-size: 250% 100%;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

/* Katman 2: Alt kenar neon glow çizgisi */
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(203, 56, 183, 0.0) 10%,
      rgba(203, 56, 183, 0.8) 30%,
      rgba(138, 43, 226, 1) 50%,
      rgba(0, 200, 255, 0.6) 70%,
      rgba(203, 56, 183, 0.0) 90%,
      transparent 100%);
  background-size: 200% 100%;
  transition: opacity 0.8s ease;
}

.navbar.scrolled {
  background-color: rgba(5, 0, 15, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 0.5rem 0;
  box-shadow:
    0 4px 30px rgba(138, 43, 226, 0.15),
    0 1px 0 rgba(203, 56, 183, 0.1);
}

.navbar.scrolled::before {
  opacity: 1;
  animation: navPulseFlow 8s ease-in-out infinite;
}

.navbar.scrolled::after {
  opacity: 1;
  animation: navEdgeGlow 4s ease-in-out infinite;
}

@keyframes navPulseFlow {
  0% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.8;
  }
}

@keyframes navEdgeGlow {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

.content-with-navbar-offset {
  padding-top: calc(var(--navbar-offset) + 1.5rem) !important;
}

.logo-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.logo-container:hover {
  transform: scale(1.1);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links button {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav-links button:hover,
.nav-links button.active {
  color: var(--secondary);
}

.nav-icons {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-icons button {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav-icons button:hover {
  color: var(--white);
}

.cart-btn {
  position: relative;
}

.cart-btn:hover {
  color: var(--secondary);
}

.cart-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
}

/* Sections */
.section-py {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2.5s ease-out, transform 2.5s ease-out;
}

.hero-slide.active {
  opacity: 0.35;
  transform: scale(1);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), rgba(3, 3, 3, 0.95));
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1.2s ease-out forwards;
}

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

.tagline {
  display: inline-block;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.5em;
  font-size: 0.625rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(calc(3rem * var(--hero-title-scale, 1)),
      calc(6vw * var(--hero-title-scale, 1)),
      calc(6rem * var(--hero-title-scale, 1)));
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: calc(1.25rem * var(--hero-subtitle-scale, 1));
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.625;
  font-weight: 300;
  max-width: 36rem;
}

.btn-primary {
  padding: 1.25rem 3rem;
  background-color: var(--white);
  color: var(--black);
  border-radius: 9999px;
  font-weight: 500;
  font-size: calc(0.625rem * var(--hero-btn-scale, 1));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-primary i {
  transition: transform 0.3s;
}

.btn-primary:hover i {
  transform: translateX(0.5rem);
}

.btn-secondary {
  padding: 1.25rem 3rem;
  border: 1px solid var(--border-color);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 500;
  font-size: calc(0.625rem * var(--hero-btn-scale, 1));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {

  .btn-primary,
  .btn-secondary {
    padding: 1rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .hero-content .flex.gap-8 {
    gap: 1rem !important;
    width: 100%;
  }
}

.hero-indicators {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  z-index: 20;
  display: flex;
  gap: 1rem;
}

.indicator {
  height: 2px;
  width: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  transition: all 1s ease;
  cursor: pointer;
}

.indicator.active {
  width: 6rem;
  background-color: var(--secondary);
}

/* Product Card */
.product-card {
  group: true;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2.5rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  transition: all 0.7s ease;
}

.product-card:hover .product-image-wrap {
  border-color: rgba(203, 56, 183, 0.2);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.7s, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image {
  opacity: 1;
  transform: scale(1.05);
}

.badge-new {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-heart {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.btn-heart:hover {
  color: var(--secondary);
}

.add-to-cart-wrap {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.product-card:hover .add-to-cart-wrap {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-cart {
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  padding: 1rem 0;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-add-cart:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.product-info {
  margin-top: 1.5rem;
  padding: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.product-card:hover .product-name {
  color: var(--white);
}

.product-discount {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-style: italic;
}

.product-price {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.025em;
}

/* 3D Section */
.bg-dark-accent {
  background-color: rgba(255, 255, 255, 0.02);
}

.glass-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(203, 56, 183, 0.05);
  /* Secondary with low opacity */
  filter: blur(200px);
  transform: rotate(-12deg) translateX(33.333%);
  pointer-events: none;
}

.threed-container {
  position: relative;
  aspect-ratio: 1/1;
}

.threed-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(203, 56, 183, 0.1);
  border-radius: 9999px;
  filter: blur(120px);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

#threejs-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: -0.05em;
}

.stat-label {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.5625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-top: 0.75rem;
}

/* Page Transitions (Simple display toggle for now) */
.page {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page.active {
  display: block;
  opacity: 1;
}

/* Footer */
footer {
  background-color: var(--black);
  border-top: 1px solid var(--border-color);
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.footer-logo {
  flex-direction: row;
  align-items: center;
}

.footer-logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.footer-logo:hover img {
  transform: rotate(12deg);
}

.footer-heading {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 2.5rem;
  opacity: 0.4;
}

.footer-links li {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: var(--white);
}

.social-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.social-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.newsletter {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
}

.newsletter input {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 0 1rem;
  font-size: 0.6875rem;
  width: 100%;
  outline: none;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.1);
}

.newsletter button {
  background-color: var(--white);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.newsletter button:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.bottom-footer {
  margin-top: 10rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bottom-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Floating AI Chat */
.floating-chat {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 60;
}

.chat-btn {
  width: 4rem;
  height: 4rem;
  background: var(--gradient);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 15px 30px -5px rgba(203, 56, 183, 0.4);
  transition: all 0.3s;
}

.chat-btn:hover {
  transform: scale(1.1);
}

.chat-btn:active {
  transform: scale(0.95);
}

.chat-btn i {
  transition: transform 0.5s;
}

.chat-btn:hover i {
  transform: rotate(12deg);
}

/* Background Decor */
.bg-decor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  opacity: 0.3;
}

.bg-decor-1 {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(51, 5, 91, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  will-change: transform;
}

.bg-decor-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(203, 56, 183, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  will-change: transform;
}

/* Helper Utilities */
.text-center {
  text-align: center;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

/* Custom Brand Components */
.upload-box {
  background-color: #121212;
  border: 1px solid var(--border-color);
  border-radius: 3rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.upload-box-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(203, 56, 183, 0.1);
  filter: blur(80px);
}

.upload-label {
  display: block;
  aspect-ratio: 4/3;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.01);
  position: relative;
}

.upload-label:hover {
  border-color: rgba(203, 56, 183, 0.4);
}

.upload-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.1);
  transition: color 0.3s;
}

.upload-label:hover .upload-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* Category Filters */
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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