﻿/* ==========================================================================
   SEWANGI JIWA — LUXURY THEME STYLES (EMERALD, SAGE, BROKEN WHITE, GOLD)
   ========================================================================== */

body {
  background-color: #FAF8F5;
  color: #1A2E26;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.bg-broken {
  background-color: #FAF8F5;
}

.bg-broken-darker {
  background-color: #F4F0E8;
}

/* Luxury Glassmorphism */
.glass-emerald {
  background: rgba(15, 58, 46, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-white {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gold Gradients */
.text-gold-gradient {
  background: linear-gradient(135deg, #DFB770 0%, #C5A059 50%, #E8CD96 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #DFB770 0%, #C5A059 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #F4F0E8;
}
::-webkit-scrollbar-thumb {
  background: #7B9E87;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #164F3F;
}

/* Shimmer animation for badges */
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.shimmer-badge {
  position: relative;
  overflow: hidden;
}

.shimmer-badge::after {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.25) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 3s infinite;
  content: '';
}

.drawer-open {
  overflow: hidden;
}
