/* ==========================================================================
   UNIMAG TIBBİ GEREÇLER - LUXURY MEDICAL CORPORATE DESIGN SYSTEM
   Awwwards & Apple Design Award Caliber Aesthetics
   Harmonized with authentic brand colors: #004d2b (Emerald) & #6dab24 (Leaf Green)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Brand Authentic Palette */
  --brand-dark: #004d2b;       /* Exact Logo Left Crescent Dark Forest Emerald */
  --brand-dark-deep: #05160e;  /* Deepest Emerald-Charcoal for Hero & Footer */
  --brand-dark-card: #0a2216;  /* Luxury Dark Card Background */
  --brand-primary: #005a33;    /* Refined Primary Forest */
  
  --brand-leaf: #6dab24;       /* Exact Logo Right Crescent Fresh Leaf Lime */
  --brand-leaf-hover: #5d931e; /* Deepened Leaf on Hover */
  --brand-leaf-glow: rgba(109, 171, 36, 0.22);
  --brand-leaf-subtle: rgba(109, 171, 36, 0.08);

  --accent-mint: #10b981;      /* Sterilization Clean Mint */
  --accent-sage: #e8f3e5;      /* Subtle Sage Background Tint */
  --accent-glow: 0 0 30px rgba(109, 171, 36, 0.3);

  /* Neutrals */
  --bg-page: #f8faf8;
  --bg-card: #ffffff;
  --bg-subtle: #f1f6f1;
  --bg-dark: #05150e;
  
  --text-main: #0c1c13;
  --text-body: #2d3e33;
  --text-muted: #5e7164;
  --text-light: #8fa395;
  --text-white: #ffffff;
  
  --border-light: #e4ebe4;
  --border-hover: #b8d4b3;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Glassmorphism */
  --glass-nav: rgba(255, 255, 255, 0.88);
  --glass-card: rgba(255, 255, 255, 0.82);
  --glass-dark: rgba(10, 34, 22, 0.75);
  
  /* Precision Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 77, 43, 0.03);
  --shadow-md: 0 8px 24px -4px rgba(0, 77, 43, 0.07), 0 2px 6px rgba(0, 77, 43, 0.02);
  --shadow-lg: 0 16px 36px -6px rgba(0, 77, 43, 0.1), 0 4px 12px rgba(0, 77, 43, 0.04);
  --shadow-xl: 0 24px 48px -12px rgba(0, 77, 43, 0.16);
  --shadow-inner: inset 0 1px 2px rgba(255, 255, 255, 0.6);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Grotesk', SFMono-Regular, Consolas, monospace;

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Springs / Transitions */
  --ease-spring: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: all 0.22s ease-out;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.68;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--ease-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

.section-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: var(--accent-sage);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 77, 43, 0.12);
  box-shadow: 0 1px 3px rgba(0, 77, 43, 0.04);
}

.glow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-leaf);
  box-shadow: 0 0 8px var(--brand-leaf);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.section-title {
  font-size: 2.65rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
  letter-spacing: -0.035em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

/* Top Announcement Bar */
.topbar {
  background: var(--brand-dark-deep);
  color: #94ab9b;
  font-size: 0.8125rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--ease-smooth);
}

.topbar-item:hover {
  color: #d1fae5;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--brand-leaf);
}

/* Main Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--ease-spring);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 77, 43, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--ease-spring);
}

.logo-brand:hover img {
  transform: scale(1.03);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.015em;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-leaf);
  transition: var(--ease-spring);
  border-radius: var(--radius-full);
}

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

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  width: 310px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 0.75rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--ease-spring);
  z-index: 100;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--ease-smooth);
}

.dropdown-item:hover {
  background: var(--bg-subtle);
  color: var(--brand-dark);
  transform: translateX(4px);
}

.dropdown-item svg {
  color: var(--brand-leaf);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--ease-smooth);
}

.dropdown-item:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Apple-style Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--ease-spring);
  white-space: nowrap;
  letter-spacing: -0.015em;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-leaf) 0%, #59941c 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(109, 171, 36, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #78be28 0%, var(--brand-leaf) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 171, 36, 0.45);
}

.btn-brand-dark {
  background: var(--brand-dark);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 77, 43, 0.25);
}

.btn-brand-dark:hover {
  background: #003a20;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 77, 43, 0.35);
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand-dark);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-frosted {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-frosted:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.02rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

/* Mobile Toggle & Drawer */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-dark);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 2rem;
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: var(--ease-spring);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* Hero Section (Awwwards Caliber) */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 75% 20%, rgba(109, 171, 36, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 25% 85%, rgba(0, 77, 43, 0.4) 0%, transparent 50%),
              linear-gradient(135deg, var(--brand-dark-deep) 0%, #082115 50%, #03140c 100%);
  color: #ffffff;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e2f2e4;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(12px);
}

.hero-title {
  font-size: 3.6rem;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-title span {
  background: linear-gradient(90deg, #84cc16 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.18rem;
  color: #b3cbbe;
  margin-bottom: 2.75rem;
  line-height: 1.72;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.35rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.2rem;
  letter-spacing: -0.04em;
  font-family: var(--font-mono);
}

.stat-item p {
  font-size: 0.84rem;
  color: #8da496;
  font-weight: 500;
}

/* Hero Showcase Glass Card */
.hero-card {
  background: rgba(10, 34, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  transition: var(--ease-spring);
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 171, 36, 0.4);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-card-tag {
  background: rgba(109, 171, 36, 0.2);
  color: #bef264;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(109, 171, 36, 0.3);
}

.hero-preview-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.04);
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-card-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #d1fae5;
}

.hero-card-feat svg {
  color: var(--brand-leaf);
  flex-shrink: 0;
}

/* Bento Grid System for Value Proposition */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease-spring);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.bento-span-7 {
  grid-column: span 7;
}

.bento-span-5 {
  grid-column: span 5;
}

.bento-span-4 {
  grid-column: span 4;
}

.bento-span-8 {
  grid-column: span 8;
}

.bento-card-dark {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #062f1b 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.bento-card-dark h3, .bento-card-dark h4 {
  color: #ffffff;
}

.bento-card-dark p {
  color: #b7d6c2;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-sage);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--ease-spring);
}

.bento-card:hover .bento-icon {
  background: var(--brand-leaf);
  color: #ffffff;
  transform: scale(1.08);
}

.bento-card-dark .bento-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-leaf);
}

.bento-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.bento-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Category Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--ease-spring);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.category-card-img-wrap {
  position: relative;
  height: 230px;
  background: #f4f8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.category-card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--ease-spring);
}

.category-card:hover .category-card-img {
  transform: scale(1.08);
}

.category-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  color: var(--brand-dark);
  transition: var(--ease-smooth);
}

.category-card:hover .category-card-title {
  color: var(--brand-leaf);
}

.category-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.62;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand-dark);
}

.category-card:hover .category-card-link {
  color: var(--brand-leaf);
}

.category-card-link svg {
  transition: var(--ease-spring);
}

.category-card:hover .category-card-link svg {
  transform: translateX(5px);
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.product-card-thumb {
  position: relative;
  height: 250px;
  background: #fbfdfb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  border-bottom: 1px solid var(--border-light);
}

.product-card-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--ease-spring);
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--accent-sage);
  color: var(--brand-dark);
  border: 1px solid rgba(0, 77, 43, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.product-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-leaf);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.product-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
  line-height: 1.35;
}

.product-card-title a:hover {
  color: var(--brand-leaf);
}

.product-card-material {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
}

.product-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* Clinical Specialties Grid with Custom SVG Icons */
.departments-section {
  background: linear-gradient(180deg, #f8faf8 0%, #eef5ee 100%);
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.dept-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease-spring);
}

.dept-pill:hover {
  border-color: var(--brand-leaf);
  transform: translateY(-3px) translateX(2px);
  box-shadow: var(--shadow-md);
}

.dept-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-sage);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease-spring);
}

.dept-pill:hover .dept-icon {
  background: var(--brand-leaf);
  color: #ffffff;
}

.dept-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

/* CTA Banner */
.cta-banner {
  background: radial-gradient(circle at 90% 10%, rgba(109, 171, 36, 0.3) 0%, transparent 50%),
              linear-gradient(135deg, var(--brand-dark) 0%, #032e18 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  color: #ffffff;
  font-size: 2.35rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.cta-text p {
  color: #d1fae5;
  font-size: 1.12rem;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Breadcrumbs */
.breadcrumb-wrap {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.1rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--brand-dark);
}

.breadcrumb-separator {
  color: var(--text-light);
}

.breadcrumb-item.active {
  color: var(--brand-dark);
  font-weight: 700;
}

/* Product Detail Page Layout */
.product-detail-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 110px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.gallery-main-img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  margin: 0 auto 1.75rem;
  cursor: zoom-in;
  transition: var(--ease-spring);
}

.gallery-main-img:hover {
  transform: scale(1.03);
}

.gallery-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-pill.steril {
  background: #ecfdf5;
  color: var(--brand-dark);
  border: 1px solid #a7f3d0;
}

.badge-pill.tek-kullanim {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.badge-pill.yerli {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.product-meta-header {
  margin-bottom: 2.25rem;
}

.product-category-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-leaf);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 2.6rem;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}

.product-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2.25rem;
}

.quick-spec-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.quick-spec-item svg {
  color: var(--brand-leaf);
}

/* Product Info Blocks */
.info-block {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.info-block-title {
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.info-block-title svg {
  color: var(--brand-leaf);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--brand-leaf);
}

/* Instruction Steps */
.instruction-steps {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.instruction-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3.25rem;
  font-size: 0.96rem;
  color: var(--text-body);
}

.instruction-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  background: var(--accent-sage);
  color: var(--brand-dark);
  border: 1px solid rgba(0, 77, 43, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

/* Specifications Table */
.specs-table-container {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-top: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.specs-table th {
  background: var(--brand-dark);
  color: #ffffff;
  padding: 1rem 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td {
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--border-light);
  color: var(--text-body);
}

.specs-table tr:nth-child(even) {
  background: var(--bg-subtle);
}

.specs-table tr:hover {
  background: #f0fdf4;
}

.code-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--accent-sage);
  border: 1px solid rgba(0, 77, 43, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.product-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

/* Catalog Toolbar */
.catalog-toolbar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.search-input-wrap {
  position: relative;
  flex-grow: 1;
  max-width: 420px;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 3rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  background: var(--bg-page);
  color: var(--text-main);
  outline: none;
  transition: var(--ease-smooth);
}

.search-input:focus {
  border-color: var(--brand-leaf);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--brand-leaf-glow);
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tab-btn {
  background: var(--bg-subtle);
  border: 1px solid transparent;
  color: var(--text-body);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease-smooth);
}

.tab-btn:hover {
  background: #e2ede2;
  color: var(--brand-dark);
}

.tab-btn.active {
  background: var(--brand-dark);
  color: #ffffff;
}

/* Contact Page Components */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  transition: var(--ease-spring);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-sage);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--brand-dark);
}

.contact-card-body p, .contact-card-body a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card-body a:hover {
  color: var(--brand-leaf);
}

.form-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-box h3 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: var(--brand-dark);
}

.form-box p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 2.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-page);
  color: var(--text-main);
  outline: none;
  transition: var(--ease-smooth);
}

.form-control:focus {
  border-color: var(--brand-leaf);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--brand-leaf-glow);
}

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

.map-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: 4rem;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Corporate Page */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
  line-height: 1.28;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.35rem;
  line-height: 1.72;
}

.story-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(5, 22, 14, 0.92);
  color: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-badge h3 {
  color: var(--brand-leaf);
  font-size: 2.4rem;
  font-family: var(--font-mono);
  margin-bottom: 0.2rem;
}

.story-badge p {
  font-size: 0.85rem;
  color: #d1fae5;
}

/* Site Footer */
.site-footer {
  background: var(--brand-dark-deep);
  color: #94ab9b;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-brand p {
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: #94ab9b;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2f2e4;
  transition: var(--ease-spring);
}

.social-btn:hover {
  background: var(--brand-leaf);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.18rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--brand-leaf);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #8da496;
  transition: var(--ease-smooth);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: #8da496;
  margin-bottom: 1.15rem;
}

.footer-contact-item svg {
  color: var(--brand-leaf);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--ease-spring);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 2.25rem;
  left: 2.25rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--brand-dark-deep);
  color: #ffffff;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--brand-leaf);
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--ease-spring);
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-title {
    font-size: 2.9rem;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bento-span-7, .bento-span-5, .bento-span-4, .bento-span-8 {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-menu, .nav-actions .btn-brand-dark, .nav-actions .btn-primary {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-drawer {
    display: block;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-grid {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
