/* Globart Marketplace — Global Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* Base Styles & Smooth Scrolling */
html {
  scroll-behavior: smooth;
  background-color: #FAFAFA;
  color: #121212;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Custom Signature Stamp Badge */
.customs-stamp {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: rotate(-3deg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1.5px dashed #FF6A00;
  color: #121212;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  letter-spacing: 0.025em;
}

/* Sale Discount Pill */
.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #121212;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  z-index: 10;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #FAFAFA;
}
::-webkit-scrollbar-thumb {
  background: #E7E7E7;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6B6B6B;
}

/* Card Hover Transition */
.product-card {
  transition: all 0.25s ease-in-out;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
}