/**
 * Styles for single artist profile page
 */

/* Full width layout */
.nordicart-fullwidth #content .ast-container,
.nordicart-fullwidth .content-area,
.nordicart-fullwidth #primary {
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Banner */
.nordicart-artist-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.nordicart-artist-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Artist header */
.nordicart-artist-profile-wrapper {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nordicart-artist-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.nordicart-artist-name {
    font-size: 2.5rem;
    margin: 0 auto 0 0;
    padding: 0;
}

.nordicart-artist-location {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    color: #666;
}

.nordicart-artist-location .dashicons {
    margin-right: 0.5rem;
    color: #999;
}

/* Artist content */
.nordicart-artist-content {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Artist gallery */
.nordicart-artist-gallery {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nordicart-artist-gallery h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.nordicart-gallery-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.nordicart-gallery-product {
    transition: transform 0.2s ease;
}

.nordicart-gallery-product:hover {
    transform: translateY(-5px);
}

.nordicart-gallery-product a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.nordicart-gallery-product .product-image {
    height: 280px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.nordicart-gallery-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nordicart-gallery-product:hover img {
    transform: scale(1.05);
}

.nordicart-gallery-product h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.nordicart-gallery-product .price {
    color: #333;
    font-weight: 500;
}

.nordicart-gallery-more {
    text-align: center;
    margin: 2rem 0;
}

.nordicart-gallery-more .button {
    display: inline-block;
    background-color: #f7f7f7;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
}

.nordicart-gallery-more .button:hover {
    background-color: #eee;
    color: #000;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .nordicart-artist-banner {
        height: 200px;
    }
    
    .nordicart-artist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .nordicart-artist-name {
        margin: 0;
    }
    
    .nordicart-gallery-products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .nordicart-gallery-product .product-image {
        height: 220px;
    }
} 