/* Seed Drops Seite Styles */
:root {
    --primary-green: #d6e6bb;
    --primary-light: #c0d99f;
    --primary-lighter: #e8f0d4;
    --primary-lightest: #f0f5e3;
    --accent-dark: #8fb03d;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border-color: rgba(214, 230, 187, 0.2);
    --shadow-glow: 0 8px 24px rgba(214, 230, 187, 0.15);
    --shadow-elevation: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    margin-top: 70px;
    background: var(--bg-white);
}

/* Hero Section */
.seed-drops-hero {
    background: linear-gradient(135deg, var(--primary-lightest) 0%, rgba(214, 230, 187, 0.08) 100%);
    padding: 80px 24px;
    border-bottom: 2px solid rgba(214, 230, 187, 0.3);
}

.seed-drops-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.hero-content > p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.seed-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-white);
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-elevation);
    border: 1px solid var(--border-color);
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3d6b1f;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #3d6b1f;
    font-weight: 600;
}

/* Strain-Card innerhalb Seed-Drops-Grid – Header reset */
.strain-card .card-header {
    padding: 0 !important;
    background: none !important;
    border-bottom: none !important;
}

/* Filter Section */
.seed-drops-filter {
    padding: 32px 24px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.seed-drops-filter .container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--shadow-elevation);
    border: 1px solid var(--border-color);
}

.search-field {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 1rem;
    background: transparent;
    color: var(--text-primary);
}

.search-field::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 230, 187, 0.3);
}

.type-filter {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.type-filter-card {
    cursor: pointer;
}

.type-filter-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--bg-white);
    box-shadow: var(--shadow-elevation);
    transition: var(--transition);
    color: var(--text-primary);
}

.filter-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-lightest);
    font-size: 1.35rem;
}

.filter-chip strong,
.filter-chip small {
    display: block;
}

.filter-chip strong {
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.filter-chip small {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
}

.type-filter-input:checked + .filter-chip {
    border-color: rgba(143, 176, 61, 0.45);
    background: linear-gradient(135deg, var(--primary-lightest), rgba(214, 230, 187, 0.24));
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.filter-summary {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Seed Drops Section */
.seed-drops-section {
    padding: 60px 24px;
}

.seed-drops-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.seed-drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

/* Seed Drop Card */
.seed-drop-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-elevation);
}

.seed-drop-card.is-filtered-out,
.strain-card.is-filtered-out {
    display: none;
}

.seed-drop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(214, 230, 187, 0.4);
}

.card-header {
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-lightest) 0%, rgba(214, 230, 187, 0.08) 100%);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.seed-icon {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

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

.card-meta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.entry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #3d6b1f;
    background: rgba(214, 230, 187, 0.45);
    border: 1px solid rgba(143, 176, 61, 0.22);
}

.entry-badge-announcement {
    color: #7a5416;
    background: rgba(255, 193, 7, 0.14);
    border-color: rgba(255, 193, 7, 0.26);
}

.breeder {
    font-size: 0.9rem;
    color: var(--accent-dark);
    margin: 0;
    font-weight: 600;
}

.card-content {
    padding: 20px 24px;
    flex: 1;
}

.timestamp {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.description {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-weight: 400;
}

.btn-link {
    display: inline-block;
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-link:hover {
    background: rgba(214, 230, 187, 0.15);
    transform: translateX(4px);
    color: var(--primary-green);
}

/* Rating Section */
.card-rating {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(214, 230, 187, 0.03);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rating-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.star {
    font-size: 1.3rem;
    color: #ddd;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
}

.star:hover,
.star.hovered {
    color: #ffc107;
    transform: scale(1.2);
}

.star.filled {
    color: #ffc107;
}

.rating-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Comments Section */
.card-comments {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.comments-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.btn-comment-toggle {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    border: none;
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-comment-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(214, 230, 187, 0.2);
}

.btn-comment-toggle.view-all {
    background: transparent;
    color: var(--accent-dark);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    font-weight: 600;
}

/* Comment Form */
.comment-form {
    background: rgba(214, 230, 187, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.comment-name,
.comment-text {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.comment-text {
    resize: vertical;
    min-height: 80px;
}

.comment-name:focus,
.comment-text:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(214, 230, 187, 0.1);
}

.comment-actions {
    display: flex;
    gap: 8px;
}

.btn-submit-comment,
.btn-cancel-comment {
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-submit-comment {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: var(--text-primary);
    flex: 1;
}

.btn-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(214, 230, 187, 0.2);
}

.btn-cancel-comment {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-cancel-comment:hover {
    background: rgba(214, 230, 187, 0.1);
}

/* Comments List */
.comments-list {
    max-height: 300px;
    overflow-y: auto;
}

.comment-item {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    border-left: 3px solid var(--primary-green);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.comment-author {
    font-weight: 700;
    color: var(--accent-dark);
}

.comment-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.comment-text-content {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    white-space: pre-wrap;
}

.no-comments {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 12px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 44px 20px;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}

.no-results p {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.no-results span {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary-lightest);
    padding: 32px 24px;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .seed-drops-grid {
        grid-template-columns: 1fr;
    }

    .seed-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
    }

    .comments-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        flex-direction: column;
    }

    .type-filter,
    .filter-chip {
        width: 100%;
    }

    .search-btn {
        width: 100%;
    }
}
