/* Sitemap Page Styles - Professional Design */

.sitemap-page {
    width: 100%;
    background-color: #ffffff;
    min-height: calc(100vh - 54px);
    padding: 0;
}

.sitemap-container {
    max-width: 100%;
    margin: 0;
    padding: 80px 0;
    background: #ffffff;
}

.sitemap-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.sitemap-header {
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e1dfdd;
    text-align: left;
}

.sitemap-header h1 {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #323130;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.sitemap-header p {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #605e5c;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* Category jump tabs */
.sitemap-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.sitemap-tab {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    background: #eef2ff;
    border: 2px solid #c7d2fe;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sitemap-tab:hover {
    background: #e0e7ff;
    border-color: #667eea;
    color: #4f46e5;
}

.sitemap-category {
    scroll-margin-top: 120px;
}

.sitemap-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.sitemap-category {
    width: 100%;
}

.category-title {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #323130;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e1dfdd;
    line-height: 1.3;
    text-align: left;
    letter-spacing: -0.3px;
}

/* Dream Branded Products category title - black */
.category-title.dream-category-title {
    color: #323130;
}

.category-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.section-group {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #87ceeb;
    text-align: left;
}

.section-title {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #323130;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
    letter-spacing: -0.2px;
}

.section-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.section-links li {
    margin-bottom: 6px;
    text-align: left;
}

.section-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
}

.section-links a:hover {
    color: #667eea;
}

.section-links a::before {
    content: '→';
    color: #667eea;
    font-weight: bold;
}

.section-links a:focus {
    outline: 2px solid #0078d4;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .sitemap-content-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .category-sections {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .sitemap-content-wrapper {
        padding: 0 32px;
    }
    
    .category-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .section-group {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .sitemap-container {
        padding: 60px 0;
    }
    
    .sitemap-content-wrapper {
        padding: 0 24px;
    }
    
    .sitemap-header {
        margin-bottom: 48px;
        padding-bottom: 20px;
    }
    
    .sitemap-header h1 {
        font-size: 36px;
    }
    
    .sitemap-header p {
        font-size: 16px;
    }
    
    .category-title {
        font-size: 26px;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }
    
    .category-sections {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-group {
        padding: 20px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .sitemap-content {
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .sitemap-container {
        padding: 40px 0;
    }
    
    .sitemap-content-wrapper {
        padding: 0 16px;
    }
    
    .sitemap-header {
        margin-bottom: 40px;
        padding-bottom: 16px;
    }
    
    .sitemap-header h1 {
        font-size: 32px;
    }
    
    .sitemap-header p {
        font-size: 15px;
    }
    
    .category-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section-group {
        padding: 18px;
    }
    
    .section-title {
        font-size: 17px;
    }
    
    .section-links a {
        font-size: 14px;
    }
    
    .sitemap-content {
        gap: 40px;
    }
}

