.sitemap-container {
    max-width: 1320px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: rgba(246, 246, 246, 1);
    background-image: url(/assets/img/general/bg.webp);
    background-position: left 0% top 200px;
    background-size: 100% auto;
    background-repeat: repeat-y;
    font-family: 'Montserrat', sans-serif;
}

.sitemap-header {
    background-color: #FFCEE5;
    padding: 40px 20px;
    text-align: center;
    border-radius: 0 0 12px 12px;
    margin-bottom: 20px;
    position: relative;
}

.sitemap-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.sitemap-breadcrumb {
    font-size: 14px;
    color: #666;
}

.sitemap-breadcrumb a {
    color: #ed3b24;
    text-decoration: none;
    font-weight: 500;
}

.sitemap-breadcrumb a:hover {
    text-decoration: underline;
}

.sitemap-language-switcher {
    z-index: 1000;
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.sitemap-language-switcher a {
    color: #010101;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.sitemap-language-switcher a:hover {
    background-color: #ed3b24;
    color: #fff;
}

.sitemap-language-switcher span.active {
    color: #ed3b24;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    background-color: rgba(237, 59, 36, 0.1);
}

.sitemap-content {
    padding: 20px;
}

.sitemap-stats {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sitemap-stats-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.sitemap-stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ed3b24, #d63519);
    border-radius: 10px;
    color: white;
    min-width: 33%;
}

.sitemap-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sitemap-stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.sitemap-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sitemap-section-title {
    position: relative;
    width: 100%;
    height: 56px;
    border-bottom: 2px solid #0000001b;
    margin-bottom: 1.5rem;
}

.sitemap-section-title span {
    font-size: 2rem;
    font-weight: 500;
    border-bottom: 2px solid #ed3b24;
    position: absolute;
    top: -2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.sitemap-page-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.sitemap-page-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #ed3b24;
}

.sitemap-page-card a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.sitemap-page-card a:hover {
    color: #ed3b24;
}

.sitemap-categories-tree {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.sitemap-category-item {
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    min-width: 48%;
}

.sitemap-category-item:hover {
    border-color: #ed3b24;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sitemap-category-header {
    padding: 20px;
    background: linear-gradient(135deg, #ed3b24, #d63519);
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sitemap-category-header a {
    color: white;
    text-decoration: none;
    flex: 1;
}

.sitemap-category-header a:hover {
    color: white;
}

.sitemap-category-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: none;
}

.sitemap-subcategories {
    padding: 20px;
    background: white;
}

.sitemap-subcategory-item {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid #e5e7eb;
}

.sitemap-subcategory-item:hover {
    border-left-color: #ed3b24;
}

.sitemap-subcategory-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.sitemap-subcategory-title a {
    color: #555;
    text-decoration: none;
    flex: 1;
}

.sitemap-subcategory-title a:hover {
    color: #ed3b24;
}

.sitemap-subcategory-title:before {
    content: "▸";
    color: #ed3b24;
    font-weight: bold;
}

.sitemap-subsubcategories {
    padding-left: 20px;
    margin-top: 10px;
}

.sitemap-subsubcategory-item {
    margin-bottom: 8px;
    color: #666;
    font-size: 13px;
}

.sitemap-subsubcategory-item a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sitemap-subsubcategory-item a:hover {
    color: #ed3b24;
}

.sitemap-subsubcategory-item a:before {
    content: "◦";
    color: #999;
}

.sitemap-products-sample {
    margin-top: 15px;
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    font-size: 13px;
}

.sitemap-products-sample-title {
    font-weight: 600;
    color: #ed3b24;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sitemap-product-link {
    display: inline-block;
    margin: 3px 8px 3px 0;
    color: #666;
    text-decoration: none;
    padding: 4px 10px;
    background: white;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    font-size: 12px;
    transition: all 0.2s ease;
}

.sitemap-product-link:hover {
    border-color: #ed3b24;
    color: #ed3b24;
    transform: translateY(-1px);
}

.sitemap-view-all-link {
    display: inline-block;
    margin-top: 10px;
    color: #ed3b24;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.sitemap-view-all-link:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sitemap-header h1 {
        font-size: 1.8rem;
    }
    
    .sitemap-pages-grid {
        grid-template-columns: 1fr;
    }
    
    .sitemap-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .sitemap-language-switcher {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
    
    .sitemap-content {
        padding: 15px;
    }
    
    .sitemap-section {
        padding: 20px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .sitemap-header {
        padding: 20px 15px;
    }
    
    .sitemap-header h1 {
        font-size: 1.5rem;
    }
    
    .sitemap-content {
        padding: 10px;
    }
    
    .sitemap-section {
        padding: 15px;
    }
    .sitemap-category-item {
        min-width: 100%;
    }
}