/* Modern Shop Page Styles */

/* Main Container with Subtle Gradient Background */
.shop_shopContainer__mCQUM {
  min-height: 100vh;
  background: linear-gradient(135deg, 
    #fafafa 0%, 
    #f8fafc 25%, 
    #f1f5f9 50%, 
    #f8fafc 75%, 
    #fafafa 100%);
  background-size: 200% 200%;
  animation: shop_subtleGradientShift__l__4l 20s ease infinite;
  position: relative;
  overflow-x: hidden;
  font-family: 'Inter', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Subtle Animated Gradient Background */
@keyframes shop_subtleGradientShift__l__4l {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Soft overlay for depth */
.shop_shopContainer__mCQUM::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.02) 0%,
    rgba(236, 72, 153, 0.01) 50%,
    rgba(139, 92, 246, 0.02) 100%
  );
  pointer-events: none;
}

/* Header/Navigation Bar */
.shop_navBar__7q55Q {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.1) !important;
}

/* Hero Section */
.shop_heroSection__6EQQe {
  padding: 2rem 0;
  position: relative;
  margin-top: 80px; /* Account for fixed navbar */
}

.shop_heroContent__z_7lj {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.shop_heroBadge__1y3NE {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(139, 92, 246, 0.15);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #8B5CF6;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
  animation: shop_fadeInUp__3DnNT 0.6s ease;
}

.shop_heroTitle__Dm5Pr {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: shop_fadeInUp__3DnNT 0.8s ease 0.1s both;
}

@keyframes shop_fadeInUp__3DnNT {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter Sidebar */
.shop_filterSidebar__tWIJz {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1) !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  animation: shop_slideInLeft__O8frF 0.6s ease;
}

@keyframes shop_slideInLeft__O8frF {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.shop_filterSection__ZTM_f {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.shop_filterSection__ZTM_f:last-child {
  border-bottom: none;
}

.shop_filterTitle__H9fA0 {
  font-weight: 600;
  color: #4C1D95;
  margin-bottom: 0.75rem;
}

/* Product Cards */
.shop_productCard__FAplM {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.15) !important;
  border-radius: 1.25rem !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08) !important;
  cursor: pointer;
  animation: shop_fadeInUp__3DnNT 0.6s ease both;
}

.shop_productCard__FAplM:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2) !important;
  border-color: rgba(236, 72, 153, 0.3) !important;
  background: rgba(255, 255, 255, 1) !important;
}

/* Product Image Container */
.shop_productImageContainer__8tVCZ {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F3E8FF 0%, #FDF4FF 100%);
}

.shop_productImage__d9BVs {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.shop_productCard__FAplM:hover .shop_productImage__d9BVs {
  transform: scale(1.1) !important;
}

/* Product Badges */
.shop_productBadge__JeXES {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop_badgeNew__aJJw9 {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  animation: shop_pulse__VWbNH 2s infinite;
}

.shop_badgeSale__rngdF {
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

@keyframes shop_pulse__VWbNH {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Product Actions */
.shop_productActions__rJSS0 {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.shop_productCard__FAplM:hover .shop_productActions__rJSS0 {
  opacity: 1;
  transform: translateX(0);
}

.shop_actionButton__DrXUm {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop_actionButton__DrXUm:hover {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  color: white;
  transform: scale(1.1);
}

/* Product Content */
.shop_productContent__28ouR {
  padding: 1.25rem;
}

.shop_productCategory__3a4mB {
  font-size: 0.75rem;
  color: #8B5CF6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.shop_productName__0ioy5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.shop_productCard__FAplM:hover .shop_productName__0ioy5 {
  color: #8B5CF6;
}

.shop_productRating__V9q5Z {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.shop_ratingStar__frygn {
  color: #FCD34D;
  fill: currentColor;
}

.shop_ratingCount__Sif4q {
  font-size: 0.875rem;
  color: #6B7280;
  margin-left: 0.5rem;
}

/* Product Footer */
.shop_productFooter__Sm98D {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.shop_productPrice__R01k_ {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.shop_priceCurrent__B2ki9 {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop_priceOriginal__Rhi5s {
  font-size: 0.875rem;
  color: #9CA3AF;
  text-decoration: line-through;
}

/* Add to Cart Button */
.shop_addToCartBtn__aJCE3 {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.shop_addToCartBtn__aJCE3::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.shop_addToCartBtn__aJCE3:hover::before {
  left: 100%;
}

.shop_addToCartBtn__aJCE3:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3) !important;
}

/* Grid Layout Animation */
.shop_productGrid__yZa0R {
  display: grid;
  gap: 1.5rem;
  animation: shop_fadeIn__rI10b 0.6s ease;
}

@keyframes shop_fadeIn__rI10b {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Loading State */
.shop_loadingCard__hg2ds {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  padding: 1rem;
  animation: shop_shimmer__ltpFQ 1.5s infinite;
}

@keyframes shop_shimmer__ltpFQ {
  0% {
    background: rgba(255, 255, 255, 0.6);
  }
  50% {
    background: rgba(255, 255, 255, 0.8);
  }
  100% {
    background: rgba(255, 255, 255, 0.6);
  }
}

/* Floating Elements for Visual Interest */
.shop_floatingOrb__vtVJi {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
  animation: shop_float__gFUO_ 20s infinite ease-in-out;
}

.shop_orb1__061_m {
  width: 400px;
  height: 400px;
  background: #8B5CF6;
  top: 10%;
  left: -200px;
}

.shop_orb2__YeM__ {
  width: 300px;
  height: 300px;
  background: #EC4899;
  top: 50%;
  right: -150px;
  animation-delay: -7s;
}

.shop_orb3__0cEp2 {
  width: 250px;
  height: 250px;
  background: #FB923C;
  bottom: 10%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes shop_float__gFUO_ {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Additional Animations */
.shop_animate-fadeInUp__QlSlc {
  animation: shop_fadeInUp__3DnNT 0.6s ease both;
}

/* Line clamp utility for text truncation */
.shop_line-clamp-2__QTYFk {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .shop_heroTitle__Dm5Pr {
    font-size: 2.5rem;
  }
  
  .shop_filterSidebar__tWIJz {
    margin-bottom: 2rem;
  }
  
  .shop_productGrid__yZa0R {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
