:root {
    /* Brand Colors (REiCO Guideline 2026) */
    --color-white: #ffffff;
    --color-alge: #3A3D0C;
    /* Dunkelgrün - Primary text & dark bg */
    --color-kalk: #EAE2D5;
    /* Beige - Flächenfarbe */
    --color-chlorophyll-dunkel: #E7F191;
    /* Gelbgrün - Akzentfarbe */
    --color-chlorophyll-hell: #EEF5B2;
    /* Hellgelbgrün - Flächenfarbe */
    --color-kristall-rot: #FF9888;
    /* Coral/Salmon - Exklusiv für interaktive Elemente & Störer */

    /* Secondary Colors (Product category identification) */
    --color-hund: #6E8C82;
    /* Slate Green */
    --color-hund-light: #C5D1CD;
    --color-katze: #6D94A3;
    /* Slate Blue */
    --color-katze-light: #C5D4DA;
    --color-pferd: #C3C9A1;
    /* Sage Green */
    --color-pferd-light: #E7E9D9;
    --color-mensch: #EFCDAA;
    /* Warm Peach */
    --color-mensch-light: #F7E6D5;

    /* Theme Mappings */
    --color-bg: var(--color-white);
    --color-text: var(--color-alge);
    /* Guideline: Schrift in Alge */
    --color-primary: var(--color-alge);
    --color-secondary: var(--color-hund);
    --color-tertiary: var(--color-kristall-rot);
    --color-muted: var(--color-kalk);
    --color-soft: var(--color-chlorophyll-hell);
    --color-line: rgba(58, 61, 12, 0.08);
    --color-line-strong: rgba(58, 61, 12, 0.16);

    --shadow-soft: 0 18px 40px rgba(58, 61, 12, 0.04);
    --shadow-card: 0 12px 26px rgba(58, 61, 12, 0.06);
    --shadow-hover: 0 18px 34px rgba(58, 61, 12, 0.1);
    --site-width: 1600px;
    --radius-min: 8px;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Category Specific Theme Overrides */
main[data-category="hund"] {
    --category-base: var(--color-hund);
    --category-light: var(--color-hund-light);
    --category-light-soft: rgba(110, 140, 130, 0.06);
    --category-border: rgba(110, 140, 130, 0.35);
    --category-bg-active: rgba(110, 140, 130, 0.12);
}

main[data-category="hund"] .page-intro {
    background: #6E8C82;
    border-bottom-color: rgba(110, 140, 130, 0.6);
}

main[data-category="hund"] .page-intro .breadcrumb,
main[data-category="hund"] .page-intro .breadcrumb a,
main[data-category="hund"] .page-intro h1,
main[data-category="hund"] .page-intro h2,
main[data-category="hund"] .page-intro h3,
main[data-category="hund"] .page-intro .page-copy,
main[data-category="hund"] .page-intro .section-kicker {
    color: #ffffff;
}

main[data-category="hund"] .page-intro .section-kicker::before {
    background: rgba(255, 255, 255, 0.55);
}

main[data-category="pferd"] {
    --category-base: var(--color-pferd);
    --category-light: var(--color-pferd-light);
    --category-light-soft: rgba(195, 201, 161, 0.12);
    --category-border: rgba(195, 201, 161, 0.45);
    --category-bg-active: rgba(195, 201, 161, 0.15);
}

main[data-category="pferd"] .page-intro {
    background: #C3C9A1;
    border-bottom-color: rgba(195, 201, 161, 0.6);
}

main[data-category="pferd"] .page-intro .breadcrumb,
main[data-category="pferd"] .page-intro .breadcrumb a,
main[data-category="pferd"] .page-intro h1,
main[data-category="pferd"] .page-intro h2,
main[data-category="pferd"] .page-intro h3,
main[data-category="pferd"] .page-intro .page-copy,
main[data-category="pferd"] .page-intro .section-kicker {
    color: #000000;
}

main[data-category="pferd"] .page-intro .section-kicker::before {
    background: rgba(0, 0, 0, 0.4);
}

main[data-category="mensch"] {
    --category-base: var(--color-mensch);
    --category-light: var(--color-mensch-light);
    --category-light-soft: rgba(239, 205, 170, 0.1);
    --category-border: rgba(239, 205, 170, 0.45);
    --category-bg-active: rgba(239, 205, 170, 0.15);
}

main[data-category="mensch"] .page-intro {
    background: #EFCDAA;
    border-bottom-color: rgba(239, 205, 170, 0.6);
}

main[data-category="mensch"] .page-intro .breadcrumb,
main[data-category="mensch"] .page-intro .breadcrumb a,
main[data-category="mensch"] .page-intro h1,
main[data-category="mensch"] .page-intro h2,
main[data-category="mensch"] .page-intro h3,
main[data-category="mensch"] .page-intro .page-copy,
main[data-category="mensch"] .page-intro .section-kicker {
    color: #000000;
}

main[data-category="mensch"] .page-intro .section-kicker::before {
    background: rgba(0, 0, 0, 0.4);
}

main[data-category="katze"] {
    --category-base: var(--color-katze);
    --category-light: var(--color-katze-light);
    --category-light-soft: rgba(109, 148, 163, 0.06);
    --category-border: rgba(109, 148, 163, 0.35);
    --category-bg-active: rgba(109, 148, 163, 0.12);
}

main[data-category="katze"] .page-intro {
    background: #6D94A3;
    border-bottom-color: rgba(109, 148, 163, 0.6);
}

main[data-category="katze"] .page-intro .breadcrumb,
main[data-category="katze"] .page-intro .breadcrumb a,
main[data-category="katze"] .page-intro h1,
main[data-category="katze"] .page-intro h2,
main[data-category="katze"] .page-intro h3,
main[data-category="katze"] .page-intro .page-copy,
main[data-category="katze"] .page-intro .section-kicker {
    color: #ffffff;
}

main[data-category="katze"] .page-intro .section-kicker::before {
    background: rgba(255, 255, 255, 0.55);
}

/* Apply Theme overrides to specific components dynamically */
main[data-category] .section-kicker {
    color: var(--category-base);
}

main[data-category] .section-kicker::before {
    background: var(--category-base);
}

main[data-category] .breadcrumb a:hover {
    color: var(--category-base);
}

main[data-category] .sidebar-links a:hover,
main[data-category] .sidebar-links a.is-active {
    border-color: var(--category-border);
    background: var(--category-bg-active);
}

main[data-category] .price-note {
    color: var(--category-base);
}

main[data-category] .status-pill.status-secondary {
    background: var(--category-bg-active);
    color: var(--color-alge);
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(1.25rem, 1.1rem + 1.45vw, 2.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.05rem, 0.9rem + 1.45vw, 1.95rem);
    font-weight: 700;
    line-height: 1.16;
}

h3 {
    font-size: clamp(0.95rem, 0.9rem + 0.32vw, 1.08rem);
    font-weight: 700;
    line-height: 1.2;
}

ul {
    margin: 0;
    padding-left: 1.15rem;
}

button,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.5rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--color-tertiary);
    /* Kristall-Rot as default for buttons */
    color: var(--color-text);
    /* Alge Dunkelgrün text */
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
}

button:hover,
.button-link:hover {
    background: var(--color-primary);
    /* Alge Dunkelgrün on hover */
    color: #ffffff;
    transform: translateY(-1px);
}

.button-link--primary {
    background: var(--color-tertiary);
    color: var(--color-text);
}

.button-link--secondary {
    background: var(--color-primary);
    color: #ffffff;
}

.button-link--secondary:hover {
    background: var(--color-tertiary);
    color: var(--color-text);
}

.button-link--ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-line-strong);
    box-shadow: none;
}

.button-link--ghost:hover {
    background: var(--color-tertiary);
    border-color: var(--color-tertiary);
    color: var(--color-text);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--color-line-strong);
    border-radius: var(--radius-min);
    background: #ffffff;
    color: var(--color-text);
    font: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(58, 61, 12, 0.12);
}

label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.site-shell {
    width: min(var(--site-width), calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 88px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.site-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 198px;
    height: 66px;
    padding: 0.45rem 0.75rem;
    background: #ffffff;
    /*border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);*/
    flex-shrink: 0;
}

.site-brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.site-brand__text strong {
    font-size: 1rem;
}

.site-brand__text small {
    color: rgba(0, 0, 0, 0.6);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    flex-wrap: wrap;
}

.site-nav a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.72);
    transition: color var(--transition);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.3rem;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--color-text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-subnav-wrap {
    background: #faf9f6;
    border-bottom: 1px solid var(--color-line);
    padding: 0.75rem 0;
    box-shadow: inset 0 2px 4px rgba(58, 61, 12, 0.02);
}

.site-nav--secondary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav--secondary a {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(58, 61, 12, 0.65) !important;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.site-nav--secondary a::after {
    display: none !important; /* Disable underline animation on secondary navigation */
}

/* Subnav category color variations */
.site-subnav-wrap[data-category="hund"] {
    background: rgba(110, 140, 130, 0.04);
    border-bottom: 1px solid rgba(110, 140, 130, 0.12);
}
.site-subnav-wrap[data-category="hund"] .site-nav--secondary a:hover {
    color: var(--color-hund) !important;
    background: rgba(110, 140, 130, 0.08);
}
.site-subnav-wrap[data-category="hund"] .site-nav--secondary a.is-active {
    background: var(--color-hund);
    color: #ffffff !important;
    box-shadow: var(--shadow-soft);
}

.site-subnav-wrap[data-category="katze"] {
    background: rgba(109, 148, 163, 0.04);
    border-bottom: 1px solid rgba(109, 148, 163, 0.12);
}
.site-subnav-wrap[data-category="katze"] .site-nav--secondary a:hover {
    color: var(--color-katze) !important;
    background: rgba(109, 148, 163, 0.08);
}
.site-subnav-wrap[data-category="katze"] .site-nav--secondary a.is-active {
    background: var(--color-katze);
    color: #ffffff !important;
    box-shadow: var(--shadow-soft);
}

.site-subnav-wrap[data-category="pferd"] {
    background: rgba(195, 201, 161, 0.04);
    border-bottom: 1px solid rgba(195, 201, 161, 0.15);
}
.site-subnav-wrap[data-category="pferd"] .site-nav--secondary a:hover {
    color: #899064 !important; /* Darker tint for text contrast */
    background: rgba(195, 201, 161, 0.12);
}
.site-subnav-wrap[data-category="pferd"] .site-nav--secondary a.is-active {
    background: var(--color-pferd);
    color: var(--color-alge) !important;
    box-shadow: var(--shadow-soft);
}

.site-subnav-wrap[data-category="mensch"] {
    background: rgba(239, 205, 170, 0.04);
    border-bottom: 1px solid rgba(239, 205, 170, 0.15);
}
.site-subnav-wrap[data-category="mensch"] .site-nav--secondary a:hover {
    color: #b78a5e !important; /* Darker tint for text contrast */
    background: rgba(239, 205, 170, 0.12);
}
.site-subnav-wrap[data-category="mensch"] .site-nav--secondary a.is-active {
    background: var(--color-mensch);
    color: var(--color-alge) !important;
    box-shadow: var(--shadow-soft);
}

.site-actions {
    display: flex;
    align-items: center;
}

.site-mobile-panel {
    display: none;
}

.chip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-line-strong);
    border-radius: 999px;
    background: #ffffff;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.chip-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.65rem;
    background: var(--color-secondary);
    color: #ffffff;
    border-radius: 999px;
}

.hero {
    padding: 72px 0 56px;
}

.hero-home {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(255, 152, 137, 0.06), transparent 38%),
        linear-gradient(120deg, rgba(143, 143, 55, 0.06), transparent 52%),
        url("../img/hero.jpg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--color-line);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.8fr);
    gap: 32px;
    align-items: stretch;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--color-tertiary);
}

.hero__lead,
.page-copy {
    max-width: 760px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.05rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0.4rem;
}

.hero-metrics--compact {
    margin-bottom: 28px;
}

.metric-card {
    padding: 1rem 1.1rem;
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.metric-card span {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.metric-card strong {
    display: block;
    font-size: 1rem;
}

.hero-panel {
    display: grid;
    gap: 16px;
}

.hero-panel__card,
.filter-card,
.content-card,
.subtle-panel,
.empty-state,
.message-box {
    padding: 1.4rem;
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.hero-panel__card--accent,
.filter-card--accent {
    background: linear-gradient(180deg, rgba(106, 138, 127, 0.14), rgba(255, 152, 137, 0.12));
}

.feature-list {
    display: grid;
    gap: 0.9rem;
}

.feature-list li {
    color: rgba(0, 0, 0, 0.74);
}

.section-block {
    padding: 64px 0;
}

.section-block--muted {
    background: linear-gradient(180deg, rgba(143, 143, 55, 0.05), rgba(106, 138, 127, 0.04));
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.section-block--tight-top {
    padding-top: 24px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 24px;
}

.section-head--tight {
    margin-bottom: 18px;
}

.section-head h2,
.content-card h2,
.summary-panel h2,
.filter-card h2 {
    font-size: clamp(1rem, 0.92rem + 1vw, 1.55rem);
}

.empty-state h3,
.product-card__body h3 {
    font-size: clamp(0.98rem, 0.94rem + 0.28vw, 1.12rem);
}

.text-link {
    color: var(--color-primary);
    font-weight: 600;
}

.page-intro {
    padding: 36px 0;
    background: rgba(58, 61, 12, 0.12);
    border-bottom: 1px solid rgba(58, 61, 12, 0.25);
    margin-bottom: 32px;
    transition: background var(--transition);
}

.page-intro .breadcrumb {
    color: rgba(0, 0, 0, 0.72);
}

.page-intro .breadcrumb a {
    color: rgba(0, 0, 0, 0.72);
}

.page-intro .breadcrumb a:hover {
    color: var(--color-primary);
}

.page-intro .section-kicker {
    color: var(--color-primary);
}

.page-intro .section-kicker::before {
    background: var(--color-tertiary);
}

.page-intro h1,
.page-intro h2,
.page-intro h3 {
    color: var(--color-text);
}

.page-intro .page-copy {
    color: rgba(0, 0, 0, 0.7);
}

.page-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 2.4rem;
    align-items: center;
}

.page-intro__visual {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-intro__visual img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

main[data-category="hund"] .page-intro__visual img,
main[data-category="katze"] .page-intro__visual img {
    filter: brightness(0) invert(1);
}

main[data-category="mensch"] .page-intro__visual img,
main[data-category="pferd"] .page-intro__visual img {
    filter: none;
}

@media (max-width: 900px) {
    .page-intro__grid {
        grid-template-columns: 1fr;
    }

    .page-intro__visual {
        min-height: 220px;
    }
}

/* Smaller hero visuals for product pages */
.page-intro--product .page-intro__visual {
    min-height: 180px;
}

@media (max-width: 900px) {
    .page-intro--product .page-intro__visual {
        min-height: 140px;
    }
}

.page-intro .breadcrumb {
    color: rgba(0, 0, 0, 0.72);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.testimonials-section {
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
}

.testimonial-viewport {
    overflow: hidden;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    min-height: 100%;
    padding: 1.6rem 1.25rem 1.45rem;
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.testimonial-card--olive .testimonial-avatar {
    background: rgba(58, 61, 12, 0.08);
    color: var(--color-primary);
}

.testimonial-card--sage .testimonial-avatar {
    background: rgba(110, 140, 130, 0.16);
    color: var(--color-hund);
}

.testimonial-card--peach .testimonial-avatar {
    background: rgba(239, 205, 170, 0.25);
    color: #b87850;
}

.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonial-stars {
    color: var(--color-primary);
    font-size: 1rem;
    letter-spacing: 0.18em;
}

.testimonial-name {
    font-size: 1rem;
}

.testimonial-quote {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.96rem;
    line-height: 1.65;
}

.testimonial-card--invitation {
    align-content: center;
    background: linear-gradient(145deg, rgba(58, 61, 12, 0.05), rgba(110, 140, 130, 0.14));
    border: 1px dashed rgba(58, 61, 12, 0.35);
}

.testimonial-avatar--invitation {
    background: var(--color-primary);
    color: #ffffff;
}

.testimonial-invitation__label {
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-invitation__link {
    margin-top: 0.15rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 360px;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card__overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-card__badges {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    font-size: 0.76rem;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.category-badge--empty {
    background: transparent;
    border-style: dashed;
    cursor: default;
}

.category-badge:not(.category-badge--empty):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(58, 61, 12, 0.12);
}

/* When category card is hovered, the card background turns light, text becomes dark (alge) */
.category-card:hover .category-badge {
    background: rgba(58, 61, 12, 0.05);
    color: var(--color-alge);
    border-color: rgba(58, 61, 12, 0.12);
}

.category-card:hover .category-badge--empty {
    border-style: dashed;
    background: transparent;
}

/* Individual badge hover states when inside a card of a specific category */
.category-card[data-category="hund"] .category-badge:not(.category-badge--empty):hover {
    background: var(--color-hund);
    border-color: var(--color-hund);
    color: #ffffff;
}

.category-card[data-category="katze"] .category-badge:not(.category-badge--empty):hover {
    background: var(--color-katze);
    border-color: var(--color-katze);
    color: #ffffff;
}

.category-card[data-category="pferd"] .category-badge:not(.category-badge--empty):hover {
    background: var(--color-pferd);
    border-color: var(--color-pferd);
    color: #ffffff;
}

.category-card[data-category="mensch"] .category-badge:not(.category-badge--empty):hover {
    background: #d1a171;
    border-color: #d1a171;
    color: #ffffff;
}

.category-card[data-category="hund"] {
    background: var(--color-hund);
    color: #ffffff;
}
.category-card[data-category="hund"] .category-card__label {
    color: rgba(255, 255, 255, 0.72) !important;
}
.category-card[data-category="hund"] .category-card__link {
    color: #ffffff;
}
.category-card[data-category="hund"] .category-card__icon img {
    filter: brightness(0) invert(1);
}
.category-card[data-category="hund"]:hover {
    border-color: var(--color-hund);
    background: var(--color-hund-light);
    color: var(--color-alge);
}
.category-card[data-category="hund"]:hover .category-card__label {
    color: rgba(58, 61, 12, 0.6) !important;
}
.category-card[data-category="hund"]:hover .category-card__link {
    color: var(--color-hund);
}
.category-card[data-category="hund"]:hover .category-card__icon img {
    filter: none;
}

.category-card[data-category="katze"] {
    background: var(--color-katze);
    color: #ffffff;
}
.category-card[data-category="katze"] .category-card__label {
    color: rgba(255, 255, 255, 0.72) !important;
}
.category-card[data-category="katze"] .category-card__link {
    color: #ffffff;
}
.category-card[data-category="katze"] .category-card__icon img {
    filter: brightness(0) invert(1);
}
.category-card[data-category="katze"]:hover {
    border-color: var(--color-katze);
    background: var(--color-katze-light);
    color: var(--color-alge);
}
.category-card[data-category="katze"]:hover .category-card__label {
    color: rgba(58, 61, 12, 0.6) !important;
}
.category-card[data-category="katze"]:hover .category-card__link {
    color: var(--color-katze);
}
.category-card[data-category="katze"]:hover .category-card__icon img {
    filter: none;
}

.category-card[data-category="pferd"] {
    background: var(--color-pferd);
    color: #ffffff;
}
.category-card[data-category="pferd"] .category-card__label {
    color: rgba(255, 255, 255, 0.72) !important;
}
.category-card[data-category="pferd"] .category-card__link {
    color: #ffffff;
}
.category-card[data-category="pferd"] .category-card__icon img {
    filter: brightness(0) invert(1);
}
.category-card[data-category="pferd"]:hover {
    border-color: var(--color-pferd);
    background: var(--color-pferd-light);
    color: var(--color-alge);
}
.category-card[data-category="pferd"]:hover .category-card__label {
    color: rgba(58, 61, 12, 0.6) !important;
}
.category-card[data-category="pferd"]:hover .category-card__link {
    color: var(--color-pferd);
}
.category-card[data-category="pferd"]:hover .category-card__icon img {
    filter: none;
}

.category-card[data-category="mensch"] {
    background: #d1a171;
    color: #ffffff;
}
.category-card[data-category="mensch"] .category-card__label {
    color: rgba(255, 255, 255, 0.72) !important;
}
.category-card[data-category="mensch"] .category-card__link {
    color: #ffffff;
}
.category-card[data-category="mensch"] .category-card__icon img {
    filter: brightness(0) invert(1);
}
.category-card[data-category="mensch"]:hover {
    border-color: var(--color-mensch);
    background: var(--color-mensch-light);
    color: var(--color-alge);
}
.category-card[data-category="mensch"]:hover .category-card__label {
    color: rgba(58, 61, 12, 0.6) !important;
}
.category-card[data-category="mensch"]:hover .category-card__link {
    color: #d1a171;
}
.category-card[data-category="mensch"]:hover .category-card__icon img {
    filter: none;
}

.category-card__icon {
    width: 100%;
    min-height: 260px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-alge);
    transition: transform var(--transition);
}

.category-card:hover .category-card__icon {
    transform: scale(1.03);
}

.category-card__icon img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.category-card__label {
    color: rgba(58, 61, 12, 0.6);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.product-card__meta {
    color: rgba(58, 61, 12, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.category-card__link {
    margin-top: auto;
    color: var(--color-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.catalog-layout,
.inquiry-layout,
.consultation-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
}

.sidebar-links {
    display: grid;
    gap: 0.7rem;
}

.sidebar-links a {
    display: block;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--color-line);
    background: #ffffff;
    font-weight: 500;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.is-active {
    border-color: rgba(143, 143, 55, 0.35);
    background: rgba(143, 143, 55, 0.08);
    color: var(--color-text);
}

.product-grid {
    display: grid;
    gap: 24px;
}

.product-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 0, 0, 0.14);
}

.product-card--muted {
    background: linear-gradient(180deg, rgba(106, 138, 127, 0.07), rgba(255, 255, 255, 0.95));
}

.product-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(106, 138, 127, 0.08), rgba(255, 255, 255, 1));
    border-bottom: 1px solid var(--color-line);
}

.product-card__image img,
.product-gallery__lead img,
.thumb-card img,
.admin-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.product-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--color-line-strong);
    color: rgba(0, 0, 0, 0.42);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.35rem 1.35rem 0;
}

.product-card__body h3 a:hover {
    color: var(--color-primary);
}

.product-card__sku,
.product-summary__sku {
    color: rgba(0, 0, 0, 0.56);
    font-size: 0.9rem;
}

.product-card__text,
.product-summary__text {
    color: rgba(0, 0, 0, 0.72);
}

.product-card__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding: 1.2rem 1.35rem 1.35rem;
}

.product-card__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.price-note {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 18px;
}

.product-gallery__lead {
    aspect-ratio: 1 / 1;
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(143, 143, 55, 0.1), rgba(255, 255, 255, 1));
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.thumb-card {
    aspect-ratio: 1 / 1;
    padding: 0.8rem;
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
}

.product-summary {
    display: grid;
    gap: 1.2rem;
}

.summary-panel {
    padding: 1.1rem 1.2rem;
    background: var(--color-muted);
    border: 1px solid rgba(143, 143, 55, 0.12);
}

.summary-panel__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-panel__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.summary-panel__row:first-child {
    padding-top: 0;
}

.product-summary__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.info-block {
    padding: 1.2rem;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
}

.unit-list {
    display: grid;
    gap: 0.8rem;
}

.unit-list__item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--color-line);
}

.unit-list__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.content-sections {
    display: grid;
    gap: 22px;
}

.content-card {
    display: grid;
    gap: 1rem;
}

.empty-state {
    display: grid;
    gap: 0.8rem;
    justify-items: start;
}

.message-box {
    margin-bottom: 20px;
}

.message-box--success {
    border-color: rgba(106, 138, 127, 0.32);
    background: rgba(106, 138, 127, 0.09);
}

.message-box--error {
    border-color: rgba(255, 152, 137, 0.4);
    background: rgba(255, 152, 137, 0.12);
}

.subtle-panel {
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
}

.site-footer {
    margin-top: 0;
    border-top: 1px solid var(--color-line);
    background: linear-gradient(180deg, rgba(106, 138, 127, 0.04), rgba(255, 255, 255, 1));
}

.footer-cta {
    background: #3A3D0C;
    color: #ffffff;
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.5rem 0;
}

.footer-cta__eyebrow {
    margin: 0 0 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta h2 {
    margin: 0 0 0.65rem;
    color: #ffffff;
    font-size: clamp(1.4rem, 1.2rem + 0.9vw, 2rem);
    line-height: 1.1;
}

.footer-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.button-link--footer {
    background: #ffffff;
    color: #3A3D0C;
    border-color: transparent;
}

.button-link--footer:hover {
    background: rgba(255, 255, 255, 0.92);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 40px;
}

.site-footer__brand {
    display: grid;
    gap: 0.35rem;
}

.site-footer__inner p {
    color: rgba(0, 0, 0, 0.58);
}

.site-footer__links {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer__links a {
    color: rgba(0, 0, 0, 0.78);
}

.site-footer__links a:hover {
    color: var(--color-primary);
}

.wrap {
    max-width: 1000px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.wrap-wide {
    max-width: 1280px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.box {
    background: var(--color-muted);
    border: 1px solid var(--color-line);
    padding: 16px;
    margin: 20px 0;
}

.card {
    background: #ffffff;
    border: 1px solid var(--color-line);
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid var(--color-line);
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--color-line);
}

.admin-table thead th {
    background: var(--color-muted);
    font-size: 0.95rem;
}

.page-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-secondary {
    background: rgba(106, 138, 127, 0.14);
    color: var(--color-text);
}

.status-primary {
    background: rgba(143, 143, 55, 0.18);
    color: var(--color-text);
}

.status-warning {
    background: rgba(255, 152, 137, 0.24);
    color: var(--color-text);
}

.status-success {
    background: rgba(106, 138, 127, 0.26);
    color: var(--color-text);
}

.stack>*+* {
    margin-top: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.top-gap {
    margin-top: 20px;
}

.top-gap-small {
    margin-top: 12px;
}

.image-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.admin-thumb {
    aspect-ratio: 1 / 1;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    margin-bottom: 10px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 1100px) {

    .hero__grid,
    .product-layout,
    .catalog-layout,
    .inquiry-layout,
    .consultation-layout {
        grid-template-columns: 1fr;
    }

    .product-grid--three,
    .category-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card {
        min-width: 0;
    }

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

    .site-header__inner {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-header {
        position: static;
    }

    .site-shell {
        width: min(var(--site-width), calc(100% - 28px));
    }

    .hero,
    .section-block {
        padding: 28px 0;
    }

    .product-grid--three,
    .category-strip,
    .hero-metrics,
    .product-gallery__thumbs {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.25rem 1rem;
    }

    .testimonial-track {
        grid-template-columns: 1fr;
    }

    .testimonial-avatar {
        width: 54px;
        height: 54px;
    }

    .testimonial-avatar svg {
        width: 28px;
        height: 28px;
        stroke-width: 2.2;
    }

    .testimonial-quote {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .section-head,
    .site-footer__inner,
    .product-card__actions,
    .product-summary__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-brand__text small {
        font-size: 0.82rem;
    }

    .site-brand__logo {
        width: 138px;
        height: 52px;
    }

    .site-nav--primary {
        font-size: 0.9rem;
    }

    /* Make headings compact on mobile */
    h1 {
        font-size: 1.65rem !important;
    }

    h2 {
        font-size: 1.35rem !important;
    }

    /* Make general cards more compact on mobile */
    .card,
    .content-card,
    .summary-panel,
    .empty-state,
    .message-box,
    .subtle-panel {
        padding: 1.15rem;
    }

    /* Category Card optimizations for mobile */
    .category-card {
        min-height: 180px;
        padding: 1.25rem;
        gap: 0.5rem;
    }

    .category-card__icon {
        min-height: 100px;
        margin-bottom: 0.4rem;
    }

    .category-card__icon img {
        height: 100px;
    }

    .category-card strong {
        font-size: 1.15rem;
    }

    .category-card__label {
        font-size: 0.72rem;
    }

    .category-card__badges {
        margin-top: 0.2rem;
        margin-bottom: 0.3rem;
        gap: 0.35rem;
    }

    .category-badge {
        padding: 0.22rem 0.45rem;
        font-size: 0.7rem;
    }

    .category-card__link {
        font-size: 0.82rem;
    }

    /* Product list optimizations for mobile */
    .product-card__body {
        padding: 1rem 1rem 0;
        gap: 0.45rem;
    }

    .product-card__body h3 {
        font-size: 1rem;
    }

    .product-card__text {
        font-size: 0.88rem;
    }

    .product-card__sku {
        font-size: 0.82rem;
    }

    .product-card__footer {
        padding: 1rem;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   Züchter-Programm Landingpage Styles
   ========================================================================== */

.breeder-hero {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 40%, rgba(255, 255, 255, 0.70) 70%, rgba(255, 255, 255, 0.50) 100%),
        linear-gradient(135deg, rgba(255, 152, 137, 0.15), transparent 45%),
        linear-gradient(225deg, rgba(106, 138, 127, 0.15), transparent 45%),
        linear-gradient(120deg, rgba(143, 143, 55, 0.12), transparent 52%);
    border-bottom: 1px solid var(--color-line);
}

.hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder .image-box {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid var(--color-line-strong);
    padding: 24px;
    box-shadow: var(--shadow-hover);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder .image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-tertiary));
}

.dog-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
}

.dog-illustration svg.premium-svg {
    width: 150px;
    height: 150px;
    opacity: 0.85;
}

.dog-illustration .img-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* Problem & Lösung Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.card {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
    border-radius: 8px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-line);
}

.text-red {
    color: #c86f62;
}

.text-red::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #c86f62;
}

.text-green {
    color: var(--color-secondary);
}

.text-green::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
}

.problem-list li,
.solution-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.72);
}

.problem-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 2px;
    color: #c86f62;
    font-weight: bold;
    font-size: 1rem;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.15rem;
}

/* 4-Schritte Konzept */
.step-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--color-line);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-muted);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    transition: background var(--transition), color var(--transition);
}

.step-card:hover .step-number {
    background: var(--color-primary);
    color: #ffffff;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 0.94rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-benefit {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(143, 143, 55, 0.08);
    padding: 6px 12px;
    border-radius: 4px;
    border-left: 3px solid var(--color-primary);
    width: 100%;
}

/* Züchter Pakete */
.package-card {
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-line-strong);
}

.package-card--popular {
    border: 2px solid var(--color-primary);
    background: linear-gradient(180deg, #ffffff 0%, var(--color-soft) 100%);
    box-shadow: var(--shadow-hover);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-card);
}

.package-header {
    border-bottom: 1px solid var(--color-line-strong);
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.package-tag {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-desc {
    font-size: 0.98rem;
    color: rgba(0, 0, 0, 0.72);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.package-features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.94rem;
    color: rgba(0, 0, 0, 0.8);
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--color-primary);
    font-weight: 700;
}

.package-footer {
    margin-top: auto;
}

/* CTA Accent Box */
.cta-accent-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    color: #ffffff;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.cta-accent-box::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-accent-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-lead {
    font-size: 1.15rem;
    line-height: 1.65;
}

.cta-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.cta-bullet-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    font-weight: 500;
}

.cta-bullet-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--color-tertiary);
    font-size: 1.2rem;
}

/* Responsiveness adjustments for landing page */
@media (max-width: 1024px) {
    .step-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-bullet-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {

    .split-layout,
    .step-flow {
        grid-template-columns: 1fr;
    }

    .cta-accent-box {
        padding: 2rem 1.5rem;
    }

    .hero-image-placeholder {
        margin-top: 24px;
    }
}

/* ==========================================================================
   Admin Navigation Header & Core Admin Page Styles
   ========================================================================== */
body.admin-body {
    background-color: #f7f9f6;
}

.admin-header {
    background: #ffffff;
    border-bottom: 1px solid var(--color-line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--site-width);
    margin: 0 auto;
    border-bottom: 1px solid var(--color-line);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-brand__logo {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.admin-brand__text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.admin-brand__badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.94rem;
}

.admin-user__avatar {
    width: 36px;
    height: 36px;
    background: var(--color-secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
}

.admin-nav-bar {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 20px;
}

.admin-nav-link {
    padding: 14px 4px;
    font-size: 0.94rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.64);
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
    color: var(--color-text);
    border-bottom-color: var(--color-primary);
}

@media (max-width: 640px) {
    .admin-header {
        position: static;
    }

    .admin-header__top {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .admin-nav-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 24px;
    }

    .admin-nav-link {
        padding: 8px 4px;
    }
}

/* Size Selector for Products */
.size-selector {
    margin-bottom: 1.5rem;
    width: 100%;
}

.size-selector label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.size-selector__pills {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.size-pill {
    position: relative;
    cursor: pointer;
    display: flex !important;
    margin-bottom: 0 !important;
    width: 100%;
}

.size-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-pill__label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.4rem;
    border: 2px solid var(--color-line-strong);
    border-radius: var(--radius-min);
    background: #ffffff;
    transition: all var(--transition);
    width: 100%;
}

.size-pill input[type="radio"]:checked + .size-pill__label {
    border-color: var(--category-base, var(--color-primary));
    background: var(--category-bg-active, rgba(143, 143, 55, 0.08));
    box-shadow: var(--shadow-soft);
}

.size-pill:hover .size-pill__label {
    border-color: var(--category-base, var(--color-primary));
}

.size-pill__label strong {
    font-size: 1rem;
    color: var(--color-text);
}

.size-pill__label small {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
}

/* Purchase Row and Quantity Selector */
.purchase-row {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-selector label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0;
}

.quantity-input {
    width: 74px !important;
    height: 48px;
    text-align: center;
    padding: 0.5rem !important;
    border-radius: var(--radius-min);
    border: 1px solid var(--color-line-strong);
    background: #ffffff;
    font-weight: 600;
    color: var(--color-text);
}

.cart-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--color-line);
}

.cart-quantity-form {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cart-quantity-form label {
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.quantity-input--cart {
    width: 66px !important;
    height: 38px;
    padding: 0.25rem !important;
}

/* ========================================================================== 
   Mobile Burger Menu
   ========================================================================== */

.site-burger {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 30;
}

.site-burger span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--transition);
}

.site-burger span:nth-child(1) {
    top: 10px;
}

.site-burger span:nth-child(2) {
    top: 17px;
    opacity: 1;
}

.site-burger span:nth-child(3) {
    top: 24px;
}

.site-burger.is-open span:nth-child(1) {
    transform: translateX(-50%) translateY(7px) rotate(45deg);
}

.site-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.site-burger.is-open span:nth-child(3) {
    transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .site-burger {
        display: block;
    }

    .site-header__inner {
        flex-wrap: nowrap;
        min-height: 76px;
        padding: 10px 0;
    }

    .site-nav--primary {
        display: none;
    }

    .site-subnav-wrap {
        display: none;
    }

    .site-actions {
        display: none;
    }

    .site-mobile-panel {
        display: block;
        background: #ffffff;
        border-top: 1px solid var(--color-line);
        border-bottom: 1px solid var(--color-line);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        box-shadow: var(--shadow-soft);
        transition: max-height 240ms ease, opacity var(--transition);
    }

    .site-mobile-panel.is-open {
        max-height: calc(100vh - 76px);
        opacity: 1;
        overflow-y: auto;
    }

    .site-mobile-panel__inner {
        display: grid;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 12px;
    }

    .site-mobile-nav,
    .site-mobile-subnav {
        display: grid;
        gap: 4px;
    }

    .site-mobile-nav a,
    .site-mobile-subnav a {
        display: flex;
        align-items: center;
        min-height: 38px;
        padding: 0.45rem 0.75rem;
        border: 1px solid transparent;
        border-radius: var(--radius-min);
        color: rgba(0, 0, 0, 0.78);
        font-weight: 600;
        font-size: 0.88rem;
    }

    .site-mobile-nav a:hover,
    .site-mobile-nav a.is-active,
    .site-mobile-subnav a:hover,
    .site-mobile-subnav a.is-active {
        background: var(--color-muted);
        border-color: var(--color-line-strong);
        color: var(--color-text);
    }

    .site-mobile-subnav {
        padding: 12px;
        background: rgba(58, 61, 12, 0.04);
        border: 1px solid var(--color-line);
        border-radius: var(--radius-min);
    }

    .site-mobile-subnav span {
        padding: 0 0.15rem 0.25rem;
        color: rgba(0, 0, 0, 0.54);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .site-mobile-cart {
        justify-content: space-between;
        width: 100%;
        border-radius: var(--radius-min);
        min-height: 38px;
        padding: 0.45rem 0.75rem;
        font-size: 0.88rem;
    }

    .site-header {
        position: sticky;
    }
}
