/* Theme14 - Product Detail Supplementary Styles */

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

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

.t14-detail-meta {
    font-size: 0.85rem;
    color: var(--t14-text-light);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--t14-border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.t14-detail-content h2,
.t14-detail-content h3,
.t14-detail-content h4 {
    font-family: var(--t14-font-serif);
    margin-top: 32px;
    margin-bottom: 16px;
}

.t14-related-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 3px solid var(--t14-border-dark);
}

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

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

.t14-related-item {
    border-bottom: 3px solid var(--t14-border-dark);
    padding-bottom: 12px;
    transition: border-color 0.25s ease;
}

.t14-related-item:hover {
    border-color: var(--t14-primary);
}

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

.t14-related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 12px;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.t14-related-item:hover img {
    filter: grayscale(0);
}

.t14-related-item span {
    display: block;
    font-family: var(--t14-font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--t14-text);
    line-height: 1.3;
}

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

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

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