.product-detail-page { padding-bottom: 70px; }

.detail-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    background: #f5f5f5;
}

.detail-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    overflow-x: auto;
}

.detail-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
}

.detail-thumbs img:hover { border-color: var(--accent); }

.detail-info { margin-top: 16px; }

.detail-price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.detail-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 12px 0 6px;
}

.detail-sub { color: var(--text-light); font-size: 0.875rem; }

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 8px;
}

.detail-tag {
    margin-top: 12px;
    padding: 8px 12px;
    background: #fff5f5;
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.8125rem;
}

.detail-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,.06);
    z-index: 200;
}

.detail-bar .bar-icon {
    width: 40px;
    text-align: center;
    color: var(--text);
    font-size: 1.25rem;
    text-decoration: none;
}

.detail-bar .btn { flex: 1; padding: 10px; font-weight: 600; border-radius: 8px; }

.btn-outline-accent {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: #fff;
}

.product-detail-content { line-height: 1.8; color: #444; word-break: break-word; }
.product-detail-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 8px 0; }
