

/* Image Banner */
.image-banner {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
}

.banner-overlay h1 {
font-weight: 300;
  letter-spacing: 8px;
  margin-top: 80px;
  text-transform: uppercase;
  padding-bottom: 20px;
  border: 2px solid #ffffff70;
  padding: 1rem 1rem;
  font-size: 25px;color: #fff;
}

/* Page Container */
.shop-page {
    padding: 60px 0;
    background: #faf9f8;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Filter Bar */
.shop-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0dfdd;
}

.filter-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.filter-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b6a68;
    cursor: default;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.filter-item.active {
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: -17px;
}

.filter-right span {
    font-size: 0.9rem;
    color: #6b6a68;
}

/* Artists Grid */
.artworks-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px 32px;
}

/* Artwork Card (Artist Card) */
.artwork-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.artwork-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}

.artwork-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image Wrapper */
.artwork-image-wrapper {
    width: 100%;
    height: 385px;
    overflow: hidden;
    background-color: #f0efed;
}

.artwork-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artwork-card:hover .artwork-image-wrapper img {
    transform: scale(1.03);
}

/* Content Area */
.artwork-content {
    padding: 24px 20px 28px;
}

/* Artist Name */
.artwork-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    color: #1f1f1f;
    line-height: 1.3;
}

/* Location */
.artwork-artist {
    font-size: 0.9rem;
    color: #7a6e5d;
    margin-bottom: 14px;
    font-weight: 450;
}

/* Description / Bio */
.artwork-bio {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;height: 70px;
}

/* Email Meta */
.artwork-meta {
    font-size: 0.8rem;
    color: #8f8c89;
    margin-bottom: 18px;
    word-break: break-word;
    font-family: monospace;
}

/* Button Group */
.button-group {
    margin-top: 8px;
}

.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    transition: all 0.25s;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    min-width: 180px;
    width: 100%;
    text-align: center;
}

.profile-btn:hover {
    background-color: white;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .image-banner {
        height: 260px;
    }
    
    .banner-overlay h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .shop-page {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .artworks-shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 28px;
    }
    
    .artwork-content {
        padding: 20px 16px 24px;
    }
    
    .artwork-title {
        font-size: 1.3rem;
    }
    
    .shop-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .filter-item.active {
        margin-bottom: -13px;
        padding-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .artworks-shop-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .artwork-image-wrapper {
        height: 260px;
    }
    
    .profile-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .banner-overlay h1 {
        font-size: 2rem;
    }
}

/* No artists fallback */
.artworks-shop-grid > p {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f5f3f0;
    border-radius: 28px;
    color: #5e5b58;
    font-size: 1rem;
}
.new-footer {
    margin-top: 0rem;
}
     @media (max-width: 768px) {

  .artworks-shop-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .artworks-shop-grid > * {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}

/* responsive */
        @media screen and (max-width:1400px) {

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
    .banner-overlay h1 {
    padding: 1rem 1rem;font-size: 20px;
  margin-top: 70px;
}
.image-banner {
  height: 350px !important;
}
.shop-page {
  padding: 20px 0px 20px !important;
}
.whatsapp-btn {
  padding: 8px 10px;
  font-size: 14px;
  min-width: 100px !important;
}
        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {
 .banner-overlay h1 {
    padding: 1rem 1rem;
  margin-top: 70px;font-size: 20px;
}
.image-banner {
  height: 300px !important;
}
.shop-page {
  padding: 20px 0px 20px !important;
}
.whatsapp-btn {
  padding: 8px 10px;
  font-size: 14px;
  min-width: 100px !important;
}
        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {
 .banner-overlay h1 {
    padding: 1rem 1rem;
  margin-top: 70px;font-size: 20px;
}
.image-banner {
  height: 300px !important;
}
.shop-page {
  padding: 20px 0px 20px !important;
}

        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
 .banner-overlay h1 {
    padding: 1rem 1rem;
    font-size: 12px;margin-top: 70px;
}
.image-banner {
  height: 250px !important;
}
.shop-page {
  padding: 20px 0px 20px !important;
}
.artworks-shop-grid {
  margin-bottom: 10px;
}
.artwork-bio{font-size: 12px;}
.whatsapp-btn {
  padding: 8px 10px;
  font-size: 12px;
  min-width: 100px !important;
}

        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
    .banner-overlay h1 {
    padding: 1rem 1rem;
    font-size: 12px;margin-top: 70px;
}
.image-banner {
  height: 250px !important;
}
.shop-page {
  padding: 20px 0px 20px !important;
}
.artworks-shop-grid {
  margin-bottom: 10px;
}
.artwork-bio{font-size: 12px;}
.whatsapp-btn {
  padding: 8px 10px;
  font-size: 12px;
  min-width: 100px !important;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .banner-overlay h1 {
    padding: 1rem 1rem;
    font-size: 12px;margin-top: 70px;
}
.image-banner {
  height: 250px !important;
}
.shop-page {
  padding: 20px 0px 20px !important;
}
.artworks-shop-grid {
  margin-bottom: 10px;
}
.artwork-bio{font-size: 12px;}
.whatsapp-btn {
  padding: 8px 10px;
  font-size: 12px;
  min-width: 100px !important;
}
        }