/* ========================================
   Home sayfasına özgü stiller
   ======================================== */

.home-hero {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-surface2) 0%, var(--bg-surface) 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}
.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: .5rem;
}
.hero-subtitle {
    font-size: 1rem;
    color: var(--text-3);
    margin-bottom: 2rem;
}
.hero-search-wrap {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.hero-search-box {
    position: relative;
    display: flex;
    align-items: center;
}
.search-icon-left {
    position: absolute;
    left: 1.25rem;
    color: var(--text-3);
    font-size: 1.2rem;
}
.hero-search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3.2rem;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    font-size: 1.1rem;
    background: var(--bg-surface);
    color: var(--text-1);
    box-shadow: 0 4px 12px rgba(0,0,0,.03);
    transition: all .2s;
}
.hero-search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(29, 158, 117, .15);
}
.hero-search-btn {
    position: absolute;
    right: .5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.hero-shortcuts {
    display: flex;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
}
.shortcut-btn {
    padding: .45rem 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-2);
    font-size: .85rem;
    cursor: pointer;
    transition: all .15s;
}
.shortcut-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-bg);
}

.home-sections-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.home-section {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}
.loading-inline {
    display: flex;
    justify-content: center;
    padding: 3rem;
    font-size: 1.5rem;
    color: var(--text-3);
}

/* Home kart etiket renkleri */
.sample-badge {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--text-3);
    margin-bottom: .4rem;
}
.sample-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: .25rem;
}
.sample-desc {
    font-size: .85rem;
    color: var(--text-2);
    margin-bottom: .8rem;
}
.sample-meta-row {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
.card-tag {
    font-size: .75rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 6px;
}
.idem-tag   { background: #e0f2f1; color: #00695c; }
.code-tag   { background: #e3f2fd; color: #1565c0; }
.tibbi-tag  { background: #e8f5e9; color: #2e7d32; }
.endemik-tag { background: #e0f2f1; color: #00695c; }
.doc-tag    { background: #f5f5f5; color: #666; }

/* Günün bitkisi kartı */
.featured-plant-card {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(90deg, var(--bg-surface2) 0%, var(--bg-surface) 100%);
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
}
.featured-plant-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: var(--accent);
}
.featured-img-placeholder {
    width: 220px;
    background: var(--bg-surface3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-3);
    flex-shrink: 0;
}
.featured-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.featured-badge {
    font-size: .7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .08em;
    margin-bottom: .5rem;
}
.featured-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 .25rem;
}
.featured-subtitle {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: .75rem;
}
.featured-desc {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--text-2);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.featured-tags-row {
    display: flex;
    gap: .4rem;
}
.feat-tag {
    font-size: .75rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .featured-plant-card { flex-direction: column; }
    .featured-img-placeholder { width: 100%; height: 150px; }
}
