/* public/js/front/pages/sitemap.css
   Extracted from resources/js/index/pages/sitemap/sitemap.vue <style> block (not scoped in
   source either) — CDN build has no SFC scoping. Selectors are already namespaced by their
   own distinctive .sitemap-* class names, so no extra scoping under #app-sitemap was needed
   (same reasoning as category.css/brand.css). */

/* Wrapper spacing */
.sitemap-wrapper {
    padding: 60px 20px;
}

/* Center content */
.sitemap-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Reset main list */
.sitemap-list {
    padding: 0;
    margin: 0;
}

/* Main items (Home, Brands) */
.sitemap-list > li {
    position: relative;
    margin-bottom: 30px;
}

/* Main links */
.sitemap-list > li > a {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: block;
    border-bottom: 2px solid #005f85; /* Theme underline */
    padding-bottom: 4px;
    transition: 0.3s ease;
}

/* Sub list */
.sitemap-list ul {
    margin-top: 12px;
    padding-left: 25px;
    list-style: disc; /* Bullet style */
}

/* Sub list items */
.sitemap-list ul li {
    margin-bottom: 8px;
}

/* Sub links */
.sitemap-list ul li a {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

/* Underline animation on hover */
.sitemap-list ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #005f85;
    transition: width 0.3s ease;
}

.sitemap-list ul li a:hover {
    color: #005f85;
}

.sitemap-list ul li a:hover::after {
    width: 100%;
}
