:root {
  --green: #2f5d50;
  --green-dark: #24483e;
  --green-soft: #e6f0ec;
  --beige: #f6efe5;
  --cream: #fffaf3;
  --brown: #7a4a22;
  --brown-dark: #4d2f18;
  --text: #2f2f2f;
  --muted: #666;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(47, 93, 80, 0.14);
  --radius: 8px;
}

/* GRUNDLAYOUT */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

/* HEADER */

header,
.logo-section {
  text-align: center;
  padding: 34px 20px 28px;
  background: linear-gradient(180deg, var(--cream), var(--beige));
}

header h1,
.logo-section h1 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

header a,
.logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

header a:hover h1,
.logo-link:hover h1 {
  color: var(--green);
}

.site-logo {
  width: min(112px, 34vw);
  height: auto;
  max-height: 112px;
  object-fit: contain;
}

/* NAVIGATION */

nav,
.main-nav {
  width: 100%;
  background: var(--green);
}

.nav {
  width: 100%;
  background: var(--green);
  padding: 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav > .nav {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

.main-nav {
  padding: 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a,
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.main-nav a:hover {
  background: var(--green-dark);
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  min-width: 210px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  min-height: auto;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-toggle {
  display: none;
  width: calc(100% - 32px);
  max-width: 1120px;
  min-height: 48px;
  margin: 0 auto;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle strong {
  margin-left: 4px;
  font-size: 1rem;
}

/* HERO */

.hero {
  min-height: 340px;
  padding: 70px 20px;
  background:
    linear-gradient(rgba(36, 72, 62, 0.58), rgba(36, 72, 62, 0.58)),
    url("https://images.unsplash.com/photo-1601758228041-f3b2795255f1") center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
}

.hero p {
  max-width: 680px;
  margin: 14px auto 0;
  font-size: 1.15rem;
}

.hero-box {
  max-width: 760px;
  padding: 34px 28px;
  background: rgba(0, 0, 0, 0.34);
  border-radius: var(--radius);
}

/* ALLGEMEINE SEKTIONEN */

.section,
.about-container,
.contact-container {
  max-width: 1120px;
  margin: 56px auto;
  padding: 0 22px;
}

.section h2,
.about-container h2,
.contact-container h2 {
  margin: 0 0 26px;
  color: var(--brown);
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section h3,
.about-container h3 {
  color: var(--green-dark);
  margin-top: 34px;
}

/* MARKEN UND KARTEN */

.brand-grid,
.products,
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.brand,
.product,
.card,
.contact-info,
.contact-form,
.about-container,
.quote,
.signature {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand {
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(47, 93, 80, 0.2);
}

.brand img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.brand-logo-tile {
  width: 100%;
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.husse-brand-logo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(210, 42, 47, 0.08), rgba(255, 250, 243, 0.95)),
    var(--white);
}

.husse-brand-logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  width: 30px;
  height: 72px;
  background: linear-gradient(90deg, #005aa7 0 33%, #ffd200 33% 66%, #005aa7 66%);
  border-radius: 0 0 4px 4px;
}

.husse-brand-logo span {
  color: #b3202a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
}

.husse-brand-logo small {
  margin-top: 6px;
  color: #b3202a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.perro-brand-logo {
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.1), rgba(255, 250, 243, 0.96)),
    var(--white);
}

.perro-brand-logo span {
  color: var(--green-dark);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.perro-brand-logo small {
  margin-top: 8px;
  padding: 4px 10px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.josera-brand-logo {
  background:
    linear-gradient(135deg, rgba(242, 196, 0, 0.18), rgba(255, 250, 243, 0.96)),
    var(--white);
}

.josera-brand-logo span {
  color: #7a4a22;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.josera-brand-logo small {
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.platinum-brand-logo {
  background:
    linear-gradient(135deg, rgba(141, 123, 104, 0.16), rgba(230, 240, 236, 0.86)),
    var(--white);
}

.platinum-brand-logo span {
  color: #3b3b3b;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.platinum-brand-logo small {
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand h3 {
  margin: 18px;
  color: var(--brown);
  font-size: 1.35rem;
}

/* MARKENDETAILSEITEN */

.brand-showcase {
  max-width: 1120px;
  margin: 54px auto 20px;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-showcase > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--cream);
}

.brand-logo {
  width: min(360px, 100%);
  margin-bottom: 18px;
}

.brand-showcase h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.brand-showcase p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.leitwolf-showcase {
  border-top: 5px solid #e64b2a;
}

.josera-showcase {
  border-top: 5px solid #f2c400;
}

.husse-showcase {
  border-top: 5px solid #d22a2f;
}

.perro-showcase {
  border-top: 5px solid var(--green);
}

.platinum-showcase {
  grid-template-columns: 0.95fr 1.05fr;
  border-top: 5px solid #8d7b68;
}

.perro-coming-logo {
  min-height: 320px;
  height: 100%;
  border-radius: var(--radius);
}

.perro-affiliate-box {
  max-width: 1120px;
  margin: 24px auto 56px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.perro-coupon-art {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px;
  background: var(--cream);
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: var(--radius);
}

.perro-coupon-art img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(47, 93, 80, 0.12);
}

.perro-affiliate-box h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.perro-affiliate-box p {
  margin: 0 0 12px;
  color: var(--muted);
}

.perro-affiliate-box p:last-child {
  margin-bottom: 0;
}

.perro-affiliate-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  background: var(--green-soft);
  border-radius: var(--radius);
}

.perro-coupon-code {
  min-height: 46px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: var(--white);
  border: 1px dashed rgba(47, 93, 80, 0.45);
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  overflow-wrap: anywhere;
}

.perro-affiliate-actions .button-link {
  margin-top: 0;
  justify-content: center;
  text-align: center;
}

.perro-product-link {
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.perro-product-link:hover {
  text-decoration: underline;
}

.perro-affiliate-actions small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.husse-showcase > img {
  max-height: 430px;
  padding: 22px;
}

.josera-showcase > img {
  object-fit: cover;
  object-position: center;
}

.josera-showcase {
  grid-template-columns: 0.95fr 1.05fr;
}

.leitwolf-benefits {
  margin-top: 34px;
}

.josera-intro {
  margin-top: 34px;
}

.josera-shelf {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.05fr;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.josera-shelf img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
}

.josera-shelf > div:last-child {
  padding: 28px 28px 28px 0;
}

.josera-shelf h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.josera-shelf p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.josera-clean-visual {
  min-height: 360px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(242, 196, 0, 0.2), transparent 32%),
    linear-gradient(145deg, var(--white), var(--cream));
}

.josera-hero-visual {
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.josera-logo-mark {
  text-align: center;
}

.josera-logo-mark span {
  display: block;
  color: #7a4a22;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}

.josera-logo-mark small {
  display: block;
  margin-top: 6px;
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
}

.josera-packshot-row,
.josera-packshot-grid {
  display: grid;
  align-items: end;
  gap: 16px;
}

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

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

.josera-packshot-row img,
.josera-packshot-grid img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(47, 93, 80, 0.14));
}

.josera-packshot-grid img {
  height: 250px;
}

.josera-product-image {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(242, 196, 0, 0.12), var(--white)),
    var(--cream);
}

.leitwolf-product-image {
  height: 275px;
}

.leitwolf-snack-image {
  height: 235px;
}

.husse-note {
  margin-top: 34px;
}

.perro-intro {
  margin-top: 34px;
}

.perro-coming-soon .card {
  text-align: left;
}

.perro-coming-soon .product-label {
  margin-bottom: 14px;
}

.perro-clean-visual {
  min-height: 320px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 12%, rgba(47, 93, 80, 0.14), transparent 34%),
    linear-gradient(145deg, var(--white), var(--cream));
}

.perro-hero-visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.perro-logo-mark {
  text-align: center;
}

.perro-logo-mark span {
  display: block;
  color: var(--green-dark);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.perro-logo-mark small {
  display: block;
  margin-top: 7px;
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.perro-packshot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.perro-packshot-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  filter: brightness(1.08) contrast(1.04) saturate(0.92);
  box-shadow: 0 12px 22px rgba(47, 93, 80, 0.16);
}

.perro-photo-frame {
  width: 100%;
  height: 220px;
  margin: -4px 0 18px;
  padding: 10px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(230, 240, 236, 0.72)),
    var(--cream);
}

.perro-product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  filter: brightness(1.1) contrast(1.04) saturate(0.88);
}

.perro-photo-dog-dry .perro-product-photo {
  object-position: center 45%;
}

.perro-photo-vegi .perro-product-photo {
  object-position: center 46%;
}

.perro-photo-sauce .perro-product-photo {
  object-position: center 42%;
}

.perro-photo-cat-dry .perro-product-photo {
  object-position: center 43%;
}

.perro-photo-cat-variety .perro-product-photo {
  object-position: center 42%;
}

.perro-product-mark {
  width: 100%;
  min-height: 130px;
  margin: -4px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.1), rgba(255, 250, 243, 0.96)),
    var(--cream);
  color: var(--green-dark);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.platinum-intro {
  margin-top: 34px;
}

.platinum-clean-visual {
  min-height: 320px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 93, 80, 0.14), transparent 30%),
    linear-gradient(145deg, var(--white), #f4f1ed);
}

.platinum-hero-visual {
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.platinum-logo-mark {
  text-align: center;
}

.platinum-logo-mark span {
  display: block;
  color: #3b3b3b;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.platinum-logo-mark small {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.platinum-packshot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.platinum-packshot-row img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(47, 93, 80, 0.14));
}

.platinum-shelf {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.05fr;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.platinum-shelf img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
}

.platinum-shelf > div:last-child {
  padding: 28px 28px 28px 0;
}

.platinum-shelf h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.platinum-shelf p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.platinum-product-image {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(141, 123, 104, 0.12), var(--white)),
    var(--cream);
}

.husse-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.husse-product-card {
  text-align: left;
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.husse-product-card .product-label,
.husse-product-card strong {
  align-self: flex-start;
}

.husse-product-image {
  height: 240px;
  padding: 12px;
  margin-bottom: 16px;
}

.husse-rename {
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: 6px;
}

.husse-rename span {
  display: block;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.husse-rename strong {
  display: block;
  margin-top: 2px;
  color: var(--brown-dark);
  font-size: 1.08rem;
}

.husse-price-list,
.product-price-list {
  width: 100%;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(47, 93, 80, 0.14);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.husse-price-list li,
.product-price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(47, 93, 80, 0.1);
}

.husse-price-list li:last-child,
.product-price-list li:last-child {
  border-bottom: 0;
}

.husse-price-list span,
.product-price-list span {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.25;
}

.husse-price-list strong,
.product-price-list strong {
  margin: 0;
  color: var(--brown);
  font-size: 1rem;
  white-space: nowrap;
}

.product,
.card {
  padding: 24px;
  text-align: center;
}

.product {
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.product strong {
  color: var(--brown);
  font-size: 1.18rem;
}

.card h3 {
  margin-top: 0;
  color: var(--brown);
}

.card p {
  margin-bottom: 0;
}

/* CBD PRODUKTE */

.cbd-intro {
  max-width: 860px;
  margin: 54px auto 20px;
  padding: 34px 24px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cbd-showcase {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  text-align: left;
}

.cbd-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.cbd-intro h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cbd-intro p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.cbd-showcase p {
  margin-left: 0;
}

.cbd-quicklinks {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cbd-quicklinks a {
  padding: 9px 13px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.cbd-quicklinks a:hover {
  background: var(--green-dark);
}

.cbd-category {
  margin-top: 42px;
}

.animal-category-hero {
  max-width: 1120px;
  margin: 54px auto 20px;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(230, 240, 236, 0.72)),
    var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.animal-category-hero h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.animal-category-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.animal-category-hero img {
  width: 100%;
  height: 340px;
  padding: 18px;
  object-fit: contain;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--cream), var(--white));
}

.dog-category-hero {
  border-top: 5px solid #8d7b68;
}

.cat-category-hero {
  border-top: 5px solid #f2c400;
}

.category-heading {
  margin-bottom: 24px;
  text-align: center;
}

.category-heading p {
  margin: 0 0 4px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.category-heading h2 {
  margin-bottom: 0;
}

.product-detail-grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.product-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 245px;
  overflow: hidden;
}

.product-highlight {
  border: 2px solid rgba(47, 93, 80, 0.18);
}

.product-image {
  width: 100%;
  height: 210px;
  margin: -4px 0 18px;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, var(--cream), var(--white));
  border-radius: 6px;
}

.product-detail h3 {
  margin: 12px 0 10px;
  color: var(--brown);
  font-size: 1.28rem;
  line-height: 1.25;
}

.product-detail p {
  margin: 0 0 18px;
  color: var(--muted);
}

.product-detail-toggle {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(47, 93, 80, 0.16);
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-detail-toggle:hover,
.product-detail-toggle[aria-expanded="true"] {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.product-detail-panel {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  background: rgba(246, 239, 229, 0.58);
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 6px;
  text-align: left;
}

.product-detail-panel div + div {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(47, 93, 80, 0.12);
}

.product-detail-panel strong {
  display: block;
  margin: 0 0 5px;
  color: var(--brown);
  font-size: 0.86rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-detail-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.product-points {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.product-points li {
  position: relative;
  margin: 7px 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.95rem;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.product-detail strong {
  margin-top: auto;
}

.product-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.category-card-logo {
  height: 170px;
  margin: -4px 0 18px;
  border-radius: 6px;
}

.category-card-logo span {
  font-size: 2.1rem;
}

/* STARTSEITE */

.home-bestsellers {
  margin-top: 46px;
}

.home-sortiment-note {
  max-width: 860px;
  margin: -8px auto 28px;
  padding: 18px 20px;
  color: var(--muted);
  background: rgba(255, 250, 243, 0.78);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(47, 93, 80, 0.08);
  font-size: 1.04rem;
  text-align: center;
}

.home-promo,
.home-about {
  max-width: 1120px;
  margin: 56px auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-about {
  grid-template-columns: 1.1fr 0.9fr;
}

.home-promo h2,
.home-about h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.home-promo p,
.home-about p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.promo-image,
.home-about img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 18px;
  object-fit: contain;
}

.home-about img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 14px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.button-link:hover {
  background: var(--green-dark);
}

.home-service a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.home-service a:hover {
  text-decoration: underline;
}

/* ABO */

.abo-hero,
.abo-details {
  max-width: 1120px;
  margin: 54px auto 20px;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.abo-hero h2,
.abo-details h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.abo-hero p,
.abo-details p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.abo-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--cream);
}

.abo-steps .card {
  text-align: left;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.abo-details {
  align-items: start;
}

.abo-details .product-points {
  margin-top: 18px;
}

.abo-cta .contact-actions {
  justify-content: center;
}

/* UEBER MICH */

.about-hero {
  max-width: 1120px;
  margin: 54px auto 26px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 34px;
  align-items: center;
}

.about-hero img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-intro h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.about-intro p {
  margin: 0;
  font-size: 1.15rem;
}

.quote {
  max-width: 900px;
  margin: 32px auto;
  padding: 28px;
  color: var(--green-dark);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.about-container {
  padding: 36px;
}

.about-container p {
  margin: 0 0 18px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.service-list li {
  margin: 10px 0;
  padding: 12px 14px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: 6px;
}

.signature {
  margin-top: 32px;
  padding: 22px;
  background: var(--cream);
}

.signature p {
  margin: 4px 0;
}

/* KONTAKT */

.insurance-hero {
  max-width: 1120px;
  margin: 54px auto 20px;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.insurance-hero h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.insurance-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.insurance-logo-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.12), rgba(255, 250, 243, 0.96)),
    var(--cream);
  text-align: center;
}

.insurance-logo-card span {
  color: var(--green-dark);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.insurance-logo-card small {
  margin-top: 10px;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insurance-docs {
  margin-top: 42px;
}

.contact-hero {
  max-width: 1120px;
  margin: 54px auto 20px;
  padding: 34px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-hero h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.contact-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-actions a {
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.contact-actions a:hover {
  background: var(--green-dark);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-info,
.contact-form {
  padding: 30px;
}

.contact-info h2,
.contact-form h2 {
  text-align: left;
}

.contact-info p {
  margin: 12px 0;
}

.contact-info a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form p {
  margin: 0 0 12px;
  color: var(--muted);
}

.contact-form label {
  color: var(--green-dark);
  font-weight: 700;
}

.contact-methods {
  display: grid;
  gap: 10px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.contact-methods a:hover {
  background: var(--green);
  color: var(--white);
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 700;
}

.legal-content h2 {
  text-align: left;
}

.legal-content h3 {
  margin-top: 28px;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8cbbb;
  border-radius: 6px;
  font: inherit;
  background: var(--cream);
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(47, 93, 80, 0.18);
  border-color: var(--green);
}

button,
.contact-form button {
  border: 0;
  border-radius: 6px;
  padding: 14px 18px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

button:hover,
.contact-form button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* CTA */

.cta {
  max-width: 900px;
  margin: 54px auto;
  padding: 36px 24px;
  text-align: center;
  background: var(--green-soft);
}

.cta h2 {
  margin: 0 0 10px;
  color: var(--brown);
}

.cta p {
  margin: 0 0 22px;
}

/* FOOTER */

footer {
  margin-top: 60px;
  padding: 28px 20px;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

footer p {
  margin: 4px 0;
}

/* TABLET UND MOBILE */

@media (max-width: 1024px) {
  header,
  .logo-section {
    padding: 28px 16px 22px;
  }

  nav,
  .main-nav {
    padding: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav,
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    gap: 4px;
    background: var(--green);
  }

  .nav.nav-open,
  .main-nav.nav-open {
    display: flex;
  }

  .nav a,
  .main-nav a {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    text-align: left;
  }

  .dropdown > a::after {
    content: "+";
    margin-left: auto;
    font-size: 1.15rem;
  }

  .dropdown.active > a::after {
    content: "-";
  }

  .dropdown-menu {
    display: none;
    position: static;
    min-width: 100%;
    margin-top: 4px;
    padding: 4px;
    border-radius: 6px;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    min-height: 42px;
    padding: 10px 12px;
  }

  .hero {
    min-height: 270px;
    padding: 50px 18px;
  }

  .cbd-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-showcase,
  .perro-affiliate-box,
  .home-promo,
  .home-about,
  .abo-hero,
  .abo-details,
  .insurance-hero,
  .animal-category-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .cbd-showcase p {
    margin-left: auto;
  }

  .cbd-quicklinks {
    justify-content: center;
  }

  .home-promo,
  .home-about,
  .abo-hero,
  .abo-details,
  .insurance-hero,
  .animal-category-hero {
    margin: 40px auto;
  }

  .josera-shelf {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platinum-shelf {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .josera-shelf img {
    height: 300px;
  }

  .platinum-shelf img {
    height: 280px;
  }

  .josera-shelf > div:last-child {
    padding: 0 24px 26px;
  }

  .platinum-shelf > div:last-child {
    padding: 0 24px 26px;
  }

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

  .perro-packshot-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .platinum-packshot-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-hero,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-container,
  .contact-info,
  .contact-form {
    padding: 24px;
  }

  .section,
  .about-container,
  .contact-container {
    margin: 40px auto;
  }
}

@media (max-width: 560px) {
  .nav-toggle {
    width: 100%;
  }

  .brand-showcase,
  .cbd-intro,
    .contact-hero,
    .perro-affiliate-box,
    .home-promo,
    .home-about,
    .abo-hero,
    .abo-details,
    .insurance-hero,
    .animal-category-hero,
    .josera-shelf,
    .platinum-shelf {
      margin-top: 32px;
      border-radius: 0;
  }

  .perro-affiliate-box {
    margin-bottom: 40px;
    padding: 24px 18px;
  }

  .animal-category-hero img {
    height: 260px;
  }

  .josera-shelf img {
    height: 260px;
  }

  .platinum-shelf img {
    height: 240px;
  }

  .josera-clean-visual {
    min-height: auto;
    padding: 22px 16px;
  }

  .platinum-clean-visual {
    min-height: auto;
    padding: 22px 16px;
  }

  .josera-packshot-row {
    grid-template-columns: 1fr;
  }

  .josera-packshot-row img,
  .josera-packshot-grid img {
    height: 190px;
  }

  .perro-packshot-row {
    grid-template-columns: 1fr;
  }

  .platinum-packshot-row {
    grid-template-columns: 1fr;
  }

  .perro-packshot-row img,
  .platinum-packshot-row img,
  .perro-photo-frame {
    height: 190px;
  }

  .products,
  .cards,
  .brand-grid {
    grid-template-columns: 1fr;
  }
}
