/* Velaris Etsy-Style Mobile-First CSS System */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,700&display=swap&subset=cyrillic,cyrillic-ext,latin');

:root {
  --color-gold: #C5A059;
  --color-gold-light: #E5C378;
  --color-gold-dark: #9A7B39;
  --color-bg-dark: #070709;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--color-bg-dark);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #E2E8F0;
  letter-spacing: -0.01em;
  padding-bottom: 70px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0px;
  }
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
}

/* Hide scrollbars for clean horizontal swipe */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Glassmorphism panels */
.glass-panel {
  background: rgba(18, 20, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.glass-panel-gold {
  background: rgba(18, 20, 26, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(197, 160, 89, 0.1);
}

/* Gold Gradients */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5E6C8 40%, #C5A059 75%, #9A7B39 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-button-glow {
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-button-glow:hover {
  box-shadow: 0 6px 28px rgba(197, 160, 89, 0.55);
  transform: translateY(-1px);
}

/* Etsy Badge styling */
.etsy-badge-bestseller {
  background: #C5A059;
  color: #000000;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 10px;
}

/* Category pill active */
.cat-pill.active {
  background: #C5A059 !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border-color: #C5A059 !important;
}

/* Mobile Bottom Nav Active */
.bottom-nav-item.active {
  color: #C5A059 !important;
}

/* Smooth line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
