/* ==========================================================================
   Lokality Design System - Core Components
   Styled specifically to match image.png with brand-asset-derived themes
   ========================================================================== */

/* 1. HERO SECTION */
.hero-section {
  padding: 28px 20px 32px;
  background: #FFFFFF;
}

.hero-eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.hero-headline {
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--brand-dark);
  margin-bottom: 16px;
  letter-spacing: -0.035em;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Primary CTA Button (Brand Green #1F9158) */
.btn-primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--brand-green);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 14px rgba(31, 145, 88, 0.28);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary-cta:hover {
  background: var(--brand-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(31, 145, 88, 0.35);
}

.btn-primary-cta:active {
  transform: translateY(0);
}

.hero-sublink-wrap {
  text-align: center;
  margin-top: 14px;
  margin-bottom: 10px;
}

.hero-sublink {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.hero-sublink:hover {
  color: var(--brand-green);
}

.hero-reassurance {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
}

/* 2. STORE ACTIVITY CARD (Ghosh Stores) */
.store-activity-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  margin-top: 8px;
}

.store-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.store-shop-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.2;
}

.store-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.store-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(31, 145, 88, 0.2);
  animation: pulse-green 2s infinite ease-in-out;
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.store-merchant-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-amber-dark, #D97706);
  flex-shrink: 0;
}

.store-activity-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.store-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.store-stat-box {
  background: #F8FAF9;
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: left;
}

.store-stat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.store-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.store-stat-value.stat-enquiries {
  color: var(--brand-orange);
}

.store-stat-value.stat-orders {
  color: var(--brand-green);
}

/* Bottom Catalogue Bar inside Card */
.store-catalogue-bar {
  background: #FFFDF9;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.store-catalogue-info {
  display: flex;
  flex-direction: column;
}

.store-product-count {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.store-product-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-add-product-mini {
  background: var(--brand-green);
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-add-product-mini:hover {
  background: var(--brand-green-hover);
  transform: scale(1.02);
}
