/* ==========================================================================
   LUMEN ARCH™ - Main Style Aggregator & Micro-interactions
   ========================================================================== */

@import url('variables.css');
@import url('reset.css');
@import url('layout.css');
@import url('components.css');

/* Micro-animations & Global Polish */

/* Reveal on Scroll Animation Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay Helpers */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* Glowing Border Hover Effect */
.glow-on-hover {
  position: relative;
}

.glow-on-hover::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-primary), #8b5cf6, transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.glow-on-hover:hover::before {
  opacity: 1;
}

/* Lookbook Product Pin Details Box */
.lookbook-product-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  animation: modalPop 300ms ease;
}

.lookbook-product-media {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* Customer Review Card Styling */
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
  box-shadow: 0 10px 25px -5px var(--shadow-color);
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: var(--text-sm);
}

.reviewer-details {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.verified-badge {
  color: var(--accent-success);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
}

.reviewer-country {
  font-size: 11px;
  color: var(--text-muted);
}

.review-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-product-tag {
  font-size: var(--text-xs);
  color: var(--text-muted);
  border-top: 1px dashed var(--border-color);
  padding-top: var(--space-3);
}

/* Pulse Animation for Live Order Dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent-success);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDotAnim 1.8s infinite;
}

@keyframes pulseDotAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Custom Confetti Canvas */
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
