/* 今日一茶 - 主题样式 */
.daily-tea-panel {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 14px;
    background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 45%, #f8fafc 100%);
    border: 1px solid #bbf7d0;
    margin-bottom: 20px;
    overflow: hidden;
}

.daily-tea-panel::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.daily-tea-panel::after {
    content: '🍃';
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 42px;
    opacity: 0.12;
    pointer-events: none;
}

.daily-tea-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.daily-tea-name {
    font-size: 26px;
    font-weight: 700;
    color: #14532d;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.daily-tea-category {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #166534;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.25);
    white-space: nowrap;
}

.daily-tea-category.cat-green { color: #15803d; background: rgba(22, 163, 74, 0.12); }
.daily-tea-category.cat-red { color: #b91c1c; background: rgba(239, 68, 68, 0.1); }
.daily-tea-category.cat-oolong { color: #9a3412; background: rgba(234, 88, 12, 0.12); }
.daily-tea-category.cat-white { color: #57534e; background: rgba(120, 113, 108, 0.12); }
.daily-tea-category.cat-dark { color: #422006; background: rgba(120, 53, 15, 0.12); }
.daily-tea-category.cat-yellow { color: #a16207; background: rgba(234, 179, 8, 0.15); }
.daily-tea-category.cat-flower { color: #be185d; background: rgba(236, 72, 153, 0.1); }

.daily-tea-proverb {
    font-size: 15px;
    line-height: 1.75;
    color: #166534;
    font-style: italic;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-left: 3px solid var(--daily-accent);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 0 8px 8px 0;
    position: relative;
    z-index: 1;
}

.daily-tea-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.daily-tea-meta-item {
    font-size: 13px;
    line-height: 1.55;
    color: #334155;
}

.daily-tea-meta-item.full-width {
    grid-column: 1 / -1;
}

.daily-tea-meta-item strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 3px;
}

.daily-tea-meta-item strong i {
    margin-right: 4px;
    color: var(--daily-accent);
    width: 14px;
    text-align: center;
}

.daily-tea-brew-box {
    background: rgba(255, 255, 255, 0.85);
    border: 1px dashed #86efac;
    border-radius: 10px;
    padding: 14px 16px;
    position: relative;
    z-index: 1;
}

.daily-tea-brew-title {
    font-size: 13px;
    font-weight: 600;
    color: #166534;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.daily-tea-brew-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.daily-tea-brew-spec {
    text-align: center;
    padding: 8px 4px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #dcfce7;
}

.daily-tea-brew-spec .label {
    display: block;
    font-size: 10px;
    color: #64748b;
    margin-bottom: 4px;
}

.daily-tea-brew-spec .value {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #14532d;
    line-height: 1.35;
    word-break: break-word;
}

.daily-tea-steps,
.daily-tea-tips {
    font-size: 13px;
    line-height: 1.7;
    color: #475569;
    margin-top: 10px;
}

.daily-tea-steps strong,
.daily-tea-tips strong {
    color: #166534;
    font-weight: 600;
}

.daily-tea-tips {
    padding-top: 10px;
    border-top: 1px solid #ecfdf5;
    margin-top: 12px;
}

.daily-category-tabs.tea-tabs {
    gap: 6px;
}

.daily-category-tabs.tea-tabs .daily-category-tab {
    padding: 7px 12px;
    font-size: 13px;
}

.daily-category-tabs.tea-tabs .daily-category-tab.is-active {
    background: linear-gradient(135deg, var(--daily-accent) 0%, var(--daily-accent-end) 100%);
}

@media (max-width: 400px) {
    .daily-category-tabs.tea-tabs .daily-category-tab {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .daily-tea-name {
        font-size: 22px;
    }

    .daily-tea-meta-grid {
        grid-template-columns: 1fr;
    }

    .daily-tea-brew-specs {
        grid-template-columns: 1fr;
    }

    .daily-tea-brew-spec {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 10px 12px;
    }

    .daily-tea-brew-spec .label {
        margin-bottom: 0;
        font-size: 12px;
    }

    .daily-tea-brew-spec .value {
        font-size: 13px;
        max-width: 58%;
        text-align: right;
    }

    .daily-tea-panel {
        padding: 20px 16px 18px;
    }
}
