/* ==================== CSS Variables ==================== */
:root {
  /* Colors - Professional blue palette matching logo #0D6FAF */
  --primary: #0D6FAF;
  --primary-dark: #0A5A94;
  --primary-light: #1E88D4;
  --secondary: #0891B2;
  --secondary-dark: #0E7490;
  --accent: #06B6D4;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Gradient - Professional blue gradients */
  --gradient-primary: linear-gradient(135deg, #0D6FAF 0%, #1E88D4 100%);
  --gradient-secondary: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
  --gradient-accent: linear-gradient(135deg, #1E88D4 0%, #06B6D4 100%);
  --gradient-hero: linear-gradient(135deg, #0A5A94 0%, #0D6FAF 50%, #1E88D4 100%);

  /* Neutral colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #000000;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(13, 111, 175, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* ==================== Reset & Base Styles ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--gray-50);
  overflow-x: hidden;
}

#app {
  min-height: 70vh;
  /* Ön belleğe alırken/sayfa yüklenirken footer'ın yukarı zıplamasını engeller */
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

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

ul,
ol {
  list-style: none;
}

/* ==================== Utility Classes ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
}

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

.fade-in {
  animation: fadeIn var(--transition-slow) ease-in;
}

.slide-up {
  animation: slideUp var(--transition-slow) ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ==================== Navigation ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) 0;
}

.logo-text {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: var(--spacing-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--spacing-sm);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--gray-900);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* ==================== Search Bar Section ==================== */
.search-bar-section {
  background: var(--white);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--gray-200);
  margin-top: 80px;
}

/* Search bar on homepage - overlay on hero */
body.home-page .search-bar-section {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: none;
  margin-top: 0;
  padding: 0;
}

body.home-page .search-wrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  overflow: hidden;
}

.search-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 111, 175, 0.1);
}

.search-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  background: transparent;
  font-size: var(--font-size-base);
  color: var(--gray-900);
  outline: none;
  width: 100%;
}

.search-input::placeholder {
  color: var(--gray-400);
}

.search-btn {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  height: 100%;
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.search-btn svg {
  width: 20px;
  height: 20px;
}

.search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 1001;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.search-result-item:hover {
  background: var(--gray-50);
  padding-left: 1.25rem;
}

.search-result-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--gray-100);
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.search-result-code {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

.search-no-results {
  padding: 2rem;
  text-align: center;
  color: var(--gray-500);
}

.search-no-results svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.3;
}

/* ==================== Hero Section ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-20px, 20px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: var(--spacing-2xl);
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 300;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: inline-flex;
  gap: var(--spacing-lg);
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-gradient {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-lg);
}

/* ==================== Cards ==================== */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
}

.card-text {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

/* ==================== Grid Layouts ==================== */
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

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

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

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

/* ==================== Section Headers ==================== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== Footer ==================== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.footer-section p {
  color: var(--gray-400);
  line-height: 1.8;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-links a,
.footer-contact li {
  color: var(--gray-400);
  transition: color var(--transition-base);
}

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

.social-links {
  display: flex;
  gap: var(--spacing-lg);
}

.social-link {
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.social-link:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
}

/* ==================== Notification ==================== */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--white);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 99999;
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.notification.success {
  border-left: 4px solid var(--success);
}

.notification.error {
  border-left: 4px solid var(--error);
}

.notification.warning {
  border-left: 4px solid var(--warning);
}

/* ==================== Forms ==================== */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--gray-700);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 111, 175, 0.1);
}

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

/* ==================== Rich Text Editor ==================== */
.editor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: white;
  color: var(--gray-700);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  user-select: none;
}

.editor-btn:hover {
  background: #e0e7ff;
  color: var(--primary);
  border-color: var(--primary);
}

.editor-btn:active {
  background: #c7d2fe;
}

#product-details-editor:focus {
  outline: none;
}

#product-details-editor h1,
#product-details-editor h2,
#product-details-editor h3,
#product-details-editor h4 {
  margin: 0.75em 0 0.4em;
  font-weight: 700;
  line-height: 1.3;
}

#product-details-editor h1 {
  font-size: 1.7rem;
}

#product-details-editor h2 {
  font-size: 1.4rem;
}

#product-details-editor h3 {
  font-size: 1.2rem;
}

#product-details-editor h4 {
  font-size: 1rem;
}

#product-details-editor p {
  margin: 0 0 0.6em;
}

#product-details-editor ul,
#product-details-editor ol {
  margin: 0.5em 0 0.5em 1.5em;
  padding-left: 1em;
}

#product-details-editor li {
  margin-bottom: 0.25em;
}

#product-details-editor a {
  color: var(--primary);
  text-decoration: underline;
}

#product-details-editor blockquote {
  border-left: 3px solid var(--primary);
  margin: 0.75em 0;
  padding: 0.5em 1em;
  background: #f0f4ff;
  border-radius: 0 4px 4px 0;
  color: var(--gray-700);
}

.rich-editor-toolbar select:focus {
  outline: none;
  border-color: var(--primary);
}

/* ==================== Admin Layout ==================== */
.admin-layout {
  min-height: 100vh;
  background: #f5f3f0;
  display: flex;
}

/* ── Sidebar ── */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: #ffffff;
  border-right: 1px solid #e8e5e1;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Sidebar Scrollbar */
.admin-sidebar-inner::-webkit-scrollbar {
  width: 4px;
}

.admin-sidebar-inner::-webkit-scrollbar-track {
  background: transparent;
}

.admin-sidebar-inner::-webkit-scrollbar-thumb {
  background: #d1cdc8;
  border-radius: 10px;
}

/* Logo */
.admin-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid #f0ede9;
}

.admin-sidebar-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.admin-sidebar-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.3px;
}

/* Navigation */
.admin-sidebar-nav {
  flex: 1;
  padding: 0.75rem 0;
}

.admin-nav-group {
  padding: 0.5rem 0;
}

.admin-nav-group-title {
  display: block;
  padding: 0.75rem 1.5rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #9ca3af;
  text-transform: uppercase;
}

.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  margin: 1px 0.75rem;
  border-radius: 8px;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.admin-sidebar-link svg {
  flex-shrink: 0;
  stroke: #6b7280;
  transition: stroke 0.2s ease;
}

.admin-sidebar-link:hover {
  background: #f9f7f5;
  color: #1f2937;
}

.admin-sidebar-link:hover svg {
  stroke: #1f2937;
}

.admin-sidebar-link.active {
  background: #fff7ed;
  color: #ea580c;
  font-weight: 600;
}

.admin-sidebar-link.active svg {
  stroke: #ea580c;
}

.admin-sidebar-link.active::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #ea580c;
  border-radius: 0 3px 3px 0;
}

/* Sidebar Footer / Logout */
.admin-sidebar-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #f0ede9;
  margin-top: auto;
}

.admin-sidebar-logout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.admin-sidebar-logout svg {
  flex-shrink: 0;
  stroke: #6b7280;
  transition: stroke 0.2s ease;
}

.admin-sidebar-logout:hover {
  background: #fef2f2;
  color: #dc2626;
}

.admin-sidebar-logout:hover svg {
  stroke: #dc2626;
}

/* ── Mobile Top Bar ── */
.admin-mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #ffffff;
  border-bottom: 1px solid #e8e5e1;
  z-index: 190;
  align-items: center;
  padding: 0 1rem;
  gap: 0.75rem;
}

.admin-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f3f0;
  border-radius: 8px;
  cursor: pointer;
  color: #374151;
  transition: background 0.2s;
}

.admin-mobile-toggle:hover {
  background: #ebe8e4;
}

.admin-mobile-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

/* Sidebar Overlay */
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 195;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.admin-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* ── Admin Content ── */
.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  flex: 1;
  width: calc(100% - 260px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  }

  .admin-mobile-topbar {
    display: flex;
  }

  .admin-content {
    margin-left: 0;
    width: 100%;
    padding-top: 56px;
  }
}

/* ==================== Image Upload / Drag & Drop ==================== */
.image-drop-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  text-align: center;
  background: var(--gray-50);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}

.image-drop-zone:hover {
  border-color: var(--primary-light);
  background: rgba(13, 111, 175, 0.02);
}

.image-drop-zone.drag-over {
  border-color: var(--primary);
  background: rgba(13, 111, 175, 0.05);
  transform: scale(1.01);
  box-shadow: 0 0 0 4px rgba(13, 111, 175, 0.1);
}

.drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.image-file-input {
  display: none;
}

/* ==================== Modal / Popup ==================== */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  animation: fadeIn 0.3s ease-out;
}

.product-modal-content {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-2xl);
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

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

.product-modal-close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  transition: all var(--transition-base);
  line-height: 1;
  z-index: 1;
}

.product-modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
  transform: rotate(90deg);
}

.product-modal-image {
  width: 100%;
  margin-bottom: var(--spacing-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-modal-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.product-modal h2 {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  color: var(--gray-900);
}

.product-modal h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--gray-800);
}

.product-modal p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* Scrollbar styling for modal - Modern & Aesthetic */
.product-modal-content::-webkit-scrollbar {
  width: 6px;
}

.product-modal-content::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px 0;
}

.product-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.product-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  width: 8px;
  box-shadow: 0 0 6px rgba(99, 102, 241, 0.4);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 968px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--transition-base);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .search-bar-section {
    padding: var(--spacing-md) 0;
  }

  .search-container {
    padding: 0 var(--spacing-md);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .hero-cta {
    flex-direction: column;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }
}

/* ==================== Product Categories Grid ==================== */
.product-categories {
  background-color: var(--white);
  padding: var(--spacing-3xl) 0;
  position: relative;
  z-index: 20;
}

.product-categories-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.handwritten-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--secondary);
  /* Light Blueish */
  margin-bottom: -5px;
  display: block;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

/* Son satırdaki tek veya çift kalan kartları ortaya al */
.category-grid::after {
  content: '';
}

/* Grid yerine subgrid/masonry desteği olmayan tarayıcılar için sona kalan kartı ortala */

/* ==================== Product Categories Grid ==================== */
.category-card {
  position: relative;
  background-color: #f5f5f5;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  display: block;

  /* Flex düzeninde 3 eşit kolon: boşluk payı çıkarılarak */
  flex: 0 0 calc(33.333% - (var(--spacing-lg) * 2 / 3));
  width: calc(33.333% - (var(--spacing-lg) * 2 / 3));
  max-width: calc(33.333% - (var(--spacing-lg) * 2 / 3));

  padding: var(--spacing-lg);
  text-decoration: none;
  border-radius: 0;
  opacity: 0;
  transition: box-shadow 0.3s ease;
}

/* Staggered Animation Classes */
.category-card.animate-in {
  animation: fadeUpIn 0.8s ease-out forwards;
}

/* Staggered Delays */
.category-card:nth-child(1) {
  animation-delay: 0.1s;
}

.category-card:nth-child(2) {
  animation-delay: 0.2s;
}

.category-card:nth-child(3) {
  animation-delay: 0.3s;
}

.category-card:nth-child(4) {
  animation-delay: 0.15s;
}

.category-card:nth-child(5) {
  animation-delay: 0.25s;
}

.category-card:nth-child(6) {
  animation-delay: 0.35s;
}

.category-card:nth-child(7) {
  animation-delay: 0.2s;
}

.category-card:nth-child(8) {
  animation-delay: 0.3s;
}

.category-card:nth-child(9) {
  animation-delay: 0.4s;
}

.category-card:nth-child(10) {
  animation-delay: 0.5s;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* Image Wrapper: Positioned Absolutely to the Right */
.category-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  /* Occupy right side (~2/3) */
  height: 100%;
  z-index: 1;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
  /* Slight padding from edge */
}

/* Image Styles */
.category-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;

  /* Remove white background */
  mix-blend-mode: multiply;

  /* Scale from center of wrapper */
  transform-origin: center center;
}

/* Hover Effect */
.category-card:hover .category-image {
  transform: scale(1.12);
}

/* Text Label: Pinned to Bottom Left (Original Position) */
.category-label {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  z-index: 2;

  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-900);
  font-size: 1rem;
  letter-spacing: 0.5px;
  max-width: 50%;
  /* Prevent overlap with image */
  text-shadow: none;
  line-height: 1.2;
}

/* ==================== Full Width Exception ==================== */
.category-card.full-width {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2.5/1;
}

.category-card.full-width .category-image-wrapper {
  width: 100%;
  /* Cover full card */
  left: 0;
  padding: 0;
}

.category-card.full-width .category-image {
  object-fit: cover;
  mix-blend-mode: normal;
}

.category-card.full-width .category-label {
  font-size: 1.5rem;
  max-width: 100%;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
  /* Uses same bottom/left positioning from default class */
}


/* Mobile Responsive overrides */
@media (max-width: 768px) {
  .category-grid {
    gap: var(--spacing-md);
  }

  .category-card {
    flex: 0 0 calc(50% - (var(--spacing-md) / 2));
    width: calc(50% - (var(--spacing-md) / 2));
    max-width: calc(50% - (var(--spacing-md) / 2));
    aspect-ratio: 4/3;
  }

  .category-card.full-width {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  .main-title {
    font-size: 2rem;
  }

  .category-label {
    font-size: 0.85rem;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    letter-spacing: 0;
  }
}

/* ==================== Marketplaces Section ==================== */
.marketplaces-section {
  padding: var(--spacing-2xl) 0;
  background-color: var(--white);
  border-top: 1px solid var(--gray-100);
}

.marketplaces-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.marketplace-link {
  display: block;
  transition: transform 0.3s ease;
  /* Removed opacity and grayscale to keep colors visible */
}

.marketplace-link:hover {
  transform: scale(1.15);
  /* Only scale effect */
}

.marketplace-link img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .marketplaces-grid {
    gap: 2rem;
    margin-top: 2rem;
  }

  .marketplace-link img {
    height: 28px !important;
  }
}

/* ==================== About Page Styles ==================== */
.about-hero {
  position: relative;
  height: 400px;
  background-color: #333;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image Layer */
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/hakkimizda-header.jpg');
  background-size: cover;
  background-position: center top;
}

/* Torn Paper Divider */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('/images/header-divider.png');
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto;
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
}


.about-hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 3;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.about-breadcrumb {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.about-story-section {
  padding: 6rem 2rem;
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.about-story-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-content {
  animation: fadeInLeft 1s ease-out;
}

.about-story-subtitle {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
}

.about-story-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--gray-800);
}

.about-story-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  transition: transform 0.3s;
}

.about-feature-badge:hover {
  transform: translateY(-4px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.about-feature-badge:nth-child(1) .about-feature-icon {
  background: #FB923C;
}

.about-feature-badge:nth-child(2) .about-feature-icon {
  background: var(--primary);
}

.about-story-visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.about-experience-badge {
  position: absolute;
  top: 25%;
  left: -30px;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid #FB923C;
  z-index: 2;
  text-align: center;
  min-width: 140px;
  animation: float 3s ease-in-out infinite;
}

.about-experience-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1;
}

.about-experience-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.about-product-showcase {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #2563eb 100%);
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3), inset 0 0 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about-product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(180deg, #22c55e 0%, #eab308 100%);
  opacity: 0.15;
  border-radius: 0 40px 40px 0;
  z-index: 0;
}

.about-product-showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 80%;
  background: linear-gradient(45deg, transparent 0%, #fbbf24 100%);
  opacity: 0.1;
  border-radius: 0 0 40px 0;
  z-index: 0;
}

.about-product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.about-product-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.about-stats-section {
  background: var(--gray-800);
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.about-stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-stat-item {
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #fbbf24;
  opacity: 0.9;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.about-stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  color: #e5e7eb;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-partners-section {
  padding: 6rem 2rem;
  background: var(--gray-50);
}

.about-partners-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-800);
}

.about-partners-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-partner-logo {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-weight: 700;
  color: var(--gray-400);
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-partner-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

@keyframes float {

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

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 968px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .about-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-experience-badge {
    position: static;
    margin-bottom: 2rem;
  }
}

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

  .about-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    flex-direction: column;
  }
}

/* ==================== WhatsApp Floating Button ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 9000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 4px 8px rgba(0, 0, 0, 0.15);
  animation: none;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #ffffff;
  color: #333;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #ffffff;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* ==================== MOBILE HERO SLIDER (max-width: 768px) ==================== */
@media (max-width: 768px) {

  /* Hero başlık - küçük ekranda kompakt */
  .hero-title {
    font-size: 1.4rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
  }

  /* Hero alt yazı */
  .hero-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
  }

  /* CTA butonlar - ortalı, kompakt */
  .hero-cta {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-cta .btn {
    padding: 0.45rem 1rem !important;
    font-size: 0.78rem !important;
    width: auto !important;
    text-align: center !important;
  }

  /* Hero slide content - ekrana sığsın */
  .hero-slide-content {
    width: 90% !important;
    padding: 0 0.5rem !important;
  }

  /* Hero slider section - boşluk kalmasın */
  .hero-slider-section,
  #hero-slides-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* ======= KATEGORİ GRİD - MOBİL FİX ======= */
  .category-grid {
    gap: 0.5rem !important;
    padding: 0 0.5rem !important;
  }

  /* Kart boyutunu küçült - 2'li flex sıralama */
  .category-card {
    flex: 0 0 calc(50% - 0.25rem) !important;
    width: calc(50% - 0.25rem) !important;
    max-width: calc(50% - 0.25rem) !important;
    aspect-ratio: 3/2 !important;
    padding: 0.5rem !important;
  }

  .category-label {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    bottom: 0.4rem !important;
    left: 0.4rem !important;
    letter-spacing: 0 !important;
    line-height: 1.15 !important;
    max-width: 55% !important;
  }

  /* Hero'dan sonraki bölüm araya boşluk koymasın */
  .product-categories {
    margin-top: 0 !important;
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
  }

  .product-categories-header {
    margin-bottom: 1rem !important;
  }

  .handwritten-title {
    font-size: 1.5rem !important;
  }

  .main-title {
    font-size: 1.6rem !important;
  }

  /* ======= ABOUT STORY - MOBİL FİX ======= */
  .about-story-section {
    padding: 1.5rem 1rem !important;
  }

  .about-story-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Sağ kolon (görsel) mobilde gizle */
  .about-product-showcase,
  .about-story-visual {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
  }

  .about-story-title {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }

  .about-story-text {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
  }

  .about-story-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.25rem !important;
  }

  .about-feature-badge {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem !important;
    display: inline-flex !important;
  }

  .about-feature-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }

  /* Logo küçültme */
  .logo-img {
    height: 28px !important;
  }

  /* Pazaryeri logoları küçültme */
  .marketplace-link img {
    height: 22px !important;
  }

  .marketplaces-grid {
    gap: 1.5rem !important;
  }

  /* Footer Sütun Düzeni - Hızlı Linkler ve İletişim Yan Yana */
  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .footer-section:nth-child(1),
  .footer-section:nth-child(4) {
    grid-column: span 2 !important;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-links li,
  .footer-contact li {
    font-size: 0.85rem !important;
  }

  /* Genel Başlık Küçültmeleri */
  .section-title,
  .main-title {
    font-size: 1.5rem !important;
  }

  .handwritten-title {
    font-size: 1.2rem !important;
  }

  .section-subtitle {
    font-size: 0.85rem !important;
  }

  .card-title {
    font-size: 1.1rem !important;
  }

  .card-text {
    font-size: 0.85rem !important;
  }

  .card div[style*="font-size: 3rem"] {
    font-size: 2rem !important;
  }

  /* Mobil Menü (Hamburger) İşlevselliği & Kurumsal Animasyon */
  .mobile-menu-btn {
    display: flex !important;
    z-index: 1010;
    position: relative;
    padding: 10px;
    transition: all 0.3s ease;
  }

  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
    z-index: 1000 !important;
    padding: 2rem !important;
    margin: 0 !important;

    /* Animation Handlers */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none !important;
  }

  .nav-links.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .nav-link {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: var(--gray-900) !important;
    padding: 0.8rem 2rem !important;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
  }

  .nav-links.active .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  /* Kurumsal Ardışık Animasyon Gecikmeleri */
  .nav-links.active .nav-link:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active .nav-link:nth-child(2) {
    transition-delay: 0.18s;
  }

  .nav-links.active .nav-link:nth-child(3) {
    transition-delay: 0.26s;
  }

  .nav-links.active .nav-link:nth-child(4) {
    transition-delay: 0.34s;
  }

  /* Hamburger Animasyonu Düzeltme */
  .mobile-menu-btn span {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background: var(--primary) !important;
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0 !important;
    transform: translateX(10px) !important;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background: var(--primary) !important;
  }
}

/* Hakkımızda Sayfası Mobil Düzenleme */
.about-hero {
  height: 200px !important;
}

.about-hero h1 {
  font-size: 2.22rem !important;
  margin-bottom: 0.5rem !important;
}

.about-breadcrumb {
  font-size: 0.75rem !important;
  margin-bottom: 0.25rem !important;
}