/* ==========================================
   ÖZAGRO TARIM VE GIDA - GLOBAL STYLES
   ========================================== */

/* ==========================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================== */
:root {
  /* Colors - Derived from logo green tones */
  --primary-color: #2d7a3e;
  --primary-dark: #1f5a2d;
  --primary-light: #4a9d5a;
  --secondary-color: #5a9bd4;
  --secondary-dark: #3d7ab8;
  --secondary-light: #7db5e0;

  /* Neutrals */
  --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;

  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */

  /* Spacing */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */

  /* Border Radius */
  --radius-sm: 0.25rem;
  --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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Layout */
  --container-max-width: 1280px;
  --header-height: 80px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-gray {
  color: var(--gray-600);
}

.text-white {
  color: var(--white);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

/* Utility Classes */
.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-gray-600 {
  color: var(--gray-600);
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
}

.section {
  padding: var(--space-16) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

.gap-12 {
  gap: var(--space-12);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) 0;
}

/* Top Row: Logo + Language */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-4);
}

@media (min-width: 1024px) {
  .header-top {
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-3);
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.logo {
  height: 50px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
}

/* Bottom Row: Navigation */
.header-bottom-wrapper {
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
  width: 100%;
}

.header-bottom {
  display: none;
}

@media (min-width: 1024px) {
  .header-bottom {
    display: flex;
    justify-content: center;
    /* Center items if they don't fill width */
    width: 100%;
    max-width: 100%;
    /* Ensure full width */
    padding: 0 var(--space-4);
  }
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center text/icon */
  gap: var(--space-2);
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-3) var(--space-4);
  border-radius: 0;
  /* Removing radius for full bar feel, optional */
  transition: all var(--transition-base);
  position: relative;
  white-space: nowrap;
  flex: 1;
  /* Make items grow to fill space */
  /* max-width removed to allow full spread */
}

.nav-icon {
  font-size: 1.2em;
  transition: transform var(--transition-base);
  display: inline-block;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: var(--gray-50);
  transform: translateY(-2px);
}

.nav-link:hover .nav-icon {
  transform: scale(1.2) rotate(5deg);
}

.nav-link-highlight {
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--gray-50);
}

.nav-link-highlight:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background-color: var(--primary-color);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  /* Grow to fill space */
  justify-content: center;
  /* Center content */
  /* flex: 1 already added in previous steps */
  /* max-width removed to allow full spread */
}

.nav-dropdown .nav-link {
  width: 100%;
  border-radius: 0;
}

.nav-text {
  font-size: 0.95rem;
  /* Slightly smaller text to fit single line */
}

.dropdown-arrow {
  font-size: 0.8em;
  margin-left: var(--space-1);
  transition: transform var(--transition-base);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  margin-bottom: var(--space-1);
}

.dropdown-icon {
  font-size: 1.1em;
  transition: transform var(--transition-base);
}

.nav-dropdown-link:hover {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  color: var(--primary-color);
  transform: translateX(5px);
}

.nav-dropdown-link:hover .dropdown-icon {
  transform: scale(1.3);
}

.nav-dropdown-link:last-child {
  margin-bottom: 0;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  font-size: var(--text-2xl);
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  padding: var(--space-6);
  padding-top: 140px;
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu .nav-link {
  display: block;
  margin-bottom: var(--space-2);
  padding: var(--space-3);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.lang-btn {
  padding: var(--space-2) var(--space-3);
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background-color: var(--gray-100);
  color: var(--gray-900);
  transform: translateY(-2px);
}

.lang-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
  font-size: var(--text-4xl);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: var(--text-5xl);
  }
}

.hero p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  opacity: 0.95;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--primary-dark);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--gray-900);
}

.card-text {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  flex: 1;
}

.card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--gray-200);
  background-color: var(--gray-50);
}

/* Product Card */
.product-card {
  position: relative;
}

.product-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ==========================================
   FEATURE GRID
   ========================================== */
.feature-item {
  text-align: center;
  padding: var(--space-6);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: var(--text-3xl);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.feature-text {
  color: var(--gray-600);
}

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  padding: var(--space-12) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-band p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  opacity: 0.95;
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumb {
  padding: var(--space-4) 0;
  background-color: var(--gray-50);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--gray-600);
  font-size: var(--text-sm);
}

.breadcrumb-item::after {
  content: '/';
  margin-left: var(--space-2);
  color: var(--gray-400);
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 500;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-4);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background-color: var(--gray-50);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--gray-100);
}

.faq-icon {
  font-size: var(--text-xl);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: var(--space-4) var(--space-6);
  color: var(--gray-700);
  line-height: 1.7;
}

/* ==========================================
   FORMS
   ========================================== */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--gray-700);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: var(--error);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--error);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: var(--space-12) 0 var(--space-6);
}

.footer-content {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h4 {
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.footer-link {
  display: block;
  color: var(--gray-400);
  margin-bottom: var(--space-2);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-800);
  text-align: center;
  color: var(--gray-500);
  font-size: var(--text-sm);
}

/* ==========================================
   BLOG
   ========================================== */
.blog-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: block;
  color: inherit;
}

.blog-meta {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-3);
}

.blog-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

/* ==========================================
   UTILITIES
   ========================================== */
.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mt-12 {
  margin-top: var(--space-12);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

.pt-8 {
  padding-top: var(--space-8);
}

.pb-8 {
  padding-bottom: var(--space-8);
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-white {
  background-color: var(--white);
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.fade-in-delay-1 {
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.fade-in-delay-2 {
  animation: fadeIn 0.6s ease-out 0.4s both;
}

/* Responsive */
.show-mobile {
  display: block;
}

.show-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .show-mobile {
    display: none;
  }

  .show-desktop {
    display: block;
  }
}

/* ==========================================
   IMPROVED PRODUCT CARD STYLES
   ========================================== */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .product-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .product-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.product-card-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.product-image-box {
  height: 250px;
  /* Sabit ve ideal yükseklik */
  padding: var(--space-6);
  background-color: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.product-image-box img {
  max-height: 100%;
  /* Resmin taşmasını engeller */
  max-width: 80%;
  /* Resmi biraz küçültür, ferah alan bırakır */
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-card-item:hover .product-image-box img {
  transform: scale(1.08);
}

.product-details {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--gray-900);
  line-height: 1.4;
}

.product-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: var(--space-4);
  font-weight: 500;
  display: block;
}

.product-meta-list {
  margin-bottom: var(--space-6);
  list-style: none;
  padding: 0;
  flex: 1;
  /* Allow this section to take space */
}

.product-meta-item {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.6;
}

.product-meta-icon {
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

.product-feature-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  background-color: #dcfce7;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: var(--space-2);
}

/* Category Headers (Centered & Modern) */
.category-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.category-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.category-title-wrapper {
  width: 100%;
}

.category-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.category-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Navigation Menu (Pills/Boxes) */
.product-nav-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: var(--header-height, 80px);
  z-index: 40;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.product-nav-scroll {
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
}

.product-nav-scroll::-webkit-scrollbar {
  display: none;
}

.product-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  padding: 0 1rem;
  width: 100%;
}

.product-nav-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--gray-100);
  color: var(--gray-700);
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.product-nav-link:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Hero Section (200px Fixed) */
.product-hero {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 0;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  z-index: 1;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  width: 100%;
  padding: 0 1rem;
}

/* Utility Colors (Tailwind-like) */
.bg-blue-100 {
  background-color: #dbeafe;
}

.text-blue-800 {
  color: #1e40af;
}

.bg-pink-100 {
  background-color: #fce7f3;
}

.text-pink-800 {
  color: #9d174d;
}

.bg-purple-100 {
  background-color: #f3e8ff;
}

.text-purple-800 {
  color: #6b21a8;
}

.bg-yellow-100 {
  background-color: #fef9c3;
}

.text-yellow-800 {
  color: #854d0e;
}

.bg-yellow-400 {
  background-color: #facc15;
}

.bg-red-100 {
  background-color: #fee2e2;
}

.text-red-700 {
  color: #b91c1c;
}

/* Light Hero Theme */
.hero-light {
  background-color: #f8fafc;
  /* Very light gray/blueish */
  position: relative;
  overflow: hidden;
}

.hero-light .product-hero-content,
.hero-light .hero-content,
.hero-light h1,
.hero-light p {
  color: var(--gray-900) !important;
  text-shadow: none !important;
}

.hero-light::before {
  display: none;
  /* Remove dark overlay */
}

/* B2B Section */
.b2b-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-top: var(--space-12);
  border: 1px solid #bae6fd;
}



.text-red-800 {
  color: #991b1b;
}

.bg-red-50 {
  background-color: #fef2f2;
}

.text-red-700 {
  color: #b91c1c;
}

.bg-orange-100 {
  background-color: #ffedd5;
}

.text-orange-800 {
  color: #9a3412;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.text-green-800 {
  color: #166534;
}

.text-green-700 {
  color: #15803d;
}

.bg-primary-600 {
  background-color: var(--primary-color);
}

.text-primary-600 {
  color: var(--primary-color);
}

.hover\:text-primary-600:hover {
  color: var(--primary-light);
}

.absolute {
  position: absolute;
}

.top-4 {
  top: 1rem;
}

.right-4 {
  right: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

/* Alternating Section Backgrounds */
.section-alternate:nth-of-type(even) {
  background-color: #f8fafc;
  /* Very subtle blue-gray */
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.section-alternate {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Ensure spacing between categories */
.category-spacer {
  display: block;
  height: 4rem;
}