/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B4332;
  --green-main:   #2D6A4F;
  --green-mid:    #40916C;
  --green-light:  #74C69D;
  --green-pale:   #D8F3DC;
  --green-bg:     #f8faf9;
  --white:        #ffffff;
  --gray-100:     #f4f6f5;
  --gray-200:     #e8eceb;
  --gray-400:     #9aada7;
  --gray-600:     #5a706a;
  --gray-800:     #1e2e2a;
  --accent:       #52B788;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Merriweather', Georgia, serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(45,106,79,.08);
  --shadow-md:    0 8px 32px rgba(45,106,79,.12);
  --shadow-lg:    0 20px 60px rgba(45,106,79,.18);
  --transition:   .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--green-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 0 rgba(45,106,79,.04);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
  min-width: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon { display: flex; align-items: center; }

.logo__icon svg { filter: drop-shadow(0 2px 6px rgba(45,106,79,.25)); }

.logo__text {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gray-800);
  letter-spacing: -.5px;
}

.logo__text strong {
  font-weight: 800;
  color: var(--green-main);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--green-main);
  background: var(--green-pale);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: var(--transition);
  border-radius: 8px;
}

.btn--search {
  width: 38px;
  height: 38px;
  background: var(--gray-100);
  color: var(--gray-600);
}
.btn--search:hover { background: var(--green-pale); color: var(--green-main); }

.btn--primary {
  padding: 9px 20px;
  font-size: .88rem;
  background: var(--green-main);
  color: var(--white);
  border-radius: 8px;
}
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 55%, var(--green-mid) 100%);
  overflow: hidden;
  padding: 80px 0 0;
}

/* Background decorative shapes */
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.shape--1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.shape--2 { width: 300px; height: 300px; bottom: 0;    left: -80px;  background: rgba(255,255,255,.04); }
.shape--3 { width: 180px; height: 180px; top: 40px;    left: 38%;    background: rgba(255,255,255,.05); }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Hero content */
.hero__content { color: var(--white); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #b7e4c7;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.hero__title--highlight {
  color: var(--green-light);
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px 6px 6px 16px;
  gap: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  max-width: 520px;
  min-width: 0;
}

.search-box__icon { color: var(--gray-400); flex-shrink: 0; }

.search-box__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--gray-800);
  background: transparent;
  min-width: 0;
}
.search-box__input::placeholder { color: var(--gray-400); }

.search-box__btn {
  background: var(--green-main);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.search-box__btn:hover { background: var(--green-dark); }

/* Hero tags */
.hero__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.tag-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

.tag {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  transition: var(--transition);
}
.tag:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

/* ===========================
   HERO VISUAL — Card stack
   =========================== */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__card-stack {
  position: relative;
  width: 320px;
  height: 380px;
}

/* Drug cards */
.drug-card {
  position: absolute;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.drug-card--back {
  transform: rotate(-8deg) translateY(12px) translateX(-10px);
  opacity: .45;
  background: #c7e8d5;
  height: 200px;
  top: 40px;
  left: 20px;
}
.drug-card--back .drug-card__dot  { width: 36px; height: 12px; border-radius: 6px; background: rgba(45,106,79,.3); margin-bottom: 16px; }
.drug-card--back .line            { height: 10px; border-radius: 5px; background: rgba(45,106,79,.15); margin-bottom: 10px; }
.drug-card--back .line--long      { width: 80%; }
.drug-card--back .line--short     { width: 55%; }

.drug-card--mid {
  transform: rotate(-3deg) translateY(6px);
  opacity: .65;
  background: #e8f5ee;
  height: 220px;
  top: 24px;
  left: 12px;
}
.drug-card--mid .drug-card__dot  { width: 36px; height: 12px; border-radius: 6px; background: rgba(45,106,79,.2); margin-bottom: 16px; }
.drug-card--mid .line            { height: 10px; border-radius: 5px; background: rgba(45,106,79,.12); margin-bottom: 10px; }
.drug-card--mid .line--long      { width: 75%; }
.drug-card--mid .line--short     { width: 50%; }

.drug-card--front {
  top: 0;
  left: 0;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.drug-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.drug-card__badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 100px;
}

.drug-card__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -.04em;
  line-height: 1.12;
  min-height: 3.4rem;
  margin-bottom: 2px;
  overflow-wrap: anywhere;
}

.drug-card__type {
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.drug-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  margin-bottom: 18px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.info-row span  { color: var(--gray-400); }
.info-row strong{ color: var(--gray-800); font-weight: 600; }

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

.chip {
  font-size: .76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.chip--green { background: var(--green-pale); color: var(--green-dark); }
.chip--link  { color: var(--green-main); transition: color var(--transition); }
.chip--link:hover { color: var(--green-dark); }

/* Floating stat bubbles */
.stat-bubble {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.stat-bubble strong { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.stat-bubble span   { font-size: .7rem;  color: var(--gray-400); white-space: nowrap; }

.stat-bubble--1 { bottom: 20px; right: -20px; animation-delay: .5s; }
.stat-bubble--2 { top: -10px;   right: -30px; animation-delay: 1.5s; flex-direction: row; gap: 6px; align-items: center; }
.stat-bubble--2 strong { font-size: .85rem; }

/* Hero wave */
.hero__wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: -1px;
}
.hero__wave svg { width: 100%; display: block; }

/* ===========================
   PROSPEKTÜSLER SECTION
   =========================== */
.prospektusler {
  padding: 80px 0 100px;
  background: var(--green-bg);
}

/* Section header */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--gray-800);
  line-height: 1.15;
}

.section-desc {
  color: var(--gray-600);
  font-size: .95rem;
  margin-top: 6px;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-tab {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover         { border-color: var(--green-light); color: var(--green-main); }
.filter-tab--active       { background: var(--green-main); border-color: var(--green-main); color: var(--white); }

/* Grid */
.drugs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Prospektüs kartı */
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid var(--gray-200);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.pcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.pcard:hover::before { opacity: 1; }

.pcard--featured {
  border-color: var(--green-light);
  background: linear-gradient(135deg, #f0fbf4 0%, var(--white) 100%);
}

.pcard__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* Icon variants */
.pcard__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pcard__icon--green  { background: #d8f3dc; color: #2D6A4F; }
.pcard__icon--orange { background: #fff3e0; color: #e07b00; }
.pcard__icon--blue   { background: #e3f2fd; color: #1565c0; }
.pcard__icon--purple { background: #f3e5f5; color: #7b1fa2; }
.pcard__icon--red    { background: #fce4ec; color: #c62828; }

.pcard__cat {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.pcard__featured-badge {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.pcard__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -.03em;
  margin-bottom: 8px;
  position: relative;
}

.pcard__desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  position: relative;
}

.pcard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
  position: relative;
  gap: 10px;
  min-width: 0;
}

.pcard__animals {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.atag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 3px 9px 3px 7px;
  border-radius: 100px;
}
.atag i { width: 12px; height: 12px; flex-shrink: 0; }

.pcard__arrow {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-main);
  transition: color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.pcard:hover .pcard__arrow { color: var(--green-dark); transform: translateX(3px); }

/* ===========================
   RESPONSIVE
   =========================== */
/* ===========================
   PAGINATION
   =========================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  text-decoration: none;
  transition: var(--transition);
}

.page-btn:hover {
  border-color: var(--green-light);
  color: var(--green-main);
  background: var(--green-pale);
}

.page-btn--active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}
.page-btn--active:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.page-btn--nav { color: var(--gray-600); }

.page-dots {
  font-size: .9rem;
  color: var(--gray-400);
  padding: 0 4px;
  line-height: 40px;
}

/* ===========================
   RESPONSIVE
   =========================== */
/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--white);
  border-top: 1.5px solid var(--gray-200);
  margin-top: 0;
}

/* Top — mega columns */
.footer__top { padding: 64px 0 48px; }

.footer__top-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
}

/* Brand column */
.footer__brand-desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--green-light);
  color: var(--green-main);
  background: var(--green-pale);
}

/* Link columns */
.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: .88rem;
  color: var(--gray-600);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer__links a i { width: 14px; height: 14px; flex-shrink: 0; }
.footer__links a:hover { color: var(--green-main); }

/* Newsletter */
.footer__newsletter {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1.5px solid var(--gray-200);
}

.footer__newsletter-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.footer__newsletter-form {
  display: flex;
  gap: 6px;
  min-width: 0;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}
.footer__newsletter-form input:focus { border-color: var(--green-light); }
.footer__newsletter-form input::placeholder { color: var(--gray-400); }

.footer__newsletter-form button {
  padding: 9px 16px;
  background: var(--green-main);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.footer__newsletter-form button:hover { background: var(--green-dark); }

/* Stats bar */
.footer__stats {
  border-top: 1.5px solid var(--gray-200);
  border-bottom: 1.5px solid var(--gray-200);
  background: var(--green-bg);
  padding: 20px 0;
}

.footer__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.fstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  gap: 2px;
}
.fstat strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-main);
  letter-spacing: -.03em;
}
.fstat span {
  font-size: .75rem;
  color: var(--gray-600);
  font-weight: 500;
}

.fstat__divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Bottom bar */
.footer__bottom {
  padding: 18px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__copy {
  font-size: .82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.footer__disclaimer {
  font-size: .78rem;
  color: var(--gray-400);
  text-align: right;
  max-width: 480px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .drugs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .footer__top-inner    { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__disclaimer   { text-align: center; }
  .fstat                { padding: 0 24px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-bottom: 60px;
  }
  .hero__visual { display: none; }
  .hero__desc   { margin: 0 auto 36px; }
  .search-box   { max-width: 100%; }
  .hero__tags   { justify-content: center; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .filter-tabs    { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .drugs-grid           { grid-template-columns: 1fr; }
  .footer__top-inner    { grid-template-columns: 1fr; }
  .footer__stats-inner  { flex-wrap: wrap; gap: 16px; }
  .fstat__divider       { display: none; }
  .fstat                { padding: 0 20px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hamburger { display: flex; }
  .header__inner {
    gap: 14px;
    height: auto;
    min-height: 68px;
    padding: 12px 0;
    flex-wrap: wrap;
  }
  .nav {
    display: none;
    width: 100%;
    order: 4;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0 0;
  }
  .nav__link {
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
  }
  .header__actions {
    display: none;
    width: 100%;
    order: 3;
    gap: 8px;
  }
  .header__actions .btn {
    flex: 1;
  }
  .header--menu-open .nav,
  .header--menu-open .header__actions {
    display: flex;
  }
  .search-box {
    max-width: 100%;
    flex-wrap: wrap;
    padding: 12px;
  }
  .search-box__input {
    width: 100%;
    min-width: 0;
  }
  .search-box__btn {
    width: 100%;
  }
  .pcard__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .pcard__arrow {
    width: 100%;
    justify-content: space-between;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .prospektusler {
    padding: 56px 0 72px;
  }
  .footer__brand-desc,
  .footer__disclaimer {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .logo__text {
    font-size: 1.2rem;
  }
  .hero {
    padding-top: 44px;
  }
  .hero__inner {
    padding-bottom: 48px;
  }
  .hero__title {
    font-size: 1.9rem;
  }
  .hero__desc {
    font-size: .96rem;
  }
  .pcard,
  .category-card,
  .info-card {
    padding: 20px;
  }
  .search-box {
    padding: 10px;
  }
  .hero__badge,
  .tag,
  .filter-tab {
    max-width: 100%;
  }
  .footer__newsletter-form {
    flex-direction: column;
  }
  .footer__newsletter-form button {
    width: 100%;
  }
}
