/* ============================================
   Sitemap Page Styles
   Карта сайта - стили страницы
   ============================================ */

/* Wrapper */
.sitemap-wrapper {
    background-color: var(--bs-body-bg, #fff);
}

/* Header Section */
.sitemap-header h1 {
    color: var(--bs-dark, #212529);
    font-weight: 700;
}

/* Cards */
.sitemap-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.sitemap-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sitemap-card .card-title {
    color: var(--bs-dark, #212529);
}

/* Links */
.sitemap-links li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sitemap-links li:last-child {
    border-bottom: none;
}

.sitemap-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-secondary, #6c757d);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.sitemap-link:hover {
    color: var(--bs-primary, #0d6efd);
}

.sitemap-link i {
    color: rgba(13, 110, 253, 0.7);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.sitemap-link:hover i {
    color: var(--bs-primary, #0d6efd);
}

/* Stats Section */
.sitemap-stats {
    background-color: rgba(var(--bs-secondary-rgb), 0.1);
    background-color: #f8f9fa;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .sitemap-header h1 {
        font-size: 1.75rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}
