/* Strains (Sorten) 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); }

.strains-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);
}
.strains-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; }

.strain-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; }

.strains-filter { padding: 32px 24px; background: var(--bg-light); border-bottom: 1px solid var(--border-color); }
.strains-filter .container { max-width: 1200px; margin: 0 auto; }
.filter-panel { display: flex; flex-direction: column; gap: 20px; }

.filter-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.4px; }
.filter-select {
    padding: 10px 14px; border-radius: 10px; border: 1px solid var(--border-color); background: var(--bg-white); font-family: inherit; font-size: 0.9rem; color: var(--text-primary); outline: none; cursor: pointer; transition: var(--transition); min-width: 200px;
}
.filter-select:focus { border-color: var(--accent-dark); box-shadow: 0 0 0 3px rgba(143, 176, 61, 0.1); }
.filter-summary { font-size: 0.85rem; color: var(--text-muted); }
.filter-summary span { font-weight: 700; color: var(--text-primary); }

.strains-section { padding: 32px 24px 64px; }
.strains-section .container { max-width: 1200px; margin: 0 auto; }
.strains-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 24px; }

.strain-card {
    background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 14px; padding: 24px; box-shadow: var(--shadow-elevation); transition: var(--transition); display: flex; flex-direction: column;
}
.strain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: rgba(143, 176, 61, 0.35); }

.card-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.strain-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-lightest); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.card-meta { flex: 1; min-width: 0; }
.card-meta h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin: 0 0 4px; }
.breeder { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.card-tag {
    background: var(--primary-lightest); color: #3d6b1f; font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.thc-tag { background: #fff3cd; color: #856404; }
.difficulty-easy { background: #d4edda; color: #155724; }
.difficulty-medium { background: #fff3cd; color: #856404; }
.difficulty-hard { background: #f8d7da; color: #721c24; }

.description { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; margin: 0 0 14px; flex: 1; }

.btn-link {
    display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--primary-light), var(--primary-green)); padding: 10px 18px; border-radius: 10px; color: var(--text-primary); font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: var(--transition); margin-bottom: 14px; align-self: flex-start;
}
.btn-link:hover { background: linear-gradient(135deg, var(--accent-dark), #6f8f25); color: white; transform: translateY(-1px); }

.card-rating { border-top: 1px solid var(--border-color); padding-top: 14px; margin-bottom: 14px; }
.rating-stars { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.rating-label { font-size: 0.78rem; color: var(--text-muted); }
.stars { display: flex; gap: 2px; }
.star { cursor: pointer; font-size: 1.2rem; color: #ddd; transition: color 0.2s; }
.star.filled, .star.hovered { color: #f5a623; }
.rating-value { font-size: 0.78rem; color: var(--text-muted); }

.card-comments { border-top: 1px solid var(--border-color); padding-top: 14px; }
.comments-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.comments-header h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin: 0; }
.btn-comment-toggle { font-size: 0.78rem; color: var(--accent-dark); text-decoration: none; font-weight: 500; }
.btn-comment-toggle:hover { text-decoration: underline; }
.comments-list { font-size: 0.82rem; }
.no-comments { color: var(--text-muted); font-size: 0.82rem; margin: 4px 0; }
.comment-item { padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.comment-item:last-child { border-bottom: none; }
.comment-meta { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 4px; }
.comment-author { font-weight: 600; color: var(--text-primary); }
.comment-time { color: var(--text-muted); }
.comment-text-content { margin: 0; font-size: 0.82rem; color: var(--text-secondary); }

@media (max-width: 720px) {
    .strains-grid { grid-template-columns: 1fr; }
    .filter-row { flex-direction: column; }
    .filter-select { min-width: auto; width: 100%; }
    .search-box { max-width: 100%; }
}
