/* Category Page Premium Styles */

.category_page {
    padding-top: 20px;
    font-family: 'Nunito', sans-serif;
}

.category_header {
    padding: 10px 0;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.category_header h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.2rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
    
    /* Light Theme: Bright Gold */
    background: linear-gradient(135deg, #bf953f 0%, #fff380 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* 3D Depth Shadow */
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

[data-theme="dark"] .category_header h1 {
    /* Dark Theme: Dimmer, Deeper Gold */
    background: linear-gradient(135deg, #9a7b33 0%, #c5a358 50%, #7a5f1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 4px 15px rgba(0,0,0,0.7));
}

/* Subtle line accent */
.category_header::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #bf953f, #fcf6ba);
    margin: 5px auto 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .category_header {
        padding: 10px 0;
        margin-bottom: 5px;
    }

    .category_header h1 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
}
