/* ============================================================
   BauFeed - Pinterest/Instagram Style Theme
   Powered by Dachbleche-online.de
   ============================================================ */

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

:root {
    --bf-green: #2E7D32;
    --bf-green-dark: #1B5E20;
    --bf-dark: #1a1a1a;
    --bf-gray-50: #fafafa;
    --bf-gray-100: #f5f5f5;
    --bf-gray-200: #eeeeee;
    --bf-gray-300: #e0e0e0;
    --bf-gray-400: #bdbdbd;
    --bf-gray-500: #9e9e9e;
    --bf-gray-600: #757575;
    --bf-gray-700: #616161;
    --bf-radius: 16px;
    --bf-radius-sm: 10px;
    --bf-radius-full: 9999px;
    --bf-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --bf-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --bf-shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --bf-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --bf-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --bf-font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

body {
    font-family: var(--bf-font);
    background: var(--bf-gray-50);
    color: var(--bf-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

/* --- HEADER --- */
.baufeed-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bf-gray-100);
}

.baufeed-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.baufeed-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.baufeed-logo__icon {
    display: flex;
}

.baufeed-logo__text {
    font-family: var(--bf-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.baufeed-logo__bau {
    color: var(--bf-dark);
}

.baufeed-logo__feed {
    color: var(--bf-green);
}

/* Search */
.baufeed-header__search {
    flex: 1;
    max-width: 480px;
    display: none;
}

@media (min-width: 768px) {
    .baufeed-header__search {
        display: block;
    }
}

.baufeed-header__search form {
    position: relative;
}

.baufeed-search__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bf-gray-400);
    pointer-events: none;
}

.baufeed-search__input {
    width: 100%;
    height: 36px;
    padding: 0 16px 0 36px;
    border-radius: var(--bf-radius-full);
    border: none;
    background: var(--bf-gray-100);
    font-size: 0.8125rem;
    font-family: var(--bf-font);
    color: var(--bf-dark);
    outline: none;
    transition: var(--bf-transition);
}

.baufeed-search__input:focus {
    background: white;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.baufeed-search__input::placeholder {
    color: var(--bf-gray-400);
}

/* Header Actions */
.baufeed-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.baufeed-header__shop-link {
    display: none;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--bf-gray-600);
    padding: 6px 12px;
    border-radius: var(--bf-radius-full);
    transition: var(--bf-transition);
}

@media (min-width: 640px) {
    .baufeed-header__shop-link {
        display: inline-flex;
    }
}

.baufeed-header__shop-link:hover {
    color: var(--bf-green);
    background: rgba(46, 125, 50, 0.06);
}

.baufeed-header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--bf-dark);
    border-radius: var(--bf-radius-full);
    transition: var(--bf-transition);
}

@media (min-width: 768px) {
    .baufeed-header__menu-toggle {
        display: none;
    }
}

.baufeed-header__menu-toggle:hover {
    background: var(--bf-gray-100);
}

/* Mobile Search */
.baufeed-header__mobile-search {
    display: none;
    padding: 0 16px 12px;
    border-bottom: 1px solid var(--bf-gray-100);
}

.baufeed-header__mobile-search.is-visible {
    display: block;
}

.baufeed-header__mobile-search form {
    position: relative;
}

.baufeed-header__mobile-search .baufeed-search__input {
    width: 100%;
}

/* --- CATEGORIES --- */
.baufeed-categories {
    position: sticky;
    top: 56px;
    z-index: 90;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding: 10px 0;
}

.baufeed-categories__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.baufeed-categories__inner::-webkit-scrollbar {
    display: none;
}

.baufeed-category-pill {
    white-space: nowrap;
    padding: 6px 16px;
    border-radius: var(--bf-radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--bf-gray-100);
    color: var(--bf-gray-600);
    transition: var(--bf-transition);
    flex-shrink: 0;
}

.baufeed-category-pill:hover {
    background: var(--bf-gray-200);
    color: var(--bf-dark);
}

.baufeed-category-pill.is-active {
    background: var(--bf-dark);
    color: white;
    box-shadow: var(--bf-shadow-sm);
    transform: scale(1.03);
}

/* --- MASONRY GRID --- */
.baufeed-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 12px;
}

.baufeed-masonry {
    columns: 2;
    column-gap: 12px;
}

@media (min-width: 768px) {
    .baufeed-masonry {
        columns: 3;
        column-gap: 14px;
    }
}

@media (min-width: 1024px) {
    .baufeed-masonry {
        columns: 4;
        column-gap: 16px;
    }
}

/* --- PIN CARD --- */
.baufeed-pin {
    break-inside: avoid;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .baufeed-pin {
        margin-bottom: 14px;
    }
}

@media (min-width: 1024px) {
    .baufeed-pin {
        margin-bottom: 16px;
    }
}

.baufeed-pin__link {
    display: block;
    border-radius: var(--bf-radius);
    overflow: hidden;
    box-shadow: var(--bf-shadow-sm);
    transition: var(--bf-transition);
    position: relative;
}

.baufeed-pin__link:hover {
    box-shadow: var(--bf-shadow-lg);
    transform: translateY(-2px);
}

.baufeed-pin__image-wrap {
    position: relative;
    overflow: hidden;
}

.baufeed-pin__image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.baufeed-pin--tall .baufeed-pin__image {
    aspect-ratio: 3/4;
}

.baufeed-pin__link:hover .baufeed-pin__image {
    transform: scale(1.03);
}

.baufeed-pin__placeholder {
    aspect-ratio: 4/3;
    background: var(--bf-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.baufeed-pin--tall .baufeed-pin__placeholder {
    aspect-ratio: 3/4;
}

/* Overlay */
.baufeed-pin__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.08) 40%, transparent 60%);
    opacity: 0.85;
    transition: opacity var(--bf-transition);
}

.baufeed-pin__link:hover .baufeed-pin__overlay {
    opacity: 0.95;
}

/* Badge */
.baufeed-pin__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: var(--bf-radius-full);
    font-size: 0.5625rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: var(--bf-shadow-sm);
    z-index: 2;
}

/* Action Buttons */
.baufeed-pin__actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(4px);
    transition: var(--bf-transition);
    z-index: 2;
}

.baufeed-pin__link:hover .baufeed-pin__actions {
    opacity: 1;
    transform: translateX(0);
}

.baufeed-pin__action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,0.9);
    color: var(--bf-gray-700);
    transition: var(--bf-transition);
    box-shadow: var(--bf-shadow-sm);
}

.baufeed-pin__action:hover {
    background: white;
    transform: scale(1.1);
}

.baufeed-pin__action--like.is-active {
    background: #e53935;
    color: white;
}

.baufeed-pin__action--save.is-active {
    background: var(--bf-green);
    color: white;
}

/* Content Overlay */
.baufeed-pin__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.baufeed-pin__title {
    font-family: var(--bf-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.baufeed-pin__subtitle {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- LOAD MORE --- */
.baufeed-load-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    padding-bottom: 24px;
}

.baufeed-load-more__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: var(--bf-radius-full);
    border: 1px solid var(--bf-gray-200);
    background: white;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: var(--bf-font);
    color: var(--bf-gray-700);
    cursor: pointer;
    transition: var(--bf-transition);
}

.baufeed-load-more__button:hover {
    border-color: var(--bf-green);
    color: var(--bf-green);
    box-shadow: var(--bf-shadow-sm);
}

/* --- LEAD CAPTURE --- */
.baufeed-lead-capture {
    background: var(--bf-dark);
    margin-top: 48px;
    padding: 48px 16px;
}

.baufeed-lead-capture__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.baufeed-lead-capture__title {
    font-family: var(--bf-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.baufeed-lead-capture__text {
    font-size: 0.8125rem;
    color: var(--bf-gray-400);
    margin-bottom: 20px;
}

.baufeed-lead-capture__form {
    display: flex;
    gap: 8px;
    max-width: 360px;
    margin: 0 auto;
}

.baufeed-lead-capture__input {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    border-radius: var(--bf-radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 0.8125rem;
    font-family: var(--bf-font);
    outline: none;
    transition: var(--bf-transition);
}

.baufeed-lead-capture__input:focus {
    border-color: var(--bf-green);
    background: rgba(255,255,255,0.12);
}

.baufeed-lead-capture__input::placeholder {
    color: var(--bf-gray-500);
}

.baufeed-lead-capture__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--bf-radius-full);
    border: none;
    background: var(--bf-green);
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: var(--bf-font);
    cursor: pointer;
    transition: var(--bf-transition);
    white-space: nowrap;
}

.baufeed-lead-capture__button:hover {
    background: var(--bf-green-dark);
    transform: scale(1.02);
}

.baufeed-lead-capture__disclaimer {
    font-size: 0.625rem;
    color: var(--bf-gray-600);
    margin-top: 12px;
}

.baufeed-lead-capture__disclaimer a {
    color: var(--bf-green);
}

.baufeed-lead-capture__disclaimer a:hover {
    text-decoration: underline;
}

/* --- FOOTER --- */
.baufeed-footer {
    background: var(--bf-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 32px 16px;
}

.baufeed-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.baufeed-footer__tagline {
    font-size: 0.75rem;
    color: var(--bf-gray-500);
    margin-top: 4px;
}

.baufeed-footer__menu {
    display: flex;
    gap: 16px;
    list-style: none;
}

.baufeed-footer__menu a {
    font-size: 0.75rem;
    color: var(--bf-gray-400);
    transition: var(--bf-transition);
}

.baufeed-footer__menu a:hover {
    color: white;
}

.baufeed-footer__copyright {
    width: 100%;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.baufeed-footer__copyright p {
    font-size: 0.6875rem;
    color: var(--bf-gray-600);
}

.baufeed-footer__copyright a {
    color: var(--bf-green);
}

/* --- SINGLE RATGEBER --- */
.baufeed-single__hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
}

.baufeed-single__hero--compact {
    height: 35vh;
    min-height: 220px;
    max-height: 350px;
}

.baufeed-single__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.baufeed-single__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.baufeed-single__hero-content {
    padding: 24px;
    max-width: 800px;
}

.baufeed-single__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--bf-radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.baufeed-single__title {
    font-family: var(--bf-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .baufeed-single__title {
        font-size: 2rem;
    }
}

.baufeed-single__subtitle {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin-top: 6px;
}

.baufeed-single__back {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: var(--bf-radius-full);
    border: none;
    background: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--bf-font);
    cursor: pointer;
    transition: var(--bf-transition);
    z-index: 10;
    box-shadow: var(--bf-shadow-sm);
}

.baufeed-single__back:hover {
    background: white;
    box-shadow: var(--bf-shadow-md);
}

/* Single Body */
.baufeed-single__body {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 16px 64px;
}

.baufeed-single__content {
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
}

.baufeed-single__content h2 {
    font-family: var(--bf-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2em 0 0.75em;
    color: var(--bf-dark);
}

.baufeed-single__content h3 {
    font-family: var(--bf-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5em 0 0.5em;
}

.baufeed-single__content p {
    margin-bottom: 1.25em;
}

.baufeed-single__content img {
    border-radius: var(--bf-radius-sm);
    margin: 1.5em 0;
}

.baufeed-single__content ul, .baufeed-single__content ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}

.baufeed-single__content li {
    margin-bottom: 0.5em;
}

/* CTA Box */
.baufeed-single__cta {
    background: var(--bf-gray-50);
    border-left: 4px solid var(--bf-green);
    border-radius: var(--bf-radius-sm);
    padding: 20px 24px;
    margin: 32px 0;
}

.baufeed-single__cta h4 {
    font-family: var(--bf-font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.baufeed-single__cta p {
    font-size: 0.8125rem;
    color: var(--bf-gray-600);
    margin-bottom: 12px;
}

.baufeed-single__cta-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: var(--bf-radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: white;
    transition: var(--bf-transition);
}

.baufeed-single__cta-button:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

/* Related */
.baufeed-single__related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--bf-gray-200);
}

.baufeed-single__related h3 {
    font-family: var(--bf-font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.baufeed-single__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .baufeed-single__related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.baufeed-single__related-card {
    border-radius: var(--bf-radius-sm);
    overflow: hidden;
    box-shadow: var(--bf-shadow-sm);
    transition: var(--bf-transition);
}

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

.baufeed-single__related-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.baufeed-single__related-title {
    display: block;
    padding: 8px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.3;
    background: white;
}

/* --- EMPTY STATE --- */
.baufeed-empty {
    text-align: center;
    padding: 64px 16px;
    column-span: all;
}

.baufeed-empty h2 {
    font-family: var(--bf-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 16px 0 8px;
}

.baufeed-empty p {
    font-size: 0.875rem;
    color: var(--bf-gray-500);
    max-width: 400px;
    margin: 0 auto;
}

/* --- SEARCH HEADER --- */
.baufeed-search-header {
    padding: 16px 0 24px;
}

.baufeed-search-header h2 {
    font-family: var(--bf-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
}

.baufeed-search-header p {
    font-size: 0.8125rem;
    color: var(--bf-gray-500);
    margin-top: 2px;
}

/* --- RECHNER STYLES --- */
.baufeed-rechner {
    background: white;
    border-radius: var(--bf-radius);
    padding: 24px;
    box-shadow: var(--bf-shadow-sm);
    border: 1px solid var(--bf-gray-200);
}

.baufeed-rechner__title {
    font-family: var(--bf-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.baufeed-rechner__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .baufeed-rechner__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.baufeed-rechner__field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--bf-gray-600);
    margin-bottom: 4px;
}

.baufeed-rechner__field input,
.baufeed-rechner__field select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--bf-gray-200);
    border-radius: var(--bf-radius-sm);
    font-size: 0.875rem;
    font-family: var(--bf-font);
    transition: var(--bf-transition);
}

.baufeed-rechner__field input:focus,
.baufeed-rechner__field select:focus {
    outline: none;
    border-color: var(--bf-green);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.15);
}

.baufeed-rechner__button {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: var(--bf-radius-sm);
    background: var(--bf-green);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--bf-font);
    cursor: pointer;
    transition: var(--bf-transition);
}

.baufeed-rechner__button:hover {
    background: var(--bf-green-dark);
}

.baufeed-rechner__result {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: var(--bf-gray-50);
    border-radius: var(--bf-radius-sm);
    border: 1px solid var(--bf-gray-200);
}

.baufeed-rechner__result.is-visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

.baufeed-rechner__result-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.baufeed-rechner__result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.baufeed-rechner__result-item {
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--bf-gray-100);
}

.baufeed-rechner__result-label {
    font-size: 0.6875rem;
    color: var(--bf-gray-500);
}

.baufeed-rechner__result-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bf-green);
}

/* Lead gate after result */
.baufeed-rechner__lead-gate {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(46,125,50,0.05), rgba(46,125,50,0.02));
    border-radius: var(--bf-radius-sm);
    border: 1px solid rgba(46,125,50,0.15);
    text-align: center;
}

.baufeed-rechner__lead-gate p {
    font-size: 0.8125rem;
    color: var(--bf-gray-600);
    margin-bottom: 8px;
}

.baufeed-rechner__lead-gate form {
    display: flex;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
}

.baufeed-rechner__lead-gate input {
    flex: 1;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--bf-gray-200);
    border-radius: var(--bf-radius-full);
    font-size: 0.8125rem;
    font-family: var(--bf-font);
}

.baufeed-rechner__lead-gate button {
    height: 36px;
    padding: 0 16px;
    border: none;
    border-radius: var(--bf-radius-full);
    background: var(--bf-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- TOAST NOTIFICATION --- */
.baufeed-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 10px 20px;
    border-radius: var(--bf-radius-full);
    background: var(--bf-dark);
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    box-shadow: var(--bf-shadow-lg);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.baufeed-toast.is-visible {
    transform: translateX(-50%) translateY(0);
}

/* --- WORDPRESS ADMIN BAR FIX --- */
.admin-bar .baufeed-header {
    top: 32px;
}

.admin-bar .baufeed-categories {
    top: 88px;
}

@media (max-width: 782px) {
    .admin-bar .baufeed-header {
        top: 46px;
    }
    .admin-bar .baufeed-categories {
        top: 102px;
    }
}
