body {
    margin: 0;
    background: #f3f3f3;
    font-family: "Noto Sans TC", Arial, sans-serif;
    color: #333;
}

.flower {
    max-width: 860px;
    margin: auto;
    padding: 20px;
}

/* Header */
.flower-header {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.flower-header h1 {
    margin: 0 0 6px;
    font-size: 28px;
	color: #07213d;
}

.meta {
    font-size: 14px;
    color: #777;
}

/* Hero */
.flower-hero {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.flower-hero img {
    max-width: 100%;
    border-radius: 10px;
}

/* Price */
.flower-price {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.flower-price h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.price-list li:last-child {
    border-bottom: none;
}

.label {
    font-size: 15px;
}

.price {
    font-size: 18px;
    font-weight: bold;
}

.high { color: #c0392b; }
.mid  { color: #2a7f62; }
.low  { color: #555; }

.price-note {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

/* Description */
.flower-desc {
    list-style: none;
	background: #fff;
    padding: 22px;
    border-radius: 12px;
    line-height: 1.8;
}

.flower-desc li{
	list-style: none;
}

.flower-desc h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.flower-desc h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* 花市行情頁底部 */
.flower-footer {
    margin-top: 15px;
    padding: 12px 0;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}

.flower-footer .footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 12px;
}

.flower-footer .footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.flower-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.flower-footer .footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.flower-footer .footer-links a.active {
    background: #07213d;
	border-color: #07213d;
	color:#fff;
}

.flower-footer .footer-links a:hover {
    color: #07213d;
    border-color: #07213d;
    background: #fff5f5;
}

/* Mobile */
@media (max-width: 768px) {
    .flower-header h1 {
        font-size: 22px;
    }
}
