@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-gold: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FEF3C7;
  --honey-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
  --gold-glow: 0 10px 30px -5px rgba(245, 158, 11, 0.4);
  --deep-slate: #0F172A;
  --card-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(245, 158, 11, 0.2);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #334155;
  background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--deep-slate);
}

#header {
  background: rgba(15, 23, 42, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

#header a {
  color: #F8FAFC !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

#header a:hover {
  color: var(--primary-gold) !important;
}

.bee-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%), url('/user/pages/images/hero.png');
  background-size: cover;
  background-position: center;
  color: #FFF;
  padding: 100px 20px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  overflow: hidden;
}

.bee-hero h1 {
  color: #FFF;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.bee-hero h1 span.gold-text {
  background: var(--honey-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-badge-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #FEF3C7;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-bee-primary {
  background: var(--honey-gradient);
  color: #FFF !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  box-shadow: var(--gold-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-bee-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.6);
}

.btn-bee-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF !important;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-left: 12px;
}

.bee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.bee-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
  border-color: var(--primary-gold);
}

.bee-card .card-icon {
  width: 60px;
  height: 60px;
  background: var(--amber-light);
  color: var(--amber-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.product-card {
  background: #FFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.2);
  border-color: var(--primary-gold);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--honey-gradient);
  color: #FFF;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber-dark);
  margin: 15px 0;
}

.stats-banner {
  background: var(--deep-slate);
  color: #FFF;
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  border: 1px solid var(--primary-gold);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 6px;
}

#footer {
  background: #090D16 !important;
  color: #94A3B8 !important;
  padding: 40px 0 20px 0;
  border-top: 3px solid var(--primary-gold);
}

#footer a {
  color: var(--primary-gold);
}
