/* Theme10 - Product Detail Supplementary Styles */

.t10-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.t10-detail-header h1 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.t10-detail-meta {
    font-size: 0.85rem;
    color: var(--t10-text-light);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--t10-border);
}

.t10-detail-content p {
    margin-bottom: 16px;
}

.t10-detail-content h2,
.t10-detail-content h3,
.t10-detail-content h4 {
    margin-top: 28px;
    margin-bottom: 16px;
}

.t10-related-section {
    margin-top: 48px;
}

.t10-related-section .t10-section-title {
    margin-bottom: 28px;
}

.t10-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.t10-related-item {
    background: var(--t10-glass);
    backdrop-filter: blur(var(--t10-blur));
    -webkit-backdrop-filter: blur(var(--t10-blur));
    border: 1px solid var(--t10-glass-border);
    border-radius: var(--t10-radius);
    overflow: hidden;
    box-shadow: var(--t10-shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.t10-related-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--t10-shadow-md);
}

.t10-related-item a {
    display: block;
    text-decoration: none;
}

.t10-related-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.t10-related-item span {
    display: block;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: var(--t10-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .t10-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .t10-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .t10-related-item img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .t10-related-grid {
        grid-template-columns: 1fr;
    }
}
