/* SHOP PAGE STYLES - Black/White Aesthetic */
.shop-page {
  padding: 60px 0 80px;
  background: #ffffff;
  color: #111;
}

.shop-header {
  margin-bottom: 60px;
  text-align: center;
}

.shop-mini-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.shop-main-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #000;
  font-family: 'Times New Roman', serif;
}

.shop-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filter Bar */
.shop-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

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

.filter-item {
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
  cursor: pointer;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.filter-item:hover {
  color: #000;
  border-bottom-color: #000;
}

.filter-item.active {
  color: #000;
  border-bottom-color: #000;
  font-weight: 500;
}

.filter-right {
  font-size: 13px;
  color: #777;
}

/* Artworks Grid */
.artworks-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* Artwork Card */
.artwork-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.artwork-card:hover {
  border-color: #999;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.artwork-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/2;
}

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

.artwork-card:hover img {
  filter: grayscale(0%);
}



.artwork-content {
  padding: 25px 20px;
}

.artwork-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #000;
}

.artwork-artist {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}



.detail-row {
  display: flex;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.detail-label {
  width: 70px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.detail-value {
  flex: 1;
  color: #333;
}



/* Price and availability in one line */
.price-availability-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 20px 0;
  padding: 0;
}

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

.artwork-availability {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
}

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

.availability-limited {
  background: #fff3e0;
  color: #bf360c;
}

.availability-sold {
  background: #ffebee;
  color: #c62828;
}

/* ===== UPDATED WHATSAPP BUTTON - GREEN + POP OUT ANIMATION ===== */
.whatsapp-btn {
  display: inline-block;
  background: black;  /* WhatsApp green */
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid black;
  width: auto;
  min-width: 160px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 4px;    /* Slight rounding for modern look */
  font-weight: 500;margin-top: 0px;
  
  /* Stronger pop-out animation */
  animation: pop-wa 1.8s ease-in-out infinite;
}

/* Enhanced pop-out keyframes */
@keyframes pop-wa {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(11, 13, 12, 0.2);
  }
  40% {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(38, 41, 39, 0.4);
  }
  60% {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(55, 58, 56, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(79, 82, 80, 0.2);
  }
}

.whatsapp-btn:hover {
  background: white;  /* Darker green on hover */
  border-color: black;
  color: black;
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(40, 43, 43, 0.4);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.page-item:hover,
.page-item.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* IMAGE BANNER */
.image-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background: #000;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

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

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

/* Responsive */
@media (max-width: 1000px) {
  .artworks-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  

}

@media (max-width: 700px) {
  .artworks-shop-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-filter-bar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  

  
  .price-availability-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.view-more-link{
  font-size:12px;
  color:#000;
  text-decoration:none;
  font-weight:500;
  display:inline-block;
  margin-top:5px;
  border-bottom:1px solid #000;
  transition:0.3s;
}

.view-more-link:hover{
  color:#555;
  border-color:#555;
}
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.buy-now-btn {
  display: inline-block;
  background-color: #ddd;
  color: #000;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  flex: 1;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.buy-now-btn:hover {
    background-color: #333;color: #fff;
}
@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 .art-card {
    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) {
   .whatsapp-btn {
  padding: 8px 16px;
  font-size: 10px;
  width: 166px;
  min-width: 151px;

}
.buy-now-btn {
  font-size: 13px;
}
.artwork-title {
  font-size: 16px;
}
.image-banner {
  height: 28vh;
}
.banner-overlay h1 {
  margin-top: 90px;
  padding: 1rem 2rem;
}
        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {
.whatsapp-btn {
  padding: 8px 16px;
  font-size: 10px;
  width: 166px;
  min-width: 151px;

}
.buy-now-btn {
  font-size: 13px;
}
.artwork-title {
  font-size: 16px;
}
.image-banner {
  height: 28vh;
}
.banner-overlay h1 {
  margin-top: 90px;
  padding: 1rem 2rem;
}
        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {
 .image-banner {
  height: 300px;
}
.banner-overlay h1 {
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  margin-top: 80px;
}
.shop-filter-bar {
  display: none;
}
.shop-page {
  padding: 30px 0 20px;
}
.pagination {
  margin-top: -40px;
}
.whatsapp-btn {
  padding: 8px 0px;
  font-size: 12px;min-width: 115px;
}
.artwork-card {
  min-width: 280px !important;
}
  
        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
 .image-banner {
  height: 250px;
}
.banner-overlay h1 {
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 80px;
}
.shop-filter-bar {
  display: none;
}
.shop-page {
  padding: 30px 0 20px;
}
.pagination {
  margin-top: -40px;
}
.whatsapp-btn {
  padding: 8px 0px;
  font-size: 12px;min-width: 115px;
}
.artwork-card {
  min-width: 280px !important;
}
        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
 .image-banner {
  height: 250px;
}
.banner-overlay h1 {
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 80px;
}
.shop-filter-bar {
  display: none;
}
.shop-page {
  padding: 30px 0 20px;
}
.pagination {
  margin-top: -40px;
}
.whatsapp-btn {
  padding: 8px 0px;
  font-size: 12px;min-width: 115px;
}
.artwork-card {
  min-width: 280px !important;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .image-banner {
  height: 250px;
}
.banner-overlay h1 {
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 80px;
}
.shop-filter-bar {
  display: none;
}
.shop-page {
  padding: 30px 0 20px;
}
.pagination {
  margin-top: -40px;
}
.whatsapp-btn {
  padding: 8px 0px;
  font-size: 12px;min-width: 115px;
}
.artwork-card {
  min-width: 280px !important;
}
        }
