/* Palmonas Style CSS Tokens & Clean Layout */
:root {
  --bg-nude: #F6F4EF;
  --bg-header-search: #F3EFE6;
  --bg-card: #FFFFFF;
  --bg-dark: #000000;
  
  --text-primary: #1A1A1A;
  --text-muted: #6B655F;
  --text-gold: #C5A059;
  
  --primary-gold: #C5A059;
  --gold-glow: #F4E4BA;
  
  --border-nude: #E6E1D7;
  
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #FFFFFF;
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #F6F4EF;
}
::-webkit-scrollbar-thumb {
  background: #C5A059;
  border-radius: 3px;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #99752D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Palmonas Category Badges */
.badge-luxe {
  background-color: #D4AF37;
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  position: absolute;
  top: -8px;
  right: 0;
}

.badge-alamode {
  background-color: #4A90E2;
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: lowercase;
  position: absolute;
  top: -8px;
  right: 0;
}

.badge-new {
  background-color: #4A0E17;
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  position: absolute;
  top: -8px;
  right: 0;
}

/* Hero Slider Buttons */
.btn-palmonas-hero {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-palmonas-hero:hover {
  background: #FFFFFF;
  color: #000000;
}

/* Marquee / Infinite Ticker */
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  background: #000000;
  color: #FFFFFF;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 8px 0;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 3rem;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.card-elevation {
  transition: all 0.3s ease;
}
.card-elevation:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
