/* Clean Sitemap Styles - Matching stardustperfume.com exactly */

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.sitemap-section {
    margin-bottom: 50px;
}

/* Section Titles with specified font size and colors */
.section-title {
    color: #3a1d33; /* #3a1d33 - Dark purple color */
    font-size: 40px; /* Specified 40px font size */
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #c79d3a; /* #c79d3a - Gold color */
    text-transform: none;
    letter-spacing: 0;
}

/* Brand Group Styling */
.brand-group {
    margin-bottom: 30px;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
}

.brand-title {
    color: #3a1d33;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.brand-title a {
    color: #3a1d33;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-title a:hover {
    color: #c79d3a;
}

.brand-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    padding-left: 10px;
}

/* Matching the "Our Categories" section style */
.section-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
}

/* Matching product card styling from stardustperfume.com */
.sitemap-link {
    display: block;
    padding: 10px 10px;
    color: #555555;
    text-decoration: none;
    background: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 0px solid #f0f0f0;
    /* font-size: 1em; */
    font-weight: 500;
    line-height: 1.5;
}

/* Product links inside brand groups */
.product-link {
    padding: 10px 10px;
    /* font-size: 0.95em; */
    margin-left: 10px;
}

/* Hover effect with gold accent color */
.sitemap-link:hover {
    background: #fafafa;
    color: #3a1d33; /* Dark purple text on hover */
    border-color: #c79d3a; /* Gold border on hover */
    border-left: 3px solid #c79d3a; /* Gold accent border */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Design matching website's breakpoints */
@media (max-width: 992px) {
    .section-content {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .brand-products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .sitemap-container {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 35px; /* Slightly smaller on medium screens */
        margin-bottom: 25px;
    }
    
    .brand-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .section-content {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .brand-products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .sitemap-section {
        margin-bottom: 40px;
    }
    
    .brand-group {
        padding: 15px;
    }
    
    .section-title {
        font-size: 30px; /* Smaller on tablets */
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .brand-title {
        font-size: 20px;
    }
    
    .sitemap-link {
        padding: 15px 18px;
        font-size: 0.95em;
    }
    
    .product-link {
        padding: 10px 12px;
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .section-content {
        grid-template-columns: 1fr;
    }
    
    .brand-products {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
    
    .sitemap-container {
        padding: 20px 10px;
    }
    
    .section-title {
        font-size: 26px; /* Adjusted for mobile */
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .brand-title {
        font-size: 18px;
    }
    
    .brand-group {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .sitemap-link {
        padding: 14px 16px;
    }
    
    .product-link {
        padding: 8px 10px;
        margin-left: 0;
    }
}