/* Theme11 - Product Detail Supplementary Styles */

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

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

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

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

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

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

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

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

.t11-related-item {
    background: var(--t11-bg);
    border-radius: var(--t11-radius);
    overflow: hidden;
    box-shadow: var(--t11-neu-flat);
    transition: all 0.25s ease;
}

.t11-related-item:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 12px var(--t11-shadow-dark), -6px -6px 12px var(--t11-shadow-light);
}

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

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

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

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

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

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