/* spotlight.css - v1.2 */
/* Complete CSS for Spotlight Page - Fixed & Optimized */
.artist-heart-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;margin-bottom: 22px;
}

.artist-heart-row .artwork-artist{
    margin-bottom:0;
}

.wishlist-heart-inline{
    display:flex;
    align-items:center;
}

.wishlist-heart-inline .heart-btn,
.wishlist-heart-inline .heart-btn2{
    background:transparent;
    border:none;
    padding:0;
    cursor:pointer;
    font-size:18px;
    color:#000;
}
/* 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: 0;
    text-transform: uppercase;
    border: 2px solid #ffffff70;
    padding: 1rem 2rem;
    font-size: 25px;
    color: #fff;margin-top: 70px;
}

/* 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: 35px;
    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: pointer;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.filter-item:hover {
    color: #1a1a1a;
}

.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;
}

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

/* Artwork Card */
.artwork-card {
    background: white;
    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);
}



/* Image Wrapper */
.artwork-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    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);
}

/* Wishlist Heart Button */
.wishlist-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.heart-btn2 {
background: #ff4d6d;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  cursor: pointer;
  text-decoration: none;
}

.heart-btn i,
.heart-btn2 i,
.removeFromWishlistBtn i,
.add_wishlist_btn i {
    font-size: 16px;
    transition: all 0.2s ease;
}

/* Default heart (not in wishlist) */
.heart-btn2,
.add_wishlist_btn {
    background: #ff4d6d;
}

.heart-btn2 i,
.add_wishlist_btn i {
    color: #999;
}

.heart-btn2:hover,
.add_wishlist_btn:hover {
    background: white;
}

.heart-btn2:hover i,
.add_wishlist_btn:hover i {
    color: #ff4d6d;
}

/* Heart when in wishlist */
.heart-btn,
.removeFromWishlistBtn {
    background: white;
}

.heart-btn i,
.removeFromWishlistBtn i {
    color: #ff4d6d;
}

.heart-btn:hover,
.removeFromWishlistBtn:hover {
    background: #ff4d6d;
}

.heart-btn:hover i,
.removeFromWishlistBtn:hover i {
    color: white;
}

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

/* Product Name */
.artwork-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #1f1f1f;
  line-height: 1.3;
}

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

/* Price & Availability Row */
.price-availability-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.artwork-price {
   font-size: 22px;
  font-weight: 300;
  color: #000;
  margin: 0;
  line-height: 1;
}

.artwork-availability {
  font-size: 11px;
  padding: 4px 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.availability-available {
    background: #d4edda;
    color: #155724;
}

.availability-sold {
    background: #f8d7da;
    color: #721c24;
}

.availability-reserved {
    background: #f0f0f0;
  color: #2e7d32;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.whatsapp-btn,
.add_to_cart,
.buy-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1a1a1a;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.4px;
    transition: all 0.25s;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    flex: 1;
    min-width: 120px;
}

.whatsapp-btn:hover,
.add_to_cart:hover,
.buy-now-btn:hover {
    background-color: white;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.buy-now-btn {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #ddd;
}

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

/* Profile Button (for artists page - kept for compatibility) */
.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    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;
}

/* Artwork Bio (for artists page - kept for compatibility) */
.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;
}

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

/* No products 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;
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS - FIXED & CLEAN */
/* ============================================ */

/* 1400px+ */
@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

/* 1200px - 1399px */
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-overlay h1 {
        padding: 0.8rem 1.5rem;
        font-size: 22px;
        letter-spacing: 6px;
    }
    .image-banner {
        height: 350px;
    }
    .shop-page {
        padding: 40px 0;
    }
    .whatsapp-btn,
    .add_to_cart,
    .buy-now-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 110px;
    }
    .artworks-shop-grid {
        gap: 30px;
    }
}

/* 992px - 1199px */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
    .banner-overlay h1 {
        padding: 0.7rem 1.3rem;
        font-size: 20px;
        letter-spacing: 6px;
    }
    .image-banner {
        height: 320px;
    }
    .shop-page {
        padding: 35px 0;
    }
    .whatsapp-btn,
    .add_to_cart,
    .buy-now-btn {
        padding: 10px 14px;
        font-size: 13px;
        min-width: 100px;
    }
    .artworks-shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 28px;
    }
    .artwork-title {
        font-size: 1.3rem;
    }
}

/* 768px - 991px */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .banner-overlay h1 {
        padding: 0.6rem 1.2rem;
        font-size: 18px;
        letter-spacing: 5px;
    }
    .image-banner {
        height: 280px;
    }
    .shop-page {
        padding: 30px 0;
    }
    .artworks-shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    .artwork-title {
        font-size: 1.2rem;
    }
    .artwork-price {
        font-size: 1.1rem;
    }
    .button-group {
        flex-direction: column;
    }
    .whatsapp-btn,
    .add_to_cart,
    .buy-now-btn {
        width: 100%;
    }
}

/* 576px - 767px */
@media screen and (min-width: 576px) and (max-width: 767.98px) {
    .banner-overlay h1 {
        padding: 0.5rem 1rem;
        font-size: 14px;
        letter-spacing: 4px;
    }
    .image-banner {
        height: 250px;
    }
    .shop-page {
        padding: 25px 0;
    }
    .container {
        padding: 0 16px;
    }
    .artworks-shop-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .artworks-shop-grid > * {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
    .artwork-bio {
        font-size: 12px;
    }
    .whatsapp-btn,
    .add_to_cart,
    .buy-now-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 90px;
    }
    .artwork-title {
        font-size: 1.1rem;
    }
    .artwork-price {
        font-size: 1rem;
    }
    .shop-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .filter-left {
        gap: 16px;
    }
    .filter-item {
        font-size: 0.85rem;
    }
}

/* 381px - 575px */
@media screen and (min-width: 381px) and (max-width: 575.98px) {
    .banner-overlay h1 {
        padding: 0.4rem 0.8rem;
        font-size: 12px;
        letter-spacing: 3px;
        border-width: 1.5px;
    }
    .image-banner {
        height: 220px;
    }
    .shop-page {
        padding: 20px 0;
    }
    .container {
        padding: 0 14px;
    }
    .artworks-shop-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .artworks-shop-grid > * {
        flex: 0 0 90%;
        scroll-snap-align: start;
    }
    .artwork-bio {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    .whatsapp-btn,
    .add_to_cart,
    .buy-now-btn {
        padding: 8px 10px;
        font-size: 11px;
        min-width: 80px;
    }
    .artwork-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .artwork-artist {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .artwork-price {
        font-size: 0.95rem;
    }
    .artwork-content {
        padding: 16px 14px 20px;
    }
    .artwork-image-wrapper {
        height: 350px;
    }
    .button-group {
        gap: 8px;
    }
    .filter-item {
        font-size: 12px;
    }
    .filter-left {
        gap: 12px;
    }
    .filter-item.active {
    padding-bottom: 0px;
    margin-bottom: -8px;
}
.shop-filter-bar {
    gap: 16px;
    margin-bottom: 25px;
    padding-bottom: 15px;
}
}

/* 320px - 380px */
@media screen and (min-width: 320px) and (max-width: 380.98px) {
    .banner-overlay h1 {
        padding: 0.35rem 0.7rem;
        font-size: 11px;
        letter-spacing: 2px;
        border-width: 1.5px;
    }
    .image-banner {
        height: 200px;
    }
    .shop-page {
        padding: 20px 0;
    }
    .container {
        padding: 0 12px;
    }
    .artworks-shop-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .artworks-shop-grid > * {
        flex: 0 0 92%;
        scroll-snap-align: start;
    }
    .artwork-bio {
        font-size: 10px;
        -webkit-line-clamp: 2;
    }
    .whatsapp-btn,
    .add_to_cart,
    .buy-now-btn {
        padding: 6px 8px;
        font-size: 10px;
        min-width: 70px;
        gap: 4px;
    }
    .artwork-title {
        font-size: 0.95rem;
    }
    .artwork-artist {
        font-size: 0.75rem;
    }
    .artwork-price {
        font-size: 0.9rem;
    }
    .artwork-content {
        padding: 14px 12px 18px;
    }
    .artwork-image-wrapper {
        height: 350px;
    }
    .price-availability-row {
        margin-bottom: 14px;
    }
    .artwork-availability {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
    .filter-item {
        font-size: 0.75rem;
    }
    .filter-left {
        gap: 10px;
    }
    .shop-filter-bar {
        margin-bottom: 25px;
    }
    .heart-btn,
    .heart-btn2,
    .removeFromWishlistBtn,
    .add_wishlist_btn {
        width: 30px;
        height: 30px;
    }
    .heart-btn i,
    .heart-btn2 i,
    .removeFromWishlistBtn i,
    .add_wishlist_btn i {
        font-size: 14px;
    }
    .filter-item.active {
    padding-bottom: 0px;
    margin-bottom: -8px;
}
}

/* Fix for horizontal scroll on mobile - remove body overflow */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
    .artworks-shop-grid {
        scrollbar-width: thin;
    }
    .artworks-shop-grid::-webkit-scrollbar {
        height: 4px;
    }
    .artworks-shop-grid::-webkit-scrollbar-track {
        background: #e0dfdd;
        border-radius: 4px;
    }
    .artworks-shop-grid::-webkit-scrollbar-thumb {
        background: #1a1a1a;
        border-radius: 4px;
    }
}
.new-footer {
  margin-top: 0rem;
}