/* ===== CSS Reset & Variables ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #28C3A4;
  --color-primary-light: #28C3A4;
  --color-bg: #FFFFFF;
  --color-text: #333333;
  --color-text-dark: #000000;
  --color-text-light: rgba(255, 255, 255, 0.9);
  --font-sans: 'Segoe UI', 'Open Sans', 'Lato', system-ui, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ===== Header (Transparent → #28C3A4 on scroll) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: #27c2a5;
  box-shadow: var(--shadow);
}

.page-hero .header {
  background: transparent;
}

.page-hero .header.scrolled {
  background: #27c2a5;
}

.logo {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 700;
}

.logo .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo.logo-color .logo-img {
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-lang-item {
  display: flex;
  align-items: center;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 4px;
  transition: background var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: white;
  border-radius: 4px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
}

.lang-dropdown.open .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-options button {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text);
  transition: background var(--transition);
}

.lang-options button:hover {
  background: #f0f0f0;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Main Content ===== */
.main {
  padding-top: 70px;
  min-height: calc(100vh - 200px);
}

/* Hero sayfasında üst boşluk yok - hero header altında başlar */
.page-hero .main {
  padding-top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  padding: 0 2rem 7rem;
  max-width: 700px;
}

.hero-subtitle {
  color: white;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  color: var(--color-primary-light);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-desc {
  color: white;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-desc strong {
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: white;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  display: block;
}

.hero-scroll-chevron {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(90deg);
  opacity: 0.9;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col img {
  width: 100%;
  border-radius: 8px;
}

.text-highlight {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== Certification Bar ===== */
.cert-bar {
  background: #9e9e9e;
  padding: 2rem 0;
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.cert-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity var(--transition), filter var(--transition);
}

.cert-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===== Product Cards ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-card-btn {
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.product-card-btn[aria-pressed="true"] {
  box-shadow: 0 0 0 3px var(--color-primary);
}

.product-details-wrap {
  position: relative;
}

.product-detail-panel-hidden {
  display: none !important;
}

.product-card-img-wrap {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #f8f9fa;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card-content {
  padding: 1.5rem;
  background: white;
}

/* ===== Device Section ===== */
.device-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.device-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  
  z-index: 0;
}

.device-section .container {
  position: relative;
  z-index: 1;
}

.device-section .two-col {
  align-items: flex-start;
  grid-template-columns: 55% 1fr;
}

.device-section .two-col > div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.device-section .two-col > div:last-child img {
  border-radius: 0;
  max-height: 500px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

.product-zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.product-zoom-container .product-zoom-img {
  transition: transform 0.3s ease;
  transform-origin: center center;
  width: 100%;
  height: auto;
}

.product-zoom-container:hover .product-zoom-img {
  transform: scale(1.8);
}

.device-section .logo.logo-color .logo-img {
  height: 80px;
}

.device-section .section-title {
  display: none;
}

.device-section .device-subtitle {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.device-section .device-subtitle-small {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.tech-specs {
  margin-top: 1.5rem;
}

.tech-specs h4 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: 700;
}

.spec-list {
  display: grid;
  gap: 0.4rem;
}

.spec-list li {
  display: flex;
  gap: 1rem;
  padding: 0.2rem 0;
  border-bottom: none;
  font-size: 0.9rem;
}

.spec-list span:first-child {
  color: var(--color-primary);
  font-weight: 600;
  min-width: 140px;
}

.spec-list span:last-child {
  font-weight: 400;
  color: var(--color-text);
}

.spec-list span:last-child::before {
  content: ': ';
}

/* ===== Liquid Section (Split BG: Beyaz üst / Turkuaz alt) ===== */
.liquid-section {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 35%, #30C7B0 35%, #30C7B0 100%);
  color: white;
  padding: 2rem 0 3rem;
  position: relative;
  overflow: hidden;
  max-height: 420px;
}

.liquid-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 2rem;
  align-items: stretch;
  min-height: 420px;
  position: relative;
}

.liquid-bottle-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem 0 2rem;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.liquid-bottle-wrap img {
  
  width: auto;
  object-fit: contain;
  margin-left: -45%;
  filter: drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.liquid-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  background: transparent;
}

.liquid-title {
  color: white;
  margin: revert;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.liquid-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.liquid-content p:last-child {
  margin-bottom: 0;
}

/* ===== Mastitis Info Section (Likit sonrası) ===== */
.mastitis-content-section {
  background: #ffffff;
  padding: 4rem 0;
}

.mastitis-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mastitis-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #00A3A3;
  margin-bottom: 1.25rem;
  text-align: left;
}

.mastitis-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: left;
}

.mastitis-block p:last-child {
  margin-bottom: 0;
}

.mastitis-block {
  margin-bottom: 3rem;
}

.mastitis-reasons-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.mastitis-reasons-row .mastitis-text {
  flex: 1;
  margin-bottom: 0;
}

.mastitis-diagram-wrap {
  flex-shrink: 0;
  width: 45%;
  max-width: 480px;
}

.mastitis-diagram-box {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.mastitis-diagram-box .mastitis-diagram-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.mastitis-diagram-placeholder {
  display: flex;
  gap: 0;
  min-height: 280px;
}

.mastitis-diagram-placeholder .diagram-part {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mastitis-diagram-placeholder .diagram-visual {
  flex: 1;
  min-height: 200px;
  background: linear-gradient(180deg, #f5e6e8 0%, #e8d4d8 100%);
}

.mastitis-diagram-placeholder .diagram-label {
  display: block;
  padding: 0.75rem 1rem;
  background: #00A3A3;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.mastitis-diagram-placeholder .diagram-part:first-child .diagram-label {
  border-bottom-right-radius: 0;
}

.mastitis-diagram-placeholder .diagram-part:last-child .diagram-label {
  border-bottom-left-radius: 0;
}

.mastitis-diagram-placeholder .diagram-part:first-child .diagram-visual {
  border-bottom-left-radius: 0;
}

.mastitis-diagram-placeholder .diagram-part:last-child .diagram-visual {
  border-bottom-right-radius: 0;
}

/* ===== News Section (Ana sayfa) ===== */
.news-section {
  background: #ffffff;
  padding: 4rem 0 5rem;
}

.news-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.news-card-home {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card-home:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-card-home .news-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.news-card-home .news-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-home h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.news-card-home .date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.news-card-home p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.news-card-home a {
  color: #00A3A3;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.news-card-home a:hover {
  color: var(--color-primary);
}

/* ===== Mastitis Info (diğer sayfalar) ===== */
.mastitis-info {
  display: grid;
  gap: 2rem;
}

.mastitis-info .mastitis-block h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.mastitis-diagram {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

/* ===== News Cards ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: white;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.news-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.news-card .date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.news-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

.news-card a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color var(--transition);
}

.news-card a:hover {
  color: var(--color-primary-light);
}

/* ===== About Page ===== */
.about-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* ===== Contact Form ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--color-primary-light);
  transform: scale(1.02);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-primary);
  color: white;
  padding: 2rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer .logo {
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer a {
  color: white;
  font-size: 0.85rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer a:hover {
  opacity: 1;
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

.nav-links a {
  font-size: 1.1rem;
  }

  .nav-lang-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }

  .cert-bar {
    padding: 1.5rem 0;
  }

  .cert-logos {
    gap: 1.5rem;
    justify-content: center;
  }

  .cert-logos img {
    height: 45px;
  }

  .device-section .logo.logo-color .logo-img {
    height: 60px;
  }

  .device-section::before {
    display: none;
    background-color: var(--color-bg);
  }

  .device-section .two-col {
    grid-template-columns: 1fr;
  }

  .device-section .two-col > div:last-child {
    background: var(--color-primary);
    padding: 2rem;
    border-radius: 12px;
    margin: 0 -1rem;
  }

  .product-zoom-container:hover .product-zoom-img {
    transform: scale(1.5);
  }

  .liquid-section {
    min-height: auto;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 30%, #30C7B0 30%, #30C7B0 100%);
  }

  .liquid-section-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0 1rem;
  }

  .liquid-bottle-wrap {
    order: -1;
    justify-content: center;
    padding: 2rem 0 1rem;
  }

  .liquid-bottle-wrap img {
    margin-left: 0;
    max-height: 280px;
  }

  .liquid-content {
    padding: 2rem 1.5rem 3rem;
  }

  .spec-list span:first-child {
    min-width: 110px;
  }

  .mastitis-reasons-row {
    flex-direction: column;
  }

  .mastitis-diagram-wrap {
    width: 100%;
    max-width: none;
  }

  .mastitis-diagram-placeholder {
    min-height: 220px;
  }

  .news-cards-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1rem;
  }

  .hero {
    min-height: 60vh;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .cert-logos img {
    height: 35px;
  }

  .cert-logos {
    gap: 1rem;
  }
}