/* Theme16 - Product Detail Supplementary Styles */

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

.t16-detail-header h1 {
    margin-bottom: 0;
}

.t16-detail-meta {
    font-size: 0.9rem;
    color: var(--t16-text-light);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 3px dashed var(--t16-border);
}

.t16-detail-content p {
    margin-bottom: 20px;
}

.t16-detail-content h2,
.t16-detail-content h3,
.t16-detail-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--t16-secondary);
}

.t16-related-section {
    margin-top: 60px;
}

.t16-related-section .t16-section-title {
    margin-bottom: 32px;
}

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

.t16-related-item {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    overflow: hidden;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.t16-related-item:hover {
    transform: translateY(-8px) rotate(-1deg);
    border-color: var(--t16-blue);
    box-shadow: var(--t16-shadow-lg);
}

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

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

.t16-related-item span {
    display: block;
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--t16-text);
    text-align: center;
}

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

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

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