/* ==========================================================================
   LULULEMON GIFT CARD LANDING PAGE - MODERN 2026 STYLESHEET
   ========================================================================== */

:root {
  --color-primary: #ff2d55;
  --color-primary-gradient: linear-gradient(135deg, #ff2d55 0%, #ff4b4b 100%);
  --color-secondary: #ff4b4b;
  --color-accent: #007AFF;
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-gray: #777777;
  --color-gray-light: #f6f7f9;
  --color-star: #ffb400;
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --card-radius: 24px;
  --card-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 90px 16px; /* Bottom padding for sticky mobile CTA */
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Glowing Background Blobs */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.shape-1 {
  width: 320px;
  height: 320px;
  background: rgba(255, 45, 85, 0.12);
  top: -60px;
  right: -60px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 122, 255, 0.08);
  bottom: 5%;
  left: -80px;
}

/* Top Progress Bar */
.top-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.top-progress-bar {
  height: 100%;
  background: var(--color-primary-gradient);
  box-shadow: 0 0 12px rgba(255, 45, 85, 0.8);
  transition: width 0.4s ease;
}

/* Main Container */
.main-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* REWARD CARD */
.reward-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
}

/* Logo Box */
.card-logo-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.lululemon-logo {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(255, 45, 85, 0.3);
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  color: var(--color-text);
}

/* Title */
.card-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--color-text);
  margin-bottom: 16px;
}

.highlight-text {
  color: var(--color-primary);
  display: inline-block;
}

/* Rating Box */
.rating-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  background: var(--color-gray-light);
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.stars {
  color: var(--color-star);
  font-size: 0.875rem;
  display: flex;
  gap: 2px;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--color-gray);
}

.rating-text strong {
  color: var(--color-text);
}

/* Card Divider */
.card-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 22px 0;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  padding: 0 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(52, 199, 89, 0.12);
  color: #34c759;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Live Stats Box (Visitors Only) */
.live-stats-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-item i {
  color: var(--color-primary);
  font-size: 1rem;
}

.stat-item strong {
  color: var(--color-primary);
  font-weight: 800;
}

/* CTA Wrapper & Buttons */
.cta-wrapper {
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  border-radius: 50px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--color-primary-gradient);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 45, 85, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 45, 85, 0.5);
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Pulse Animation */
.pulse-btn {
  animation: pulse-glow 2.2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 45, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 85, 0);
  }
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-gray);
  font-weight: 600;
}

.security-badge i {
  color: #34c759;
}

/* STICKY BOTTOM BAR */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  z-index: 990;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.sticky-inner {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-sticky {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 360px) {
  .reward-card {
    padding: 24px 18px;
  }

  .card-title {
    font-size: 1.8rem;
  }

  .live-stats-box {
    font-size: 0.825rem;
    padding: 12px 10px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}
