/* AUTO-GENERATED by build-css (PowerShell fallback) */


/* ===== core/variables.css ===== */
/* ===================================================
   CSS Variables - Design Tokens
   Modern 2026 Design System
   =================================================== */

:root {
  /* Colors - Primary Palette */
  --primary: #6C5CE7;
  --secondary: #FF5C93;
  --info: #0BA5E9;
  --warning: #F59E0B;
  --accent: #25D366;
  
  /* Color-mix variants */
  --primary-dark: color-mix(in srgb, var(--primary) 82%, #000);
  --primary-light: color-mix(in srgb, var(--primary) 15%, #fff);
  --secondary-dark: color-mix(in srgb, var(--secondary) 82%, #000);
  --secondary-light: color-mix(in srgb, var(--secondary) 15%, #fff);
  --info-dark: color-mix(in srgb, var(--info) 82%, #000);
  --info-light: color-mix(in srgb, var(--info) 15%, #fff);
  --warning-dark: color-mix(in srgb, var(--warning) 82%, #000);
  --warning-light: color-mix(in srgb, var(--warning) 15%, #fff);
  --accent-dark: color-mix(in srgb, var(--accent) 82%, #000);
  --accent-light: color-mix(in srgb, var(--accent) 15%, #fff);

  /* Colors - Text */
  --text: #111;
  --muted: #5b5b5b;
  
  /* Colors - Backgrounds */
  --bg: #fff;
  --bg-alt: #F8FAFF;
  --border: #e5e7eb;
  
  /* Colors - Tile Palette */
  --tile-1: #7C3AED;
  --tile-2: #06B6D4;
  --tile-3: #F43F5E;
  --tile-4: #10B981;
  --tile-5: #F59E0B;
  --tile-6: #8B5CF6;
  --tile-7: #22C55E;
  --tile-8: #0EA5E9;
  
  /* Font Sizes */
  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg: 1.125rem;    /* 18px */
  --fs-xl: 1.25rem;     /* 20px */
  --fs-2xl: 1.5rem;     /* 24px */
  --fs-3xl: 1.875rem;   /* 30px */
  --fs-4xl: 2.25rem;    /* 36px */

  /* Spacing (4px steps) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-13: 52px;
  --space-14: 56px;
  --space-15: 60px;
  --space-16: 64px;

  /* Transitions */
  --ease-fast: 0.15s ease;
  --ease-med: 0.3s ease;
  --ease-spring: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);

  /* Z-index */
  --z-sidebar: 1000;
  --z-chat: 2000;
  --z-toast: 3000;
  --z-modal: 4000;

  /* Layout & Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1140px;
  --container-xl: 1440px;
  --container-2k: 1920px;
  --container-4k: 3840px;
  --container: var(--container-lg);
  
  /* Line Heights */
  --lh-tight: 1.1;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --radius: var(--radius-md);
  
  /* Shadows */
  --shadow: 0 8px 24px rgba(17, 24, 39, .08);
  --shadow-lg: 0 12px 28px rgba(17, 24, 39, .12), 0 2px 6px rgba(17, 24, 39, .08);
  
  /* Gradients */
  --grad-1: linear-gradient(135deg, var(--primary) 0%, #00C2FF 100%);
  --grad-2: linear-gradient(135deg, var(--secondary) 0%, var(--warning) 100%);
}


/* ===== core/reset.css ===== */
/* ===================================================
   Reset & Base Styles
   =================================================== */

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  max-width: 100%;
  overflow-x: hidden;
}

html:focus-within {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

*,
*::before,
*::after {
  font-family: inherit;
}

button,
input,
select,
textarea,
details,
summary {
  font-family: inherit;
  font-size: inherit;
  border: 0;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul, nav ol {
  list-style: none;
  padding: 0;
}

main {
  flex: 1;
}

/* Mobil Taşma Önleyici */
@media (max-width: 1024px) {
  body, html {
    width: 100vw;
    overflow-x: hidden;
  }
}


/* ===== core/typography.css ===== */
/* ===================================================
   Typography
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Base Body Typography Settings */
body {
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (min-width: 1920px) {
  body {
    font-size: 18px;
  }
}

@media (min-width: 2560px) {
  body {
    font-size: 20px;
  }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-4);
  color: var(--text);
  font-feature-settings: "kern" 1, "liga" 1;
}

h1 { font-size: clamp(1.8rem, 4vw, var(--fs-4xl)); }
h2 { font-size: clamp(1.5rem, 3.2vw, var(--fs-2xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--fs-xl)); }
h4 { font-size: clamp(1.125rem, 2vw, var(--fs-lg)); }
h5 { font-size: clamp(1rem, 1.5vw, var(--fs-base)); }
h6 { font-size: clamp(0.875rem, 1.2vw, var(--fs-sm)); }

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--ease-fast);
}

a:hover {
  color: var(--info);
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ===== core/animations.css ===== */
/* ===================================================
   Animations & Keyframes
   =================================================== */

/* Skeleton Shimmer */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Spin */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In Up */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toast Animations */
@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(40px) scale(0.9); }
}

/* Pulse */
@keyframes pulse-ads {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Chat Button Animations */
@keyframes pulseRotate {
  0% { 
    transform: rotate(0deg) scale(1); 
    opacity: 0.8; 
  }
  50% { 
    transform: rotate(180deg) scale(1.1); 
    opacity: 1; 
  }
  100% { 
    transform: rotate(360deg) scale(1); 
    opacity: 0.8; 
  }
}

@keyframes textPulse {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); 
  }
  50% { 
    text-shadow: 0 0 40px rgba(255, 0, 255, 1); 
  }
}

@keyframes floatingPulse {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
  }
  50% { 
    transform: translateY(-8px) scale(1.02); 
  }
}

@keyframes morphingGradient {
  0%, 100% { 
    background-position: 0% 50%; 
    border-radius: 28px; 
  }
  25% { 
    background-position: 100% 50%; 
    border-radius: 32px 20px 32px 20px; 
  }
  50% { 
    background-position: 200% 50%; 
    border-radius: 20px 32px 20px 32px; 
  }
  75% { 
    background-position: 300% 50%; 
    border-radius: 36px 24px 36px 24px; 
  }
}

@keyframes typing-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes meshRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Combined Chat Button Animation */
@keyframes morphingFloatingButton {
  0%, 100% { 
    background-position: 0% 50%; 
    border-radius: 28px; 
    transform: translateY(0px) scale(1);
  }
  25% { 
    background-position: 100% 50%; 
    border-radius: 32px 20px 32px 20px; 
    transform: translateY(-8px) scale(1.02);
  }
  50% { 
    background-position: 200% 50%; 
    border-radius: 20px 32px 20px 32px; 
    transform: translateY(0px) scale(1);
  }
  75% { 
    background-position: 300% 50%; 
    border-radius: 36px 24px 36px 24px; 
    transform: translateY(-8px) scale(1.02);
  }
}

/* Reduce Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ===== layout/container.css ===== */
/* ===================================================
   Container & Layout
   =================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

main, header, footer, .list-head, .products {
  width: 100%;
  margin-inline: auto;
}

.card, .product, .products__grid {
  width: 100%;
  max-width: 100%;
}

/* Responsive Container */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
  }
}

/* Large Screens (1440p+) */
@media (min-width: 1440px) {
  .container, main, .list-head, .products {
    max-width: 1280px;
  }
  .header .container, .header__inner {
    max-width: 1280px;
    margin-inline: auto;
  }
  .footer .container {
    max-width: 1280px;
    margin-inline: auto;
  }
}

/* 2K Screens (1800p+) — dar içerik, geniş dekoratif kanatlar */
@media (min-width: 1800px) {
  .container, main, .list-head, .products {
    max-width: 960px;
  }
  /* Header arka planı tam genişlik kalır, içeriği (container) dar olur */
  .header .container,
  .header__inner,
  .footer .container {
    max-width: 960px;
    margin-inline: auto;
  }

  /* Dekoratif yan kanatlar */
  body {
    position: relative;
    overflow-x: hidden;
  }
  body::before,
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 960px) / 2 - 20px);
    pointer-events: none;
    z-index: 0;
  }
  body::before {
    left: 0;
    background:
      repeating-linear-gradient(
        135deg,
        transparent,
        transparent 40px,
        rgba(11, 165, 233, 0.03) 40px,
        rgba(11, 165, 233, 0.03) 42px
      ),
      linear-gradient(to right, rgba(11, 165, 233, 0.06), transparent);
    border-right: 1px solid rgba(11, 165, 233, 0.12);
  }
  body::after {
    right: 0;
    background:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(11, 165, 233, 0.03) 40px,
        rgba(11, 165, 233, 0.03) 42px
      ),
      linear-gradient(to left, rgba(11, 165, 233, 0.06), transparent);
    border-left: 1px solid rgba(11, 165, 233, 0.12);
  }
}

/* 4K Screens (2400p+) */
@media (min-width: 2400px) {
  .container, main, .list-head, .products {
    max-width: 1100px;
  }
  .header .container,
  .header__inner,
  .footer .container {
    max-width: 1100px;
    margin-inline: auto;
  }

  body::before,
  body::after {
    width: calc((100vw - 1100px) / 2 - 20px);
  }
  body::before {
    background:
      repeating-linear-gradient(
        135deg,
        transparent,
        transparent 60px,
        rgba(11, 165, 233, 0.03) 60px,
        rgba(11, 165, 233, 0.03) 62px
      ),
      linear-gradient(to right, rgba(11, 165, 233, 0.07), transparent);
    border-right: 1px solid rgba(11, 165, 233, 0.14);
  }
  body::after {
    background:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(11, 165, 233, 0.03) 60px,
        rgba(11, 165, 233, 0.03) 62px
      ),
      linear-gradient(to left, rgba(11, 165, 233, 0.07), transparent);
    border-left: 1px solid rgba(11, 165, 233, 0.14);
  }
}


/* ===== layout/grid.css ===== */
/* ===================================================
   Grid Systems
   =================================================== */

/* Products Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin-inline: auto;
}

/* Eksik satır (1–3 ürün): kolon sayısını ürüne göre ayarla + ortala */
.products__grid:has(> .product:only-child) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 25%;
}

.products__grid:has(> .product:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 50%;
}

.products__grid:has(> .product:nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 75%;
}

/* Responsive Grid */
@media (max-width: 640px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    max-width: 100%;
  }

  .products__grid:has(> .product:only-child) {
    grid-template-columns: minmax(0, 1fr);
    max-width: 50%;
  }

  .products__grid:has(> .product:nth-child(2):last-child),
  .products__grid:has(> .product:nth-child(3):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
    max-width: 100%;
  }

  .products__grid:has(> .product:only-child) {
    grid-template-columns: minmax(0, 1fr);
    max-width: 33.333%;
  }

  .products__grid:has(> .product:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 66.666%;
  }

  .products__grid:has(> .product:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
}

/* Values Grid */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 32px);
  margin: var(--space-8) 0;
}

@media (max-width: 640px) {
  .values {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Blog Grid */
.blog-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.8vw, 24px);
  margin-top: var(--space-6);
  width: 100%;
}

@media (min-width: 640px) {
  .blog-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid-2col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .blog-grid-2col {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1920px) {
  .blog-grid-2col {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 2560px) {
  .blog-grid-2col {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  padding: var(--space-5);
  max-width: var(--container-xl);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1920px) {
  .category-grid {
    max-width: var(--container-2k);
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 2560px) {
  .category-grid {
    max-width: var(--container-4k);
    grid-template-columns: repeat(6, 1fr);
  }
}


/* ===== layout/hero.css ===== */
/* ===================================================
   Hero Section
   =================================================== */

.hero {
  padding: var(--space-6) 0;
  background: radial-gradient(60vw 40vh at 10% -20%, rgba(108, 92, 231, .18), transparent 60%),
    radial-gradient(50vw 30vh at 90% -10%, rgba(0, 194, 255, .15), transparent 60%),
    var(--bg);
  z-index: 1;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  justify-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--space-2);
}

.hero__title {
  margin: 0 0 var(--space-2);
  font-weight: 800;
  font-size: clamp(20px, 1.4vw, 36px);
  line-height: 1.1;
}

.hero__title span {
  display: block;
  margin-top: 2px;
  font-weight: 700;
}

.hero__sub p {
  margin: 0 0 var(--space-4);
  line-height: 1.6;
}

.hero__sub p:last-child {
  margin-bottom: 0;
}

.hero__cta {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__features {
  display: flex;
  gap: var(--space-8);
  margin: var(--space-8) 0;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-3) var(--space-4);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.feature__icon {
  font-size: 1.2rem;
}

.feature__text {
  font-size: 0.9rem;
  font-weight: 500;
}

.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-15);
    min-height: clamp(500px, 40vh, 800px);
  }
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }

  .hero__features {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .feature {
    flex-direction: row;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
  }

  .hero__cta {
    justify-content: center;
  }
}

/* 2K and 4K Screen Enhancements */
@media (min-width: 1920px) {
  .hero {
    padding: var(--space-15) 0;
  }
}



/* ===== layout/sections.css ===== */
/* ===================================================
   Sections Layout
   =================================================== */

.section {
  padding: var(--space-12) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

/* Section Title */
.section__title {
  margin: 0 0 var(--space-6);
  text-align: center;
  position: relative;
  font-weight: 800;
  letter-spacing: .02em;
}

.section__title span {
  padding: 0 var(--space-4);
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 6px;
}

.section__title::before,
.section__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--info));
}

.section__title::before {
  left: 0;
}

.section__title::after {
  right: 0;
}

/* Section Header */
.section__header {
  text-align: center;
  margin-bottom: var(--space-15);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: var(--space-4) 0 var(--space-10);
  max-width: clamp(400px, 40%, 800px);
  margin-left: auto;
  margin-right: auto;
}

/* Section Stats */
.section__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-15);
  margin-top: var(--space-10);
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: clamp(2rem, 2.5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* List Head — index home-hero ile aynı dil (marka / H1 / lead) */
.list-head,
.page-hero {
  padding: clamp(1.25rem, 4vw, 2.25rem) var(--space-4) clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  color: #0f1a12;
  background: linear-gradient(180deg, #b8e0f0 0%, #e8f5d8 55%, #f7faf4 100%);
  border-radius: 0 0 14px 14px;
  margin-bottom: var(--space-4);
}

.list-head h1,
.page-hero__title {
  margin: 0;
  font-family: Poppins, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #12301a;
}

.page-hero__brand,
.list-head .page-hero__brand {
  margin: 0 0 var(--space-2);
  font-family: Poppins, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, #12301a 72%, transparent);
}

.lead,
.page-hero__lead {
  max-width: 40rem;
  margin: var(--space-3) auto 0;
  text-align: center;
  color: color-mix(in srgb, #1a2e22 78%, transparent);
  line-height: 1.5;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 500;
}

.page-hero__actions,
.list-head .actions {
  margin-top: var(--space-4);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.totals-line {
  text-align: center;
  margin: var(--space-2) 0;
  font-weight: 700;
  color: var(--info);
}

.lined-head {
  position: relative;
  text-align: center;
  margin: var(--space-4) 0 var(--space-2);
  font-weight: 800;
  letter-spacing: .02em;
}

.lined-head span {
  padding: 0 var(--space-4);
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 6px;
  font-size: clamp(16px, 1.5vw, 18px);
}

.lined-head::before,
.lined-head::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--info));
}

.lined-head::before {
  left: 0;
}

.lined-head::after {
  right: 0;
}

.total-pill-wrap {
  text-align: center;
  margin: 0;
}

.total-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--warning));
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  border: 1px solid transparent;
}

/* Actions */
.actions {
  margin: var(--space-3) 0 var(--space-3);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* CTA */
.cta {
  text-align: center;
  margin: var(--space-8) 0;
}

/* List Foot */
.list-foot {
  margin-top: var(--space-7);
  text-align: center;
}

/* WhatsApp Box */
.wa-box {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2);
}

/* Responsive */
@media (max-width: 768px) {
  .section__stats {
    gap: var(--space-4);
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    width: 100%;
    padding: 0 var(--space-4);
  }
}

@media (max-width: 640px) {
  .section__title::before,
  .section__title::after {
    width: 20%;
  }
  .lined-head::before,
  .lined-head::after {
    width: 20%;
  }
}

@media (max-width: 480px) {
  .section__title::before,
  .section__title::after {
    display: none;
  }
  .lined-head::before,
  .lined-head::after {
    display: none;
  }
}

/* 2K and 4K Screen Enhancements */
@media (min-width: 1920px) {
  .section {
    padding: 80px 0;
  }
  .list-head,
  .page-hero {
    padding: clamp(1.5rem, 3vw, 2.5rem) var(--space-4);
  }
}



/* ===== components/buttons.css ===== */
/* ===================================================
   Buttons - All Button Styles
   =================================================== */

/* Base Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, .2), 0 4px 8px rgba(17, 24, 39, .1);
}

.btn:active {
  transform: scale(.97);
  box-shadow: 0 2px 8px rgba(17, 24, 39, .15);
}

/* WhatsApp Button */
.btn--whatsapp {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(37, 211, 102, .35);
}

.btn--whatsapp:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, .5), 0 6px 12px rgba(37, 211, 102, .3);
}

.btn--whatsapp:active {
  transform: scale(.97);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .25);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(37, 211, 102, .35);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, .5);
}

/* Shared Gradient Border Button Base */
.btn--buy,
.btn--ghost {
  --btn-bg-inner: #fff;
  border: var(--btn-border-width, 2px) solid transparent;
  border-radius: var(--btn-radius, var(--radius-md));
  background: linear-gradient(var(--btn-bg-inner), var(--btn-bg-inner)) padding-box, var(--btn-bg-grad) border-box;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 200% 200%;
}

/* Buy Button */
.btn--buy {
  --btn-border-width: 2px;
  --btn-radius: var(--radius-md);
  --btn-bg-grad: var(--grad-1);
  position: relative;
  padding: var(--space-2) var(--space-4);
  font-size: clamp(14px, 1.4vw, 16px);
  transition: background-position .6s ease, box-shadow .25s ease, transform .2s ease;
  box-shadow: 0 6px 16px rgba(11, 165, 233, .2);
}

.btn--buy:hover,
.btn--buy:focus-visible {
  --btn-bg-inner: var(--info);
  border-color: transparent;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 165, 233, .4), 0 6px 12px rgba(11, 165, 233, .2);
  background-position: 100% 0;
}

.btn--buy:active {
  transform: scale(.97);
  box-shadow: 0 4px 12px rgba(11, 165, 233, .25);
}

.btn--buy::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(40% 60% at 30% 30%, rgba(255, 255, 255, .25), transparent 60%);
}

.btn--buy:hover::after,
.btn--buy:focus-visible::after {
  opacity: 1;
}

/* Ghost Button */
.btn--ghost {
  --btn-border-width: 4px;
  --btn-radius: var(--radius-full);
  --btn-bg-grad: linear-gradient(90deg, #FF5C93 0%, #FF8A5B 45%, #F59E0B 100%);
  display: block;
  width: 100%;
  margin: var(--space-2) 0 0;
  padding: var(--space-3) var(--space-5); /* Touch target optimized */
  color: #111;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(17, 24, 39, .06);
  transition: transform var(--ease-fast), filter var(--ease-fast), box-shadow var(--ease-fast);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-6px);
  filter: brightness(.98);
  box-shadow: 0 20px 40px rgba(17, 24, 39, .18), 0 6px 12px rgba(17, 24, 39, .1);
}

.btn--ghost:active {
  transform: scale(.97);
  box-shadow: 0 4px 12px rgba(17, 24, 39, .08);
}

/* Outline Gradient Button */
.btn-outline-grad {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #6C5CE7, #00C2FF) border-box;
  color: #111827;
}

/* Secondary Button */
.btn--secondary {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  color: var(--text);
  transition: background var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast);
}

.btn--secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* WhatsApp Link */
.wa-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: var(--space-3) var(--space-4);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 15px;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.wa-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, .2), 0 4px 8px rgba(17, 24, 39, .1);
}

.wa-link--lg {
  font-size: 16px;
  padding: var(--space-3) var(--space-6);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .25);
}

@media (max-width: 480px) {
  .wa-link--lg {
    font-size: 14px;
    padding: var(--space-3) var(--space-5);
  }
}

/* Calculator Buttons */
.calc-btn {
  position: relative;
  font-weight: 700;
  cursor: pointer;
  padding: var(--space-5) var(--space-9);
  border-radius: 20px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  border: none;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.calc-btn:hover::before {
  left: 100%;
}

.calc-btn--primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.calc-btn--primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.calc-btn--secondary {
  background: linear-gradient(135deg, #F43F5E 0%, #DC2626 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(244, 63, 94, 0.3);
}

.calc-btn--secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(244, 63, 94, 0.4);
}

.calc-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Quick Query Button */
.quick-query-btn {
  background: #fff;
  border: 1px solid var(--info);
  color: var(--info);
  padding: var(--space-2) var(--space-3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-query-btn:hover {
  background: var(--info);
  color: #fff;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: var(--z-sidebar, 1000);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* Responsive Button Adjustments */
@media (max-width: 640px) {
  .calc-btn {
    padding: var(--space-4) var(--space-7);
    min-width: 120px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .calc-btn {
    padding: var(--space-4) var(--space-6);
    font-size: 14px;
    border-radius: 16px;
  }
}

/* 2K and 4K Screen Button Enhancements */
@media (min-width: 1920px) {
  .btn {
    padding: var(--space-4) var(--space-6);
    font-size: var(--fs-lg);
  }
  .btn--buy {
    padding: var(--space-3) var(--space-6);
  }
  .btn--ghost {
    padding: var(--space-3) var(--space-6);
  }
  .wa-link {
    font-size: var(--fs-lg);
    padding: var(--space-4) var(--space-6);
  }
  .calc-btn {
    padding: var(--space-6) var(--space-11);
    font-size: var(--fs-lg);
  }
}

@media (min-width: 2560px) {
  .btn {
    padding: var(--space-5) var(--space-7);
    font-size: var(--fs-xl);
  }
  .btn--buy {
    padding: var(--space-4) var(--space-7);
  }
  .btn--ghost {
    padding: var(--space-4) var(--space-8);
  }
  .wa-link {
    font-size: var(--fs-xl);
    padding: var(--space-5) var(--space-8);
  }
  .calc-btn {
    padding: var(--space-7) var(--space-13);
    font-size: var(--fs-xl);
  }
}



/* ===== components/cards.css ===== */
/* ===================================================
   Cards - All Card Components
   =================================================== */

/* Base Card */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, .15), 0 6px 12px rgba(17, 24, 39, .1);
}

/* Card Body */
.card__body {
  padding: var(--space-2) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
  min-height: auto;
  align-items: center;
}

.card__title {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
}

.card__desc {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  flex: 1;
}

.card__cta {
  margin-top: auto;
  display: inline-flex;
  padding: var(--space-2) var(--space-3);
  border-radius: 10px;
  text-decoration: none;
  align-self: stretch;
  justify-content: center;
}

/* Values Card */
.val {
  text-align: center;
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.val h3 {
  margin: 0 0 var(--space-3);
  color: var(--primary);
  font-size: 1.25rem;
}

.val p {
  margin: 0;
  color: var(--muted);
}

/* Group Card (List Page) */
.group-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}

.group-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, .15), 0 4px 8px rgba(17, 24, 39, .08);
}

.group-title {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  text-align: center;
  position: relative;
  padding-right: var(--space-13);
  padding-left: var(--space-13);
}

.group-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}

.group-badge {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #6C5CE7, #00C2FF);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  border: 1px solid transparent;
  min-width: 45px;
  text-align: center;
}

.group-name {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Category Item */
.category-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all var(--ease-med);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.category-item .icon {
  font-size: 28px;
  margin-bottom: var(--space-2);
}

/* Responsive */
@media (max-width: 640px) {
  .group-card {
    padding: var(--space-2);
  }

  .group-title {
    padding-right: var(--space-10);
    padding-left: var(--space-10);
    font-size: 13px;
  }

  .group-icon {
    width: 40px;
    height: 40px;
  }

  .group-badge {
    right: 6px;
    padding: var(--space-1) var(--space-2);
    font-size: 11px;
  }
}


/* ===== components/products.css ===== */
/* ===================================================
   Product Cards
   =================================================== */

.products {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.products__count {
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 var(--space-4, 1rem);
  color: var(--text, #1a1a1a);
}

.products__group-title {
  display: block;
  width: 100%;
  margin: 1.75rem 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  color: var(--text, #1a1a1a);
}

.products__group-title:first-of-type {
  margin-top: 0.5rem;
}

.product {
  position: relative;
  text-align: center;
}

/* Tile colors — grid içindeki sıraya göre */
.products__grid .product:nth-child(8n+1) { --tile: var(--tile-1); }
.products__grid .product:nth-child(8n+2) { --tile: var(--tile-2); }
.products__grid .product:nth-child(8n+3) { --tile: var(--tile-3); }
.products__grid .product:nth-child(8n+4) { --tile: var(--tile-4); }
.products__grid .product:nth-child(8n+5) { --tile: var(--tile-5); }
.products__grid .product:nth-child(8n+6) { --tile: var(--tile-6); }
.products__grid .product:nth-child(8n+7) { --tile: var(--tile-7); }
.products__grid .product:nth-child(8n+8) { --tile: var(--tile-8); }

/* Top Accent Bar */
.products .product::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: linear-gradient(90deg, var(--tile), rgba(255, 255, 255, 0));
}

/* Product Image */
.product img {
  display: block;
  width: calc(100% - 20px);
  margin: var(--space-3) auto 0;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #fff !important;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: var(--space-2);
  box-shadow: 0 0 0 2px var(--tile) inset, 0 2px 10px rgba(0, 0, 0, .25);
}

/* Product Body */
.product__body {
  padding: var(--space-2) var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  flex: 1;
  /* 4K'da 180px çok küçük — clamp ile responsive */
  min-height: var(--body-min, clamp(140px, 12vw, 220px));
}

.product__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-height: var(--head-min, 56px);
}

.product__name {
  margin: 0;
  font-weight: 700;
  letter-spacing: .15px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--tile, var(--text));
}

.product__total {
  margin: 0;
  color: var(--tile, #000);
  font-size: clamp(13px, 1.2vw, 15px);
}

.product__mix {
  margin: 0;
  color: #000;
  font-size: clamp(13px, 1.2vw, 15px);
}

.product__price {
  margin: var(--space-2) 0 var(--space-2);
  color: #0369a1;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 18px);
}

.product__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  min-height: 68px;
}

/* Section Products */
.section.products {
  background: var(--bg);
}

/* Responsive */
@media (max-width: 640px) {
  .product img {
    width: 100%;
    margin: var(--space-2) auto 0;
    padding: var(--space-1);
  }

  .product__body {
    padding: var(--space-2) var(--space-2) var(--space-3);
    gap: var(--space-1);
  }

  .section.products,
  .products {
    --body-min: 140px;
    --head-min: 44px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .section.products,
  .products {
    --body-min: 165px;
    --head-min: 52px;
  }
}

/* 2K: body-min ve head-min ayarlari */
@media (min-width: 1920px) {
  .section.products,
  .products {
    --body-min: 200px;
    --head-min: 64px;
  }
}

/* 4K */
@media (min-width: 2560px) {
  .section.products,
  .products {
    --body-min: 240px;
    --head-min: 72px;
  }
}

/* Dark mode: tile inset shadow rengi dark'ta da görünsün */
@media (prefers-color-scheme: disabled) {
  .product img {
    box-shadow: 0 0 0 2px var(--tile) inset, 0 2px 10px rgba(0, 0, 0, .5);
    border-color: #444;
  }
}



/* ===== components/faq.css ===== */
/* ===================================================
   FAQ Component
   =================================================== */

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
}

.faq {
  margin: var(--space-3) 0;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.faq:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #9ca3af;
}

.faq summary {
  padding: var(--space-5) var(--space-6);
  background: #f9fafb;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #374151;
  border: none;
  outline: none;
  position: relative;
  text-align: center;
}

.faq summary:hover {
  background: #f3f4f6;
}

.faq[open] summary {
  background: #fff;
  border-bottom: 2px solid #e5e7eb;
}

.faq > .answer {
  padding: var(--space-4) var(--space-6);
}

.faq .chev {
  display: none;
}

/* details/summary yükseklik animasyonu — CSS grid trick
   max-height yerine grid-template-rows ile smooth açılım */
.faq details {
  display: block;
}

.faq details .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}

.faq details[open] .answer {
  grid-template-rows: 1fr;
}

.faq details .answer > * {
  overflow: hidden;
}


.faq .answer h3 {
  margin: var(--space-4) 0 var(--space-2);
  color: var(--primary);
}

.faq .answer ul {
  margin: var(--space-2) 0;
  padding-left: var(--space-5);
}

.faq .answer ul li {
  word-break: break-word;
  overflow-wrap: break-word;
}

.faq .answer a {
  word-break: break-all;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  display: inline-block;
}

.faq .answer .step {
  margin: var(--space-2) 0;
  padding: var(--space-2) var(--space-3);
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.faq .answer .note {
  margin: var(--space-3) 0;
  padding: var(--space-3);
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  color: #856404;
}

.faq .answer img {
  max-width: 100%;
  height: auto;
  margin: var(--space-3) 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .faq .answer {
    padding: var(--space-3);
  }
  
  .faq .answer a {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .faq summary {
    padding: var(--space-4) var(--space-5);
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq .answer a {
    font-size: 13px;
  }
  
  .faq summary {
    padding: var(--space-4) var(--space-4);
    font-size: 14px;
  }
}

/* Dark mode — kapsam dark-mode.css'te; façade override */
@media (prefers-color-scheme: disabled) {
  .faq .answer .note {
    background: #2d2000;
    border-color: #5a3e00;
    color: #fde68a;
  }

  .faq .answer .step {
    background: var(--bg-alt);
    border-left-color: var(--primary);
  }
}

/* prefers-reduced-motion: animasyonu devre dışı bırak */
@media (prefers-reduced-motion: reduce) {
  .faq details .answer {
    transition: none;
  }
}



/* ===== components/forms.css ===== */
/* ===================================================
   Forms & Inputs
   =================================================== */

/* ── Validation States ─────────────────────────────── */
.input-invalid,
.input--error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

.input--success {
  border-color: #22c55e !important;
  background-color: #f0fdf4 !important;
}

.input--warning {
  border-color: #eab308 !important;
  background-color: #fefce8 !important;
}

/* Validation mesajı */
.field-error {
  font-size: 13px;
  color: #ef4444;
  margin-top: var(--space-1);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.field-success {
  font-size: 13px;
  color: #22c55e;
  margin-top: var(--space-1);
}


/* Content */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4);
  line-height: 1.6;
}

.content h1 {
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.content h2 {
  color: var(--text);
  margin: var(--space-8) 0 var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--border);
}

.content ul {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}

.content li {
  margin: var(--space-2) 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.back-link:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
}

/* Dark Mode */
@media (prefers-color-scheme: disabled) {
  input, select, textarea {
    background: var(--bg-alt);
    color: var(--text);
    border-color: var(--border);
  }

  .input--error {
    background-color: #2d0000 !important;
    border-color: #ef4444 !important;
  }

  .input--success {
    background-color: #002d0d !important;
    border-color: #22c55e !important;
  }

  .input--warning {
    background-color: #2d2000 !important;
    border-color: #eab308 !important;
  }

  .field-error {
    color: #fca5a5;
  }

  .field-success {
    color: #86efac;
  }
}



/* ===== components/blog.css ===== */
/* ===================================================
   Blog Components
   =================================================== */

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  /* border-color geçişi için ayrı transition — layout shift yok */
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  background: #fff;
  animation: fadeIn 0.3s ease-out;
  visibility: visible;
  opacity: 1;
}

.blog-card[style*="display: none"] {
  visibility: hidden;
  opacity: 0;
  display: none !important;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(11, 165, 233, 0.15);
  transform: translateY(-4px);
  border-color: var(--info);
}

.blog-card:focus-within {
  box-shadow: 0 8px 24px rgba(11, 165, 233, 0.2);
}

/* Blog Image */
.blog-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e0f2fe 100%);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Dark mode image overlay — parlak görselleri yumuşatır */
@media (prefers-color-scheme: disabled) {
  .blog-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
  }
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

/* Blog Badges */
.blog-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 165, 233, 0.95);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card__badge--new { background: rgba(34, 197, 94, 0.95); }
.blog-card__badge--trending { background: rgba(244, 63, 94, 0.95); }
.blog-card__badge--tips { background: rgba(245, 158, 11, 0.95); }
.blog-card__badge--community { background: rgba(139, 92, 246, 0.95); }
.blog-card__badge--events { background: rgba(236, 72, 153, 0.95); }

/* Blog Meta */
.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.blog-card__date {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.blog-card__category {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--info);
  font-weight: 600;
}

/* Blog Tags */
.blog-card__tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

.blog-card__tag {
  background: var(--bg-alt);
  color: var(--info);
  padding: var(--space-1) var(--space-3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

/* Category Filter */
.category-filter-wrap {
  background: #f8faff;
  border-radius: 12px;
  padding: var(--space-4);
  box-shadow: 0 2px 8px rgba(11, 165, 233, 0.08);
  border: 1px solid rgba(11, 165, 233, 0.12);
  margin: var(--space-5) auto;
  max-width: 100%;
}

.category-pills {
  display: grid;
  /* 360px'de bile taşmayan, auto-fit ile esnek grid */
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-3);
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .category-pills {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-pills {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-pill {
  background: #f1f5f9;
  color: #475569;
  padding: var(--space-4) var(--space-3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: normal;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
  word-break: break-word;
  line-height: 1.3;
}

.category-pill:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-pill.active {
  background: linear-gradient(135deg, var(--info) 0%, #0284c7 100%);
  color: #fff !important;
  border-color: var(--info) !important;
  box-shadow: 0 4px 14px rgba(11, 165, 233, 0.4);
  transform: scale(1.02);
}

.category-pill.active:hover {
  box-shadow: 0 6px 18px rgba(11, 165, 233, 0.5);
  transform: scale(1.02) translateY(-1px);
}

.category-pill:focus-visible {
  outline: 2px solid var(--info);
  outline-offset: 2px;
}

/* Responsive — 768px altında aspect-ratio korunur, sabit px kaldırıldı */
@media (max-width: 768px) {
  .blog-card__image {
    /* aspect-ratio: 16/9 zaten var, sabit px boyut kaldırıldı */
    width: 100%;
    height: auto;
  }
}

/* 2K: 5-6 kolon blog grid */
@media (min-width: 1920px) {
  .blog-grid-2col {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 2560px) {
  .blog-grid-2col {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* ── Premium Pill Navigation ─────────────────────────────── */
.category-pill-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 4px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-pill-list::-webkit-scrollbar {
  display: none;
}
.category-pill-btn {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.category-pill-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #111;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}
.category-pill-btn.active {
  background: linear-gradient(135deg, var(--info) 0%, #0284c7 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(11, 165, 233, 0.3);
}

/* ── Premium Blog Card Improvements ─────────────────────── */
.blog-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}
.blog-card__image {
  border-radius: 20px 20px 0 0;
}
.card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #0f172a;
}
.card__desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}


/* ── Blog Hamburger Button & Drawer Menu ──────────────── */

/* Menü Buton Stili (Kategoriler) */
.blog-hamburger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-hamburger-btn:hover {
  background: rgba(2, 132, 199, 0.2);
  transform: scale(1.03);
}

/* Off-canvas Drawer Menu (Soldan Kayarak Açılan Menü) */
.blog-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999999;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.4);
}

.blog-drawer.is-open {
  transform: translateX(320px);
}

.blog-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.blog-drawer-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.blog-drawer-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.blog-drawer-close:hover {
  background: rgba(0,0,0,0.05);
  color: #0f172a;
}

.blog-sidebar-nav {
  padding: 20px 10px;
  overflow-y: auto;
  flex: 1;
}

/* Overlay (Karanlık Arkaplan) */
.blog-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.blog-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Kategoriler Liste Görünümü (Drawer İçi) */
.category-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  background: transparent;
  border: none;
  border-left: 4px solid transparent;
  border-radius: 0 12px 12px 0;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 95%;
}

.category-sidebar-item:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
}

.category-sidebar-item.active {
  background: #f0f9ff;
  color: #0284c7;
  border-left-color: #0284c7;
  font-weight: 700;
}


/* Sol Sidebar Stilleri */
.blog-sidebar {
  position: sticky;
  top: 90px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.category-sidebar-list {
  display: flex;
  flex-direction: column;
}

.category-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.category-sidebar-item:hover {
  background: rgba(15, 23, 42, 0.03);
  color: #0f172a;
}

.category-sidebar-item.active {
  background: #f0f9ff;
  color: #0284c7;
  border-left-color: #0284c7;
  font-weight: 700;
}

.blog-sidebar-mobile {
  width: 100%;
}

.blog-sidebar-summary {
  display: none; /* Desktop'ta gizli */
  padding: 16px 20px;
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.blog-sidebar-summary::-webkit-details-marker {
  display: none;
}

/* Mobil Tasarım (Accordion) */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-sidebar {
    position: static;
  }
  
  .blog-sidebar-mobile[open] .blog-sidebar-nav {
    display: block;
    animation: fadeInDown 0.3s ease;
  }
  
  .blog-sidebar-mobile:not([open]) .blog-sidebar-nav {
    display: none;
  }
  
  .blog-sidebar-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}


/* ── Blog List View (Horizontal Layout) ──────────────── */
.blog-list-view {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.blog-list-view .blog-card {
  flex-direction: row;
  align-items: stretch;
  border-radius: 16px;
  height: auto;
}

.blog-list-view .blog-card__image {
  flex: 0 0 300px;
  aspect-ratio: auto;
  border-radius: 16px 0 0 16px;
}

.blog-list-view .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.blog-list-view .card__title {
  font-size: 22px;
  margin-top: 10px;
}

/* Make related post cards adapt strictly to the premium blog layout grid */
#related-posts-grid .blog-card {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .blog-list-view .blog-card {
    flex-direction: column;
  }
  .blog-list-view .blog-card__image {
    flex: none;
    width: 100%;
    max-width: 130px;
    margin: 20px auto 0 auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
  }
  .blog-list-view .card__body {
    padding: 20px;
    text-align: center;
  }
  .blog-list-view .card__title {
    font-size: 20px;
    margin-top: 0;
  }
}

/* Blog posts reuse index product card layout */
.products .blog-product .product__name {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  min-height: 0;
  font-size: clamp(14px, 1.4vw, 16px);
}

.products .blog-product .product__head {
  min-height: var(--head-min, 72px);
}

.products .blog-product .product__cta {
  min-height: 48px;
}

.products .blog-product .product__cta .btn--buy {
  text-decoration: none;
}


/* ===== components/article.css ===== */
/* ── Premium Article Redesign (2026) ───────────────────────── */

/* 1. Article Header (Resim Üstte, Yazı Altta) */
.article-header-new {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding-top: 20px;
}

.article-cover-wrap {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 30px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.article-cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Article error state (outside article chrome) */
.error-state {
  max-width: 560px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 16px;
}

.error-state h2 {
  color: #be123c;
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.error-state p {
  margin: 0 0 1.25rem;
  color: #64748b;
}

.error-state .btn--buy {
  text-decoration: none;
}

.article-title-wrap {
  text-align: center;
}


.article-badge {
  display: inline-block;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
  margin: 0 0 24px 0;
}

.article-meta-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

/* 2. Article Typography (Okuma Deneyimi) */
.article-body-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-body {
  font-size: 19px;
  line-height: 1.8;
  color: #334155;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin: 48px 0 20px 0;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 36px 0 16px 0;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Premium Blockquote */
.article-body blockquote {
  position: relative;
  margin: 40px 0;
  padding: 32px 40px;
  background: #f8fafc;
  border-left: 4px solid #0ea5e9;
  border-radius: 0 16px 16px 0;
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  color: #475569;
}

.article-body blockquote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: rgba(14, 165, 233, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.article-body ul, .article-body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 12px;
}

/* Inline code and Pre */
.article-body code {
  background: #f1f5f9;
  color: #ef4444;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
}

.article-body pre {
  background: #0f172a;
  color: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 32px 0;
}

.article-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: 15px;
}

/* 3. Footer Elements */
.back-to-blog {
  text-align: center;
  margin: 60px 0 40px;
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.related-posts h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

/* Make related post cards adapt strictly to the premium blog layout grid */
#related-posts-grid .blog-card {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .article-body {
    font-size: 17px;
  }
  .article-body h2 {
    font-size: 26px;
  }
  .article-body blockquote {
    padding: 24px;
    font-size: 19px;
  }
}


/* ===== components/chat-widget.css ===== */
/* ===================================================
   AI Chat Widget - 2026 Ultra Modern
   =================================================== */

/* Floating Button */
.ai-chat-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-chat);
  width: 68px;
  height: 68px;
  cursor: pointer;
  background: conic-gradient(from 0deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
  background-size: 400% 400%;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.14),
    0 4px 12px rgba(255, 0, 110, 0.12);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  animation: morphingFloatingButton 6s ease-in-out infinite;
  will-change: transform, border-radius, background-position;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  user-select: none;
  opacity: 1;
  pointer-events: auto;
}

.ai-chat-floating-btn::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: rgba(59, 130, 246, 0.75);
  border-radius: 21px;
  backdrop-filter: blur(15px);
}

.ai-chat-floating-btn:hover {
  transform: translateY(-8px) scale(1.06) rotate(3deg);
  border-radius: 32px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    0 6px 16px rgba(255, 0, 110, 0.2);
}

.ai-indicator {
  position: relative;
  z-index: 2;
}

.pulse-ring {
  width: 42px;
  height: 42px;
  border: 2.5px solid transparent;
  border-top-color: #00ffff;
  border-left-color: #ff00ff;
  border-radius: 50%;
  animation: pulseRotate 4s linear infinite;
  will-change: transform;
}

.ai-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  animation: textPulse 2s ease-in-out infinite;
}

/* Side Text */
.side-text {
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 42px;
  padding: 0 var(--space-5);
  background: conic-gradient(from 0deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
  background-size: 400% 400%;
  border-radius: 21px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  animation: morphingGradient 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, left 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.side-text::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: rgba(59, 130, 246, 0.75);
  border-radius: 18px;
  backdrop-filter: blur(15px);
}

.side-text span {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 30px #ff00ff;
}

.side-text.visible {
  opacity: 1;
  left: -165px;
}

/* Chat Widget Container */
.ai-chat-widget {
  position: fixed;
  bottom: 105px;
  right: 28px;
  width: 360px;
  height: clamp(400px, 50vh, 700px);
  max-height: calc(85vh - 120px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: var(--z-chat);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  will-change: transform, opacity;
  transform-origin: bottom right;
}

.ai-chat-widget.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Header */
.ai-chat-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f3d2e 0%, #166534 52%, #b8860b 100%);
  color: #fff;
  padding: 14px var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.ai-chat-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 88% 100%, rgba(255, 215, 120, 0.18), transparent 38%);
  pointer-events: none;
}

.ai-chat-header-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ai-chat-brand-logo {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.22),
    0 0 0 2px rgba(255, 255, 255, 0.28);
}

.ai-chat-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-chat-header-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.ai-chat-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 248, 220, 0.92);
  line-height: 1.2;
}

.ai-chat-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.ai-chat-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

.ai-chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.28);
}

.ai-chat-status.is-online .ai-chat-status-dot {
  animation: ai-chat-status-pulse 2s ease-in-out infinite;
}

.ai-chat-status.is-away .ai-chat-status-dot {
  background: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.28);
}

.ai-chat-status.is-busy .ai-chat-status-dot {
  background: #fb923c;
  box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.28);
}

.ai-chat-status.is-offline .ai-chat-status-dot {
  background: #94a3b8;
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.28);
}

@keyframes ai-chat-status-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(0.9);
  }
}

.ai-chat-close {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.92;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.ai-chat-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

/* Chat Body */
.ai-chat-body {
  flex: 1;
  padding: var(--space-4);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-x: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: #f8fafc;
}

/* Message Styles */
.ai-chat-msg {
  display: flex;
  width: 100%;
  margin-bottom: 2px;
}

.ai-chat-msg.bot {
  justify-content: flex-start;
}

.ai-chat-msg.user {
  justify-content: flex-end;
}

.ai-chat-msg.admin {
  align-self: flex-start;
  margin-right: 20%;
}

.ai-chat-msg.admin-notice {
  justify-content: center;
  margin: 4px 0 8px;
}

.ai-chat-msg.admin-notice .ai-chat-msg-bubble {
  max-width: 92%;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  color: #1e293b;
  border: 1px dashed #d97706;
  border-radius: 12px;
  text-align: center;
  box-shadow: none;
  font-size: 13px;
}

.ai-chat-msg-bubble {
  max-width: 80%;
  padding: var(--space-3) var(--space-4);
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ai-chat-msg-bubble > div {
  margin-top: 0;
}

.ai-chat-msg-bubble > div + div,
.ai-chat-msg-bubble table {
  margin-top: 10px;
}

.ai-chat-msg.bot .ai-chat-msg-bubble {
  background: #fff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-top-left-radius: 4px;
}

.ai-chat-msg.user .ai-chat-msg-bubble {
  background: var(--info);
  color: #fff;
  border-top-right-radius: 4px;
}

.ai-chat-msg.admin .ai-chat-msg-bubble {
  background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
  color: #1e293b;
  border-bottom-left-radius: 4px;
  border: 1px solid #eab308;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.15);
}

.ai-chat-msg-bubble strong {
  font-weight: 700;
}

.ai-chat-msg.bot .ai-chat-msg-bubble a[style*="display:block"],
.ai-chat-msg.bot .ai-chat-msg-bubble a[style*="display: block"],
.ai-chat-msg.bot .ai-chat-msg-bubble a.ai-chat-wa-btn,
.ai-chat-msg.admin .ai-chat-msg-bubble a[style*="display:block"],
.ai-chat-msg.admin .ai-chat-msg-bubble a[style*="display: block"],
.ai-chat-msg.admin .ai-chat-msg-bubble a.ai-chat-wa-btn {
  display: block;
  background: #ff3333;
  color: #fff !important;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.ai-chat-msg.admin .ai-chat-msg-bubble a[style*="display:block"],
.ai-chat-msg.admin .ai-chat-msg-bubble a[style*="display: block"],
.ai-chat-msg.admin .ai-chat-msg-bubble a.ai-chat-wa-btn {
  background: #a16207;
}

.ai-chat-msg-bubble table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 8px 0;
}

.ai-chat-msg-bubble td,
.ai-chat-msg-bubble th {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ai-chat-msg-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #a16207;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* Typing Indicator */
.ai-chat-typing {
  display: flex;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
}

.ai-chat-typing span {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  animation: typing-bounce 1s infinite ease-in-out;
}

.ai-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat-typing span:nth-child(3) { animation-delay: 0.4s; }

/* Quick Queries */
.ai-chat-quick-queries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

/* Chat Footer */
.ai-chat-footer {
  padding: var(--space-3);
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  background: #fff;
  border-top: 1px solid #e2e8f0;
  min-width: 0;
  overflow: hidden;
}

#ai-chat-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-height: 120px;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  padding: 10px var(--space-4);
  font-size: 13.5px;
  line-height: 1.45;
  font-family: inherit;
  outline: none;
  background: #f8fafc;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  field-sizing: content;
  box-sizing: border-box;
}

#ai-chat-input:focus {
  border-color: var(--info);
  background: #fff;
}

#ai-chat-send {
  width: 36px;
  height: 36px;
  background: var(--info);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  box-shadow: 0 2px 8px rgba(11, 165, 233, 0.3);
}

#ai-chat-send:hover {
  background: #0284c7;
  transform: scale(1.1) translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 165, 233, 0.4);
}

#ai-chat-send:active {
  transform: scale(0.95) translateY(0);
  box-shadow: 0 2px 4px rgba(11, 165, 233, 0.2);
}

#ai-chat-send svg {
  pointer-events: none;
}

/* Lead Form */
.ai-chat-lead-form-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: var(--space-4);
  margin: var(--space-2) 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ai-chat-lead-form .form-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.ai-chat-lead-form .form-group {
  margin-bottom: var(--space-3);
}

.ai-chat-lead-form input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.ai-chat-lead-form input:focus {
  border-color: var(--info);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
  background: #fff;
}

.ai-chat-lead-form input:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

.ai-lead-submit-btn {
  width: 100%;
  padding: var(--space-3);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.ai-lead-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

.ai-lead-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.ai-lead-submit-btn:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

/* Success State */
.ai-chat-lead-success {
  text-align: center;
  padding: var(--space-2) 0;
  font-size: 13px;
  color: #0f172a;
  line-height: 1.5;
}

.ai-chat-lead-success b {
  font-size: 14px;
  color: #16a34a;
  display: inline-block;
  margin-bottom: var(--space-2);
}

.ai-whatsapp-direct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  border-radius: 12px;
  font-size: 13px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  width: 100%;
  box-sizing: border-box;
}

.ai-whatsapp-direct-btn:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Feedback Buttons */
.ai-chat-feedback-buttons {
  margin-top: var(--space-2);
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  animation: fadeIn 0.3s ease;
}

.feedback-btn-group {
  display: flex;
  gap: var(--space-2);
}

.ai-chat-feedback-buttons button {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: var(--space-1) var(--space-3);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #334155;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.ai-chat-feedback-buttons button:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-0.5px);
}

.ai-chat-feedback-buttons button:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .ai-chat-floating-btn {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .pulse-ring {
    width: 38px;
    height: 38px;
  }
  
  .ai-text {
    font-size: 20px;
  }
  
  .side-text {
    left: -120px;
    height: 38px;
    padding: 0 var(--space-4);
    font-size: 12px;
  }
  
  .side-text.visible {
    left: -135px;
  }

  .ai-chat-widget {
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
  
  .ai-chat-widget.open {
    transform: scale(1) translateY(0);
  }
  
  body.chat-widget-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .side-text {
    display: none !important;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: disabled) {
  .ai-chat-widget {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(255, 255, 255, 0.05);
  }
  
  .ai-chat-body {
    background: #121212;
  }
  
  .ai-chat-msg.bot .ai-chat-msg-bubble {
    background: #1e1e1e;
    color: #e0e0e0;
    border-color: #333;
  }
  
  .ai-chat-msg.admin .ai-chat-msg-bubble {
    background: linear-gradient(135deg, #ca8a04 0%, #854d0e 100%);
    color: #f8fafc;
    border-color: #a16207;
    box-shadow: 0 4px 15px rgba(161, 98, 7, 0.2);
  }
  
  .ai-chat-msg-title {
    color: #fef08a;
  }
  
  .ai-chat-footer {
    background: #1a1a1a;
    border-color: #333;
  }
  
  #ai-chat-input {
    background: #121212;
    border-color: #333;
    color: #fff;
  }
  
  .ai-chat-lead-form-container {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.08);
  }
  
  .ai-chat-lead-form .form-title {
    color: #f1f5f9;
  }
  
  .ai-chat-lead-form input {
    background: rgba(18, 18, 18, 0.9);
    border-color: #334155;
    color: #fff;
  }
  
  .ai-chat-lead-form input:focus {
    background: #121212;
  }
  
  .ai-chat-lead-success {
    color: #e2e8f0;
  }
  
  .ai-chat-feedback-buttons {
    color: #94a3b8;
  }
  
  .ai-chat-feedback-buttons button {
    background: rgba(30, 30, 30, 0.8);
    border-color: #475569;
    color: #e2e8f0;
  }
  
  .ai-chat-feedback-buttons button:hover {
    background: #1e293b;
    border-color: #64748b;
  }
}

/* 2K and 4K Screen Enhancements */
@media (min-width: 1920px) {
  .ai-chat-floating-btn {
    width: 80px;
    height: 80px;
    border-radius: 28px;
    bottom: 40px;
    right: 40px;
  }
  .ai-chat-floating-btn::before {
    border-radius: 25px;
  }
  .pulse-ring {
    width: 52px;
    height: 52px;
  }
  .ai-text {
    font-size: 28px;
  }
  .ai-chat-widget {
    bottom: 130px;
    right: 40px;
    width: 420px;
    height: clamp(500px, 60vh, 900px);
    max-height: calc(85vh - 150px);
  }
}



/* ===== components/toast.css ===== */
/* ===================================================
   Toast Notification System
   =================================================== */

.hd-toast-container {
  position: fixed;
  /* Scroll-top btn (bottom: 30px, ~50px yükseklik) + chat btn (bottom: 28px)
     üst üste gelmemesi için yeterli clearance */
  bottom: clamp(90px, 10vh, 130px);
  right: 24px;
  /* z-index token'a bağlı — sidebar (var(--z-sidebar)) üzerinde */
  z-index: var(--z-toast, 10000);
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-3);
  pointer-events: none;
  /* Birden fazla toast için max yükseklik */
  max-height: 60vh;
  overflow: hidden;
}

.hd-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: 12px;
  max-width: 320px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.hd-toast.removing {
  animation: toast-out 0.25s ease-in forwards;
}

.hd-toast--success { 
  background: #dcfce7; 
  color: #166534; 
  border-left: 4px solid #22c55e; 
}

.hd-toast--error { 
  background: #fee2e2; 
  color: #991b1b; 
  border-left: 4px solid #ef4444; 
}

.hd-toast--warning { 
  background: #fef9c3; 
  color: #854d0e; 
  border-left: 4px solid #eab308; 
}

.hd-toast--info { 
  background: #dbeafe; 
  color: #1e3a8a; 
  border-left: 4px solid #3b82f6; 
}

.hd-toast__icon { 
  font-size: 18px; 
  flex-shrink: 0; 
}

.hd-toast__msg { 
  flex: 1; 
}

.hd-toast__close {
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  color: inherit;
  flex-shrink: 0;
}

.hd-toast__close:hover { 
  opacity: 1; 
}

/* Responsive */
@media (max-width: 480px) {
  .hd-toast-container {
    left: 16px;
    right: 16px;
    bottom: clamp(70px, 12vh, 100px);
  }
  
  .hd-toast { 
    max-width: 100%; 
  }
}


/* Dark Mode */
@media (prefers-color-scheme: disabled) {
  .hd-toast--success { 
    background: #14532d; 
    color: #bbf7d0; 
  }
  
  .hd-toast--error { 
    background: #7f1d1d; 
    color: #fecaca; 
  }
  
  .hd-toast--warning { 
    background: #78350f; 
    color: #fde68a; 
  }
  
  .hd-toast--info { 
    background: #1e3a8a; 
    color: #bfdbfe; 
  }
}


/* ===== components/category-sidebar.css ===== */
/* ===================================================
   Category Sidebar - 2026 Ultra Modern
   =================================================== */

/* ── Sidebar Container ─────────────────────────────── */
.category-sidebar {
  position: fixed;
  top: clamp(70px, 10vh, 90px); /* token yerine clamp — header değişse de çalışır */
  left: 24px;
  z-index: var(--z-sidebar, 1000);
}

/* ── Toggle Button ─────────────────────────────────── */
.category-sidebar-toggle {
  position: relative;
  cursor: pointer;
  padding: var(--space-3) var(--space-5);
  background: linear-gradient(135deg,
    rgba(108, 92, 231, 0.9) 0%,
    rgba(124, 58, 237, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg, 16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(108, 92, 231, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  min-height: 44px; /* WCAG touch target */
}

.category-sidebar-toggle::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6C5CE7, #7C3AED, #8B5CF6);
  background-size: 200% 200%;
  border-radius: 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  animation: gradientShift 3s ease infinite;
  animation-play-state: paused;
}

.category-sidebar-toggle:hover::before {
  opacity: 0.6;
  animation-play-state: running;
}

.category-sidebar-toggle:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 16px 48px rgba(108, 92, 231, 0.35),
    0 8px 24px rgba(124, 58, 237, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.category-sidebar-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.category-sidebar-toggle:hover svg {
  transform: rotate(180deg) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.6));
}

/* ── Overlay (backdrop) ────────────────────────────── */
.category-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: calc(var(--z-sidebar, 9000) - 1);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-sidebar[aria-expanded="true"] ~ .category-sidebar-overlay,
.category-sidebar-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ── Sidebar Panel ─────────────────────────────────── */
.category-sidebar-panel {
  position: fixed;
  top: 0;
  left: -100vw; /* Başlangıçta tam dışarıda */
  width: 100vw;  /* Mobil: tam genişlik */
  max-width: 360px;
  height: 100dvh; /* iOS safe */
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(249, 250, 251, 0.97) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-right: 1px solid rgba(108, 92, 231, 0.15);
  box-shadow:
    8px 0 64px rgba(0, 0, 0, 0.08),
    4px 0 32px rgba(108, 92, 231, 0.08),
    inset -1px 0 0 rgba(255, 255, 255, 0.5);
  /* Daha yumuşak easing — mobilde titreme önlendi */
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  z-index: var(--z-sidebar, 9000);
  display: flex;
  flex-direction: column;
  overflow-y: auto;        /* İçerik taşarsa kaydırılabilir */
  overscroll-behavior: contain; /* Scroll zinciri engeli */
}

/* Tablet: %60 genişlik */
@media (min-width: 640px) {
  .category-sidebar-panel {
    width: 60vw;
    max-width: 420px;
    left: -60vw;
  }
}

/* Desktop: sabit max-width */
@media (min-width: 1024px) {
  .category-sidebar-panel {
    width: 50vw;
    max-width: 500px;
    left: -50vw;
  }
}

/* Açık durum */
.category-sidebar[aria-expanded="true"] .category-sidebar-panel {
  left: 0;
}

/* ── Panel Header ──────────────────────────────────── */
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-5);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Scroll'da header sabit kalır */
}

.panel-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(11, 165, 233, 0.15) 0%, transparent 70%);
  animation: meshRotate 20s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.category-sidebar[aria-expanded="true"] .panel-header::before {
  animation-play-state: running;
}

.panel-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.panel-close-btn {
  width: 36px;
  height: 36px;
  min-width: 44px; /* Touch target */
  min-height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md, 10px);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1;
  position: relative;
}

.panel-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* ── 2K / 4K Ölçekleme ─────────────────────────────── */
@media (min-width: 1920px) {
  .category-sidebar {
    left: clamp(24px, 2vw, 48px);
  }

  .category-sidebar-toggle {
    font-size: 16px;
    padding: var(--space-4) var(--space-6);
  }

  .category-sidebar-panel {
    max-width: 560px;
  }
}

@media (min-width: 2560px) {
  .category-sidebar-toggle {
    font-size: 18px;
    padding: var(--space-4) var(--space-7);
  }

  .category-sidebar-panel {
    max-width: 640px;
  }
}

/* ── Dark Mode ─────────────────────────────────────── */
@media (prefers-color-scheme: disabled) {
  .category-sidebar-panel {
    background: linear-gradient(135deg,
      rgba(20, 20, 20, 0.97) 0%,
      rgba(15, 15, 15, 0.97) 100%);
    border-right-color: rgba(108, 92, 231, 0.25);
    box-shadow:
      8px 0 64px rgba(0, 0, 0, 0.4),
      4px 0 32px rgba(108, 92, 231, 0.12);
  }

  .category-sidebar-overlay {
    background: rgba(0, 0, 0, 0.65);
  }
}

/* ── Reduced Motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .category-sidebar-panel {
    transition: none;
  }

  .category-sidebar-toggle {
    transition: none;
  }

  .panel-header::before {
    animation: none;
  }
}


/* ===== pages/home.css ===== */
/* ===================================================
   Home page — compact hero + transfer steps
   Scoped to index only (classes used on index.html)
   =================================================== */

.home-hero {
  --home-sky: #8ecae6;
  --home-grass: #7cb342;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1rem, 3vw, 1.75rem) var(--space-4) clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  color: #0f1a12;
  background:
    linear-gradient(180deg, #b8e0f0 0%, #e8f5d8 55%, #f7faf4 100%);
}

.home-hero__media {
  width: min(100%, 42rem);
  max-height: clamp(9rem, 28vw, 16rem);
  overflow: hidden;
  border-radius: 14px;
  line-height: 0;
  box-shadow: 0 6px 18px rgba(17, 48, 26, 0.1);
}

.home-hero__media picture,
.home-hero__media img {
  display: block;
  width: 100%;
  height: clamp(9rem, 28vw, 16rem);
  object-fit: cover;
  object-position: center 30%;
}

.home-hero__media img {
  animation: home-hero-float 18s ease-in-out infinite alternate;
}

.home-hero__content {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  animation: home-hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero__brand {
  margin: 0;
  font-family: Poppins, "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #12301a;
}

.home-hero__title {
  margin: 0;
  font-family: Poppins, "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #1a2e22;
}

.home-hero__lead {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 500;
  line-height: 1.45;
  color: color-mix(in srgb, #1a2e22 78%, transparent);
}

.home-hero__actions {
  margin-top: var(--space-1);
}

.home-hero__cta {
  animation: home-cta-pulse 2.8s ease-in-out infinite;
}

.home-hero__cta:hover,
.home-hero__cta:focus-visible {
  animation: none;
}

/* Transfer steps — accordion at page bottom */
.transfer-steps {
  margin: clamp(1.5rem, 4vw, 2.5rem) auto clamp(2rem, 5vw, 3rem);
  padding: 0;
}

.transfer-steps .transfer-steps__list {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: left;
}

.transfer-steps .transfer-steps__list li {
  margin-bottom: var(--space-3);
}

.transfer-steps .transfer-steps__list li:last-child {
  margin-bottom: 0;
}

.transfer-steps .transfer-steps__list strong {
  color: var(--text);
}

.transfer-steps .transfer-steps__list a {
  color: var(--info-dark, #0284c7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes home-hero-rise {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-hero-float {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.04) translate3d(0, -1%, 0);
  }
}

@keyframes home-cta-pulse {
  0%,
  100% {
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__content,
  .home-hero__media img,
  .home-hero__cta {
    animation: none !important;
  }

  .home-hero__media img {
    transform: none;
  }
}

@media (max-width: 480px) {
  .home-hero__brand {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }
}


/* ===== components/trust-conversion.css ===== */
/* Trust, social proof, process infographic, floating WhatsApp */

.trust-bar {
  margin: 0 auto clamp(1rem, 3vw, 1.5rem);
  max-width: var(--container, 1140px);
  padding: 0 var(--space-4);
}

.trust-bar__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0;
  padding: var(--space-4);
  list-style: none;
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 12px);
  box-shadow: var(--shadow, 0 8px 24px rgba(17, 24, 39, 0.08));
}

.trust-bar__stats li {
  text-align: center;
}

.trust-bar__stats strong {
  display: block;
  font-family: Poppins, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.trust-bar__stats span {
  display: block;
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--muted, #64748b);
}

.product__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product__badge--stock {
  background: #dcfce7;
  color: #166534;
}

.product__badge--soon {
  background: #fef3c7;
  color: #92400e;
}

.trust-proof {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.trust-proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.trust-proof__card {
  margin: 0;
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 12px);
  box-shadow: var(--shadow, 0 8px 24px rgba(17, 24, 39, 0.06));
}

.trust-proof__card p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.trust-proof__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted, #64748b);
}

.trust-proof__stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.trust-proof__note {
  margin: var(--space-4) 0 0;
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  text-align: center;
}

.product-faq-mini {
  margin: clamp(1.5rem, 4vw, 2rem) auto;
  max-width: var(--container, 1140px);
  padding: var(--space-4);
  background: #f8fafc;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 12px);
}

.product__pay-note {
  margin: 8px 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted, #64748b);
  text-align: center;
}

.product__pay-note a {
  color: #0ea5e9;
  font-weight: 600;
  text-decoration: underline;
}

.product__hint {
  margin: 0 0 10px;
  padding: 6px 10px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #92400e;
  background: #fffbeb;
  border-radius: 8px;
  text-align: center;
}

.home-hero__hours {
  margin: 0 0 1rem;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
}

.home-hero__hours strong {
  color: #0f172a;
  font-weight: 700;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.home-hero__cta-secondary {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
}

.transfer-steps--compact {
  margin: 0 0 clamp(1rem, 3vw, 1.5rem);
}

.transfer-steps--after-products {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(0.5rem, 2vw, 1rem);
  border-top: 1px solid var(--border, #e5e7eb);
}

.merak-edilenler-wrap {
  margin: clamp(1.5rem, 4vw, 2.5rem) auto;
}

.merak-edilenler {
  border: 2px solid #d1d5db;
  border-radius: var(--radius, 12px);
  background: #fff;
  box-shadow: var(--shadow, 0 8px 24px rgba(17, 24, 39, 0.08));
  overflow: hidden;
}

.merak-edilenler__summary {
  padding: var(--space-5, 1.25rem) var(--space-6, 1.5rem);
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
  cursor: pointer;
  font-family: Poppins, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  list-style: none;
}

.merak-edilenler__summary::-webkit-details-marker {
  display: none;
}

.merak-edilenler__summary::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.9em;
  opacity: 0.7;
}

.merak-edilenler[open] > .merak-edilenler__summary::after {
  content: "▴";
}

.merak-edilenler__body {
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.75rem, 2vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--border, #e5e7eb);
}

.merak-edilenler__body .product-faq-mini {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.merak-edilenler__body .section.content-block {
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

.merak-edilenler__body .transfer-steps {
  margin: clamp(1rem, 3vw, 1.5rem) 0 0;
}

.geo-hub-cta {
  margin: clamp(1rem, 3vw, 1.5rem) 0 0;
  padding: var(--space-4);
  text-align: center;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius, 12px);
}

.geo-hub-cta__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #334155;
}

.geo-hub-cta__action {
  margin: 0;
}

.geo-faq-group {
  margin: clamp(1rem, 3vw, 1.5rem) 0 0;
}

.faq--geo-group > summary {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
}

.geo-faq-group__list {
  margin-top: var(--space-3, 0.75rem);
}

.geo-faq-group__more {
  margin: var(--space-4, 1rem) var(--space-4, 1rem) var(--space-3, 0.75rem);
  font-size: 0.875rem;
  text-align: center;
}

.geo-faq-group__more a {
  color: var(--info-dark, #0284c7);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__contact {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer__contact a {
  color: var(--info-dark, #0284c7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section__title--compact {
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.process-infographic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.process-infographic__step {
  position: relative;
  padding: var(--space-4);
  text-align: center;
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 12px);
}

.process-infographic__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #e0f2fe;
  font-size: 1.5rem;
  line-height: 1;
}

.process-infographic__title {
  margin: 0 0 8px;
  font-family: Poppins, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.process-infographic__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted, #64748b);
}

@media (min-width: 640px) {
  .trust-bar__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media print {
  .ai-chat-floating-btn {
    display: none !important;
  }
}


/* ===== pages/calculator.css ===== */
/* ===================================================
   Depolama Hesaplayıcısı (Storage Calculator)
   =================================================== */

.calculator-section {
  text-align: center;
}

.calculator-description {
  text-align: center;
  margin: 0 0 var(--space-5);
  color: #9c9797;
  font-size: 16px;
  line-height: 1.5;
}

/* Storage Inputs */
.storage-inputs {
  display: grid;
  max-width: 700px;
  margin: 0 auto var(--space-8);
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.storage-input,
.material-item,
.stat-item {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: var(--space-6) var(--space-5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.storage-input::before,
.material-item::before,
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}

.storage-input::before {
  background: linear-gradient(90deg, #06B6D4, #3B82F6, #8B5CF6);
  height: 4px;
}

.material-item::before {
  background: linear-gradient(90deg, #0EA5E9, #06B6D4);
}

.stat-item::before {
  background: linear-gradient(90deg, #F43F5E, #EC4899);
}

.storage-input:hover,
.material-item:hover,
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.storage-input h3 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.storage-input h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231e293b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.storage-field {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  text-align: center;
  background: #ffffff;
  color: #1e293b;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.storage-field:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.04);
  transform: scale(1.02);
}

/* Materials Grid */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: var(--space-8) 0;
  gap: var(--space-5);
}

.material-item h3 {
  margin: 0 0 var(--space-2);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.material-item h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}

.material-item:nth-child(1) h3::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231e293b" stroke-width="2"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/></svg>'); }
.material-item:nth-child(2) h3::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231e293b" stroke-width="2"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>'); }
.material-item:nth-child(3) h3::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231e293b" stroke-width="2"><rect x="2" y="6" width="20" height="12" rx="2" ry="2"/><line x1="6" y1="6" x2="6" y2="10"/><line x1="10" y1="6" x2="10" y2="12"/><line x1="14" y1="6" x2="14" y2="10"/><line x1="18" y1="6" x2="18" y2="12"/></svg>'); }

.material-item .subtitle {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.material-item .result {
  margin: 0;
  font-weight: 800;
  color: #0EA5E9;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(14, 165, 233, 0.2);
}

/* Total Result */
.total-result {
  max-width: 400px;
  margin: var(--space-8) auto 0;
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border: 3px solid transparent;
  border-radius: 24px;
  padding: var(--space-8) var(--space-7);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
  overflow: hidden;
}

.total-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10B981, #059669);
  border-radius: 24px 24px 0 0;
}

.total-result h3 {
  color: #1e293b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.total-result h3::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231e293b" stroke-width="2"><rect x="18" y="3" width="4" height="18"/><rect x="10" y="8" width="4" height="13"/><rect x="2" y="13" width="4" height="8"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.total-result .result {
  color: #10B981;
  font-weight: 900;
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: var(--space-8) 0;
  gap: var(--space-5);
}

.stat-item h3 {
  color: #1e293b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.stat-item h3::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.stat-item:nth-child(1) h3::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231e293b" stroke-width="2"><line x1="12" y1="19" x2="12" y2="5"/><polyline points="5 12 12 5 19 12"/></svg>'); }
.stat-item:nth-child(2) h3::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231e293b" stroke-width="2"><circle cx="12" cy="14" r="8"/><line x1="12" y1="2" x2="12" y2="6"/><line x1="8" y1="2" x2="16" y2="2"/><line x1="12" y1="14" x2="15" y2="11"/></svg>'); }

.stat-item .result {
  color: #F43F5E;
  font-weight: 800;
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(244, 63, 94, 0.2);
}

/* Calculator Buttons */
.calculator-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin: var(--space-10) 0;
}

/* Responsive */
@media (max-width: 768px) {
  .storage-inputs {
    max-width: 100%;
    gap: var(--space-4);
    margin: 0 auto var(--space-6);
  }

  .storage-input {
    padding: var(--space-6) var(--space-5);
  }

  .storage-input h3 {
    font-size: 16px;
  }

  .storage-field {
    padding: var(--space-4) var(--space-4);
    font-size: 15px;
  }

  .materials-grid {
    gap: var(--space-4);
    margin: var(--space-6) 0;
  }

  .material-item {
    padding: var(--space-5) var(--space-4);
  }

  .total-result {
    max-width: 100%;
    margin: var(--space-6) auto 0;
    padding: var(--space-6) var(--space-5);
  }

  .stats-grid {
    gap: var(--space-4);
    margin: var(--space-6) 0;
  }

  .stat-item {
    padding: var(--space-5) var(--space-4);
  }

  .calculator-buttons {
    gap: var(--space-4);
    margin: var(--space-8) 0;
  }
}

@media (max-width: 640px) {
  .storage-inputs {
    grid-template-columns: 1fr;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .calculator-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .storage-input {
    padding: var(--space-5) var(--space-4);
    border-radius: 16px;
  }

  .storage-input h3 {
    font-size: 15px;
    margin-bottom: var(--space-3);
  }

  .storage-field {
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
    border-radius: 12px;
  }

  .material-item,
  .stat-item {
    padding: var(--space-4) var(--space-3);
    border-radius: 16px;
  }

  .material-item h3 {
    font-size: 15px;
  }

  .material-item .subtitle {
    font-size: 13px;
  }

  .material-item .result {
    font-size: 20px;
  }

  .total-result {
    padding: var(--space-5) var(--space-4);
    border-radius: 20px;
  }

  .total-result h3 {
    font-size: 18px;
  }

  .total-result .result {
    font-size: 24px;
  }

  .stat-item h3 {
    font-size: 14px;
  }

  .stat-item .result {
    font-size: 18px;
  }
}

/* 1440px+: küçük masaüstü */
@media (min-width: 1440px) {
  .storage-inputs {
    max-width: 900px;
  }

  .total-result {
    max-width: 500px;
  }
}

/* 2K */
@media (min-width: 1920px) {
  .storage-inputs {
    max-width: 1100px;
  }

  .materials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .total-result {
    max-width: 600px;
  }
}

/* 4K */
@media (min-width: 2560px) {
  .storage-inputs {
    max-width: 1400px;
  }

  .materials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}



/* ===== pages/list.css ===== */
/* ===================================================
   List Page (Ürün Listenizi Oluşturun)
   =================================================== */

/* Food Mount */
.food-mount {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .food-mount {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .food-mount {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Item */
.item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2);
  border: 2px solid transparent;
  border-radius: 10px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #6C5CE7, #00C2FF) border-box;
  transition: transform .18s ease, box-shadow .18s ease;
}

.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(17, 24, 39, .15), 0 2px 4px rgba(17, 24, 39, .1);
}

.item-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
}

.item-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
  border-radius: 8px;
}

.item-name-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.item-name {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.item-lvl {
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1;
}

.lvl-num {
  color: #e11d48;
  font-weight: 700;
}

.item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-1);
}

.item select.qty {
  width: 72px;
  text-align: left;
  text-align-last: left;
  padding: var(--space-2) var(--space-2);
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-weight: 500;
  -moz-text-align-last: left;
}

/* Output */
.output-wrap {
  margin-top: var(--space-5);
  display: flex;
  justify-content: center;
}

.output-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#output {
  width: 100%;
  max-width: 600px;
  height: 180px;
  resize: none;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: var(--space-3);
  box-shadow: var(--shadow);
  font-size: 13px;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0 auto;
}

@media (max-width: 640px) {
  #output {
    height: 140px;
  }
}

.output-actions {
  margin-top: var(--space-3);
  display: flex;
  justify-content: center;
}

.copy-note {
  margin-top: var(--space-2);
  font-size: 13px;
  font-weight: 700;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  display: none;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 480px) {
  .item select.qty {
    width: 66px;
  }

  .item-name {
    font-size: 12px;
  }

  .item-img {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .item {
    padding: var(--space-2);
    gap: var(--space-2);
  }

  .food-mount {
    gap: var(--space-2);
  }
}

@media (max-width: 640px) {
  .item-img {
    width: 36px;
    height: 36px;
  }

  .item select.qty {
    width: 60px;
    font-size: 12px;
  }
}


/* ===== pages/coming-soon.css ===== */
/* ===================================================
   Coming Soon Page
   =================================================== */

.coming-soon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: var(--space-10) var(--space-5);
  border-radius: 12px;
  text-align: center;
  margin: var(--space-5) 0;
}

.coming-soon h2 {
  font-size: 28px;
  margin-bottom: var(--space-3);
  color: #fff;
}

.coming-soon p {
  font-size: 16px;
  margin-bottom: var(--space-8);
  opacity: 0.95;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: var(--space-5) var(--space-6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.2s ease;
}

.countdown-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.countdown-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}

.countdown-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Features */
.features {
  margin-top: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.features h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-6);
  color: var(--text);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  margin: var(--space-2) 0;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.feature-item:last-child {
  border-bottom: 1px solid #e5e7eb;
}

.feature-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.feature-text {
  font-size: 1rem;
  color: var(--text);
}

/* Responsive */
@media (max-width: 640px) {
  .coming-soon {
    padding: var(--space-8) var(--space-5);
  }

  .coming-soon h2 {
    font-size: 2rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .countdown-item {
    min-width: 70px;
    padding: var(--space-3);
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .features {
    padding: var(--space-6) var(--space-5);
  }
}

/* Ad Space */
.ad-space {
  animation: pulse-ads 2s infinite;
}


/* ===== utils/accessibility.css ===== */
/* ===================================================
   Accessibility Utilities
   =================================================== */

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #111;
  color: #fff;
  padding: var(--space-2) var(--space-3);
  border-radius: 8px;
  z-index: var(--z-toast, 3000);
}

/* Skip Navigation */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 0;
  z-index: var(--z-toast, 3000);
  text-decoration: none;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}

/* Focus Visible (Keyboard Navigation) */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Mouse kullanıcıları için focus gizle */
:focus:not(:focus-visible) {
  outline: none;
}

/* Enhanced Focus for Interactive Elements */
button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(108, 92, 231, 0.15);
}

/* ── Dokunmatik cihaz: daha büyük hedefler (WCAG 2.5.5) ─────────────────── */
@media (pointer: coarse) {
  button,
  [role="button"],
  a,
  summary,
  input[type="checkbox"],
  input[type="radio"] {
    min-height: 44px;
    min-width: 44px;
  }

  .btn {
    min-height: 44px;
    padding-top: max(10px, 0.75em);
    padding-bottom: max(10px, 0.75em);
  }
}

/* ── Yüksek kontrast mod (Windows HC Mode) ────────────────────────────────── */
@media (forced-colors: active) {
  /* Buton / kart sınırlarını zorla eldeştir */
  .btn,
  .card,
  .faq,
  .blog-card {
    border: 2px solid ButtonText !important;
  }

  /* focus-visible sisteme bırakılır — Highlight rengi devreye girer */
  :focus-visible {
    outline: 3px solid Highlight;
    outline-offset: 3px;
  }

  /* Gradient metinler HC'de görünmez; rengi zorla çöz */
  .panel-header h3,
  .section__title,
  .hero__title {
    -webkit-text-fill-color: ButtonText !important;
    color: ButtonText !important;
  }
}

/* ── Daha yüksek kontrast tercihi ─────────────────────────────────────────── */
@media (prefers-contrast: more) {
  :root {
    --muted: #444444;      /* Beyaz üzerinde 7:1 oranına ulaşır */
    --border: #666666;
  }

  .btn {
    border-width: 2px;
  }

  .card,
  .faq,
  .blog-card {
    border-width: 2px;
    border-color: var(--border);
  }
}

/* ── Dark modda focus-visible — adaptif renk ──────────────────────────────── */
@media (prefers-color-scheme: disabled) {
  :focus-visible {
    outline-color: #a78bfa; /* Mor — dark bg'da daha görünür */
    box-shadow: 0 0 0 6px rgba(167, 139, 250, 0.2);
  }

  button:focus-visible,
  a:focus-visible,
  [role="button"]:focus-visible {
    outline-color: #a78bfa;
    box-shadow: 0 0 0 6px rgba(167, 139, 250, 0.2);
  }
}



/* ===== utils/loading.css ===== */
/* ===================================================
   Loading States & Skeletons
   =================================================== */

/* Skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.5s infinite linear;
  border-radius: 6px;
}

/* Skeleton Card */
.skeleton-card {
  padding: var(--space-5);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.skeleton-card .sk-img { 
  height: 180px; 
  margin-bottom: var(--space-4); 
}

.skeleton-card .sk-title { 
  height: 20px; 
  width: 70%; 
  margin-bottom: var(--space-3); 
}

.skeleton-card .sk-line { 
  height: 14px; 
  margin-bottom: var(--space-2); 
}

.skeleton-card .sk-line.short { 
  width: 50%; 
}

/* Component Loading Spinner */
.component-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  color: var(--muted);
  font-size: 14px;
  gap: var(--space-2);
}

.component-loading::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* Page Loading Bar */
.page-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--info));
  z-index: var(--z-modal, 4000);
  transition: width 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.page-loading-bar.active { 
  width: 70%; 
}

.page-loading-bar.done { 
  width: 100%; 
  opacity: 0; 
  transition: width 0.2s, opacity 0.4s 0.2s; 
}

/* Dark Mode */
@media (prefers-color-scheme: disabled) {
  .skeleton {
    background: linear-gradient(
      90deg,
      #2a2a2a 25%,
      #3a3a3a 50%,
      #2a2a2a 75%
    );
    background-size: 800px 100%;
  }
}


/* ===== utils/responsive.css ===== */
/* ===================================================
   Responsive Utilities & Media Queries
   
   STANDARD BREAKPOINTS REFERENCE:
   xs  : < 360px         (Small phones)
   sm  : 360px - 639px   (Modern phones)
   md  : 640px - 767px   (Large phones, small tablets)
   lg  : 768px - 1023px  (Tablets)
   xl  : 1024px - 1279px (Small laptops)
   2xl : 1280px - 1439px (Laptops / Small desktops)
   3xl : 1440px - 1919px (Full HD desktops)
   4xl : 1920px - 2559px (2K / QHD)
   5xl : >= 2560px       (4K / UHD)
   =================================================== */

/* Global Responsive Rules */
@media (max-width: 1024px) {
  .countdown {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
  }
}

/* Tablet & Mobile Adjustments */
@media (max-width: 768px) {
  /* Hero */
  .hero__left {
    text-align: center;
  }
  
  /* Sections */
  .section {
    padding: var(--space-8) 0;
  }
  
  /* Values */
  .val {
    padding: var(--space-4);
  }
}

/* Mobile Specific */
@media (max-width: 640px) {
  /* Typography */
  body {
    font-size: 15px;
  }
  
  /* Buttons */
  .btn {
    padding: var(--space-2) var(--space-3);
    font-size: 14px;
  }
  
  /* Cards */
  .card {
    border-radius: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding-inline: var(--space-3);
  }
  
  /* Typography */
  body {
    font-size: 14px;
  }
  
  /* Section Title */
  .section__title {
    font-size: 1.25rem;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .container {
    padding-inline: var(--space-2);
  }
}

/* Large Screens (FHD Desktop) - 1440px to 1919px */
@media (min-width: 1440px) {
  body {
    overflow-x: hidden;
  }
}

/* 2K Screens (QHD Desktop) - 1920px to 2559px */
@media (min-width: 1920px) {
  body {
    overflow-x: hidden;
  }
}

/* 4K Screens (UHD Desktop) - 2560px and up */
@media (min-width: 2560px) {
  body {
    overflow-x: hidden;
  }
}

/* Print Styles */
@media print {
  /* Hide non-essential elements */
  .ai-chat-floating-btn,
  .ai-chat-widget,
  .scroll-top-btn,
  .hd-toast-container,
  .category-sidebar {
    display: none !important;
  }
  
  /* Optimize for print */
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}



/* ===== themes/dark-mode.css ===== */
/* Cookie banner (site her zaman aydınlık tema) */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.cookie-banner a {
  color: var(--info);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cookie-banner__accept,
.cookie-banner__reject {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border);
}

.cookie-banner__accept {
  background: var(--info);
  border-color: var(--info);
  color: #fff;
}

.cookie-banner__reject {
  background: var(--bg-alt);
  color: var(--text);
}

@media (max-width: 520px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}


/* ===== main.css (trailing) ===== */
/* Component Error Layout */
.component-error {
  padding: 20px;
  text-align: center;
  border: 1px dashed #f5c6cb;
  border-radius: 8px;
  color: #721c24;
  background: #f8d7da;
}

/* Utilities & Buttons */
.btn--whatsapp {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  transition: transform 0.1s ease;
}

.btn--whatsapp:active {
  transform: scale(0.95);
}

.product--unavailable .product__price {
  color: var(--muted);
}

.product--unavailable .btn--buy {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Common Image Placeholder */
.image-placeholder {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Makale Utilities */
.top-banner {
  background: linear-gradient(90deg, var(--info), #0284c7);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.top-banner a {
  color: #ffbe0b;
  text-decoration: underline;
  font-weight: 800;
}

.is-hidden {
  display: none !important;
}

.article-image-wrap {
  margin: 20px 0;
  text-align: center;
}

.article-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.error-link {
  color: var(--danger);
  font-weight: 600;
}

#header-component {
  min-height: 70px;
  background: #0BA5E9;
}

#footer-component {
  min-height: 0;
}

/* List Generator Utils */
.list-head {
  /* Atmosfer sections.css .list-head / .page-hero’dan gelir */
  padding: clamp(1.25rem, 4vw, 2.25rem) var(--space-4) clamp(1.5rem, 4vw, 2.25rem);
}

.list-lead {
  margin-bottom: 8px;
}

.list-summary-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #0BA5E9;
  border-radius: 12px;
  padding: 14px;
  max-width: 480px;
  box-shadow: var(--shadow);
  margin: 12px auto 0;
  width: 100%;
}

.total-pill-wrap {
  margin-bottom: 8px;
}

.total-pill {
  background: linear-gradient(135deg, #0BA5E9, #0284c7);
  padding: 5px 10px;
  font-size: 12px;
  color: #fff;
}

.btn--info {
  background: var(--info) !important;
  color: #fff !important;
  border-color: var(--info) !important;
}

.wa-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

.output-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}

.output-textarea {
  width: 100%;
  max-width: 100%;
  height: 120px;
  border-radius: 8px;
  border: 1px solid #bae6fd;
  padding: 8px;
  resize: none;
  font-family: monospace;
  font-size: 12px;
}

.copy-note {
  padding: 4px 10px;
  font-size: 11px;
}

.result-info {
  text-align: center;
  margin: 16px 0;
  color: #666;
  font-weight: 600;
}

.center-mt {
  text-align: center;
  margin-top: 2rem;
}

.no-results {
  grid-column: 1/-1;
  margin: 0;
  padding: 16px;
}

/* Extracted Layout Elements - Cleaned & Optimized */
.footer {
  background: var(--info);
  color: #fff;
  text-align: center;
  font-size: 14px;
}

main {
  flex: 1;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px var(--space-4);
}

.footer .container.footer__inner {
  padding: 10px var(--space-4);
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.footer__copy strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 640px) {
  .footer__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .footer__copy-sep {
    display: none;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 640px;
}

.footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__pill:hover,
.footer__pill:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  color: #fff !important;
  text-decoration: none !important;
}

.footer__pill--wa {
  background: rgba(255, 255, 255, 0.18);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.footer__legal a {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
  color: #f0f0f0 !important;
  text-decoration: none;
}

.footer__sep {
  opacity: 0.6;
  user-select: none;
}

.footer p {
  margin: 0;
}

.footer a,
.footer .footer__link {
  color: #fff !important;
  text-decoration: none;
}

.footer a:visited,
.footer .footer__link:visited {
  color: #fff !important;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background: var(--info);
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 22px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand__favicon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand__text {
  font-weight: 600;
  color: #fff;
}

.nav-menu {
  position: relative;
}

.menu-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 12px;
  min-height: 44px;
  min-width: 110px;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(#0ba5e9, #0284c7) padding-box, var(--grad-2) border-box;
  border: 4px solid transparent;
  box-shadow: var(--shadow);
}

.menu-summary::-webkit-details-marker {
  display: none;
}

.nav__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px 8px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  list-style: none;
  margin: 0;
  min-width: 220px;
  max-width: calc(100vw - 32px);
}

.nav-menu[open] .nav__list {
  display: flex;
}

.nav__link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-size: clamp(14px, 1.3vw, 16px);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: transparent;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Quick Start Component */
.section.quick {
  padding: 24px 0 10px;
  margin-bottom: 10px;
}

.quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 260px));
  gap: 18px;
  justify-content: center;
}

.quick__item {
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow);
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .22s ease;
  min-height: auto;
}

.quick__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 4px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: linear-gradient(90deg, var(--tile), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.quick__item:nth-child(1) {
  --tile: var(--tile-1);
}

.quick__item:nth-child(2) {
  --tile: var(--tile-2);
}

.quick__item:nth-child(3) {
  --tile: var(--tile-3);
}

.quick__item:nth-child(4) {
  --tile: var(--tile-4);
}

.quick__item h3 {
  color: var(--tile);
  margin: 0 0 8px;
  font-weight: 700;
}

.quick__item:hover,
.quick__item:focus-within {
  transform: translateY(-15px);
  box-shadow: 0 32px 64px rgba(17, 24, 39, .25), 0 10px 20px rgba(17, 24, 39, .15);
}

/* Component Responsiveness */
@media (max-width: 640px) {
  .quick__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 992px) {
  .quick__grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 16px;
    grid-auto-flow: row dense;
  }
}
