/* ===========================================
   AKB Bitki Bakım Rehberi
   =========================================== */

.akb-bakim-card {
    margin: 20px 0;
    background: #ffffff;
    border: 1px solid #e2ede8;
    border-radius: 16px;
    overflow: hidden;
    font-family: 'Segoe UI', -apple-system, sans-serif;
}

.akb-bakim-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(145deg, #0e4a3e, #1a6b5a);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.akb-bakim-header-icon {
    font-size: 20px;
}

.akb-bakim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.akb-bakim-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f5f3;
    border-right: 1px solid #f0f5f3;
    transition: background 0.2s ease;
}

.akb-bakim-item:hover {
    background: #f8fcfa;
}

.akb-bakim-item:nth-child(even) {
    border-right: none;
}

.akb-bakim-item:nth-last-child(1),
.akb-bakim-item:nth-last-child(2) {
    border-bottom: none;
}

.akb-bakim-icon {
    font-size: 22px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7f5;
    border-radius: 10px;
    flex-shrink: 0;
}

.akb-bakim-info {
    flex: 1;
    min-width: 0;
}

.akb-bakim-label {
    font-size: 11px;
    font-weight: 600;
    color: #8a9e97;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.akb-bakim-value {
    font-size: 14px;
    font-weight: 700;
    color: #1a2e2a;
    margin-top: 1px;
}

/* Dots indicator */
.akb-dots {
    display: flex;
    gap: 4px;
    margin-top: 5px;
}

.akb-dot {
    width: 18px;
    height: 5px;
    border-radius: 3px;
    background: #e2ede8;
    transition: all 0.2s ease;
}

.akb-dot.filled {
    background: linear-gradient(90deg, #0e4a3e, #1a8a7d);
}

/* Care note */
.akb-bakim-note {
    padding: 14px 18px;
    background: #f0f7f5;
    font-size: 13px;
    line-height: 1.55;
    color: #3a5a50;
    border-top: 1px solid #e2ede8;
}

.akb-bakim-note strong {
    color: #0e4a3e;
}

/* Mobile */
@media (max-width: 480px) {
    .akb-bakim-grid {
        grid-template-columns: 1fr;
    }

    .akb-bakim-item {
        border-right: none;
    }

    .akb-bakim-item:nth-last-child(2) {
        border-bottom: 1px solid #f0f5f3;
    }
}

/* Dark mode */
[data-wp-dark-mode-active="true"] .akb-bakim-card {
    background: #162220;
    border-color: #243835;
}

[data-wp-dark-mode-active="true"] .akb-bakim-item {
    border-color: #1e3530;
}

[data-wp-dark-mode-active="true"] .akb-bakim-item:hover {
    background: #1a2e2a;
}

[data-wp-dark-mode-active="true"] .akb-bakim-icon {
    background: #1a2e2a;
}

[data-wp-dark-mode-active="true"] .akb-bakim-value {
    color: #d4e8e2;
}

[data-wp-dark-mode-active="true"] .akb-bakim-note {
    background: #1a2e2a;
    color: #9ab8ad;
    border-color: #243835;
}

[data-wp-dark-mode-active="true"] .akb-dot {
    background: #243835;
}
