/* AuroraCommerce - Organic Luxury Theme
   A premium artisanal marketplace aesthetic */

/* ============================================
   FONTS - Distinctive Typography
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ============================================
   CSS VARIABLES - Light Theme
   ============================================ */
:root {
  /* Primary Palette - Warm Earth Tones */
  --aurora-cream: #FBF8F3;
  --aurora-sand: #E8E0D5;
  --aurora-terracotta: #C67B5C;
  --aurora-rust: #A65D3F;
  --aurora-forest: #2D4A3E;
  --aurora-sage: #7A9E8E;
  --aurora-charcoal: #2C2C2C;
  --aurora-warm-black: #1A1A18;

  /* Accent Colors */
  --aurora-gold: #D4A853;
  --aurora-blush: #E8C4B8;
  --aurora-moss: #5C7A6B;

  /* Gradients */
  --aurora-gradient-warm: linear-gradient(135deg, #FBF8F3 0%, #E8E0D5 50%, #E8C4B8 100%);
  --aurora-gradient-earth: linear-gradient(180deg, #C67B5C 0%, #A65D3F 100%);
  --aurora-gradient-forest: linear-gradient(135deg, #2D4A3E 0%, #5C7A6B 100%);
  --aurora-gradient-hero: linear-gradient(160deg, #FBF8F3 0%, #E8E0D5 30%, #E8C4B8 60%, #C67B5C 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1400px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(44, 44, 44, 0.08);
  --shadow-medium: 0 8px 40px rgba(44, 44, 44, 0.12);
  --shadow-elevated: 0 20px 60px rgba(44, 44, 44, 0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Theme colors for Bootstrap */
  --bs-body-bg: var(--aurora-cream);
  --bs-body-color: var(--aurora-charcoal);
  --bs-link-color: var(--aurora-terracotta);
  --bs-link-hover-color: var(--aurora-rust);
}

/* ============================================
   DARK THEME
   ============================================ */
[data-bs-theme="dark"] {
  --aurora-cream: #1A1A18;
  --aurora-sand: #2C2C2C;
  --aurora-charcoal: #F5F2ED;
  --aurora-warm-black: #FBF8F3;

  --aurora-gradient-warm: linear-gradient(135deg, #1A1A18 0%, #2C2C2C 50%, #3D3530 100%);
  --aurora-gradient-hero: linear-gradient(160deg, #1A1A18 0%, #2C2C2C 30%, #3D3530 60%, #4A3328 100%);

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);

  --bs-body-bg: #1A1A18;
  --bs-body-color: #F5F2ED;
}

[data-bs-theme="dark"] .bg-light {
  background-color: #2C2C2C !important;
}

[data-bs-theme="dark"] .text-dark {
  color: #F5F2ED !important;
}

[data-bs-theme="dark"] .card {
  background-color: #2C2C2C;
  border-color: #3D3530;
}

[data-bs-theme="dark"] .navbar {
  background-color: rgba(26, 26, 24, 0.95) !important;
}

[data-bs-theme="dark"] .offcanvas {
  background-color: #1A1A18;
}

[data-bs-theme="dark"] .dropdown-menu {
  background-color: #2C2C2C;
  border-color: #3D3530;
}

[data-bs-theme="dark"] .dropdown-item:hover {
  background-color: #3D3530;
}

[data-bs-theme="dark"] .modal-content {
  background-color: #2C2C2C;
}

[data-bs-theme="dark"] .table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
  background-color: #2C2C2C;
  border-color: #3D3530;
  color: #F5F2ED;
}

[data-bs-theme="dark"] .list-group-item {
  background-color: #2C2C2C;
  border-color: #3D3530;
}

[data-bs-theme="dark"] .breadcrumb {
  --bs-breadcrumb-divider-color: #7A9E8E;
}

[data-bs-theme="dark"] .aurora-blob {
  opacity: 0.15;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  background-color: var(--aurora-cream);
  color: var(--aurora-charcoal);
  overflow-x: hidden;
}

::selection {
  background-color: var(--aurora-terracotta);
  color: white;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-1 { font-size: clamp(3rem, 8vw, 6rem); }
.display-2 { font-size: clamp(2.5rem, 6vw, 5rem); }
.display-3 { font-size: clamp(2rem, 5vw, 4rem); }

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

.font-display {
  font-family: var(--font-display);
}

.text-terracotta { color: var(--aurora-terracotta) !important; }
.text-rust { color: var(--aurora-rust) !important; }
.text-forest { color: var(--aurora-forest) !important; }
.text-sage { color: var(--aurora-sage) !important; }
.text-gold { color: var(--aurora-gold) !important; }

.bg-cream { background-color: var(--aurora-cream) !important; }
.bg-sand { background-color: var(--aurora-sand) !important; }
.bg-terracotta { background-color: var(--aurora-terracotta) !important; }
.bg-forest { background-color: var(--aurora-forest) !important; }

/* ============================================
   ORGANIC BLOB SHAPES
   ============================================ */
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--aurora-blush);
  top: -200px;
  right: -200px;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--aurora-sage);
  bottom: -150px;
  left: -150px;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--aurora-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobPulse 15s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes blobPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-aurora {
  background-color: rgba(251, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar-aurora.scrolled {
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--aurora-charcoal) !important;
  letter-spacing: -0.03em;
}

.navbar-brand span {
  color: var(--aurora-terracotta);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--aurora-charcoal) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--aurora-terracotta);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 2rem);
}

.nav-link:hover {
  color: var(--aurora-terracotta) !important;
}

/* Theme Toggle Button */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--aurora-sand);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--aurora-charcoal);
}

.theme-toggle:hover {
  border-color: var(--aurora-terracotta);
  color: var(--aurora-terracotta);
}

.theme-toggle .bi-moon-fill { display: none; }
.theme-toggle .bi-sun-fill { display: block; }

[data-bs-theme="dark"] .theme-toggle .bi-moon-fill { display: block; }
[data-bs-theme="dark"] .theme-toggle .bi-sun-fill { display: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-aurora {
  background: var(--aurora-gradient-earth);
  color: white;
  border: none;
}

.btn-aurora:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: white;
}

.btn-aurora-outline {
  background: transparent;
  color: var(--aurora-terracotta);
  border: 2px solid var(--aurora-terracotta);
}

.btn-aurora-outline:hover {
  background: var(--aurora-terracotta);
  color: white;
}

.btn-aurora-dark {
  background: var(--aurora-charcoal);
  color: white;
  border: none;
}

.btn-aurora-dark:hover {
  background: var(--aurora-warm-black);
  color: white;
  transform: translateY(-2px);
}

.btn-aurora-forest {
  background: var(--aurora-gradient-forest);
  color: white;
  border: none;
}

.btn-aurora-forest:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: white;
}

/* ============================================
   CARDS
   ============================================ */
.card-aurora {
  background: white;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  overflow: hidden;
}

[data-bs-theme="dark"] .card-aurora {
  background: #2C2C2C;
}

.card-aurora:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.card-aurora .card-img-top {
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card-aurora:hover .card-img-top {
  transform: scale(1.05);
}

.card-aurora .card-body {
  padding: 1.75rem;
}

.card-aurora .card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Product Card */
.product-card {
  position: relative;
}

.product-card .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.product-card .product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
  z-index: 10;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
  color: var(--aurora-charcoal);
}

.product-action-btn:hover {
  background: var(--aurora-terracotta);
  color: white;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--aurora-terracotta);
}

.product-price-old {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-aurora {
  min-height: 100vh;
  background: var(--aurora-gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

/* Page Hero */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--aurora-gradient-warm);
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.75;
  max-width: 600px;
}

/* ============================================
   FEATURE BLOCKS
   ============================================ */
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--aurora-gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--aurora-terracotta);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-block:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--aurora-gradient-earth);
  color: white;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

[data-bs-theme="dark"] .testimonial-card {
  background: #2C2C2C;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--aurora-blush);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--aurora-blush);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--aurora-sage);
}

/* ============================================
   STATS
   ============================================ */
.stat-block {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--aurora-terracotta);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.accordion-aurora .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 1rem;
}

.accordion-aurora .accordion-button {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-soft);
  color: var(--aurora-charcoal);
}

[data-bs-theme="dark"] .accordion-aurora .accordion-button {
  background: #2C2C2C;
  color: #F5F2ED;
}

.accordion-aurora .accordion-button:not(.collapsed) {
  background: var(--aurora-forest);
  color: white;
  box-shadow: var(--shadow-medium);
}

.accordion-aurora .accordion-button:focus {
  box-shadow: var(--shadow-soft);
}

.accordion-aurora .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C67B5C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-aurora .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-aurora .accordion-body {
  padding: 1.5rem 2rem;
  background: var(--aurora-sand);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -0.5rem;
}

[data-bs-theme="dark"] .accordion-aurora .accordion-body {
  background: #3D3530;
}

/* ============================================
   TABLES
   ============================================ */
.table-aurora {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table-aurora thead {
  background: var(--aurora-forest);
  color: white;
}

.table-aurora thead th {
  font-family: var(--font-display);
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  border: none;
}

.table-aurora tbody td {
  padding: 1rem 1.5rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--aurora-sand);
}

.table-aurora tbody tr:hover {
  background-color: rgba(200, 123, 92, 0.05);
}

/* ============================================
   FORMS
   ============================================ */
.form-control-aurora {
  border: 2px solid var(--aurora-sand);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: white;
}

[data-bs-theme="dark"] .form-control-aurora {
  background: #2C2C2C;
  border-color: #3D3530;
  color: #F5F2ED;
}

.form-control-aurora:focus {
  border-color: var(--aurora-terracotta);
  box-shadow: 0 0 0 4px rgba(200, 123, 92, 0.15);
}

.form-label-aurora {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Floating Labels */
.form-floating-aurora .form-floating > label {
  font-family: var(--font-body);
  color: var(--aurora-sage);
}

.form-floating-aurora .form-floating > .form-control:focus ~ label {
  color: var(--aurora-terracotta);
}

/* Input Group */
.input-group-aurora {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.input-group-aurora .input-group-text {
  background: var(--aurora-sand);
  border: none;
  color: var(--aurora-sage);
}

.input-group-aurora .form-control {
  border: none;
}

.input-group-aurora .btn {
  border-radius: 0;
}

/* ============================================
   BADGES
   ============================================ */
.badge-aurora {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: var(--radius-xl);
}

.badge-terracotta {
  background-color: var(--aurora-terracotta);
  color: white;
}

.badge-forest {
  background-color: var(--aurora-forest);
  color: white;
}

.badge-gold {
  background-color: var(--aurora-gold);
  color: var(--aurora-charcoal);
}

.badge-sage {
  background-color: var(--aurora-sage);
  color: white;
}

.badge-outline {
  background: transparent;
  border: 1px solid currentColor;
}

/* ============================================
   ALERTS
   ============================================ */
.alert-aurora {
  border: none;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid;
}

.alert-aurora-success {
  background-color: rgba(122, 158, 142, 0.15);
  border-left-color: var(--aurora-sage);
  color: var(--aurora-forest);
}

.alert-aurora-warning {
  background-color: rgba(212, 168, 83, 0.15);
  border-left-color: var(--aurora-gold);
  color: #8B6914;
}

.alert-aurora-danger {
  background-color: rgba(200, 123, 92, 0.15);
  border-left-color: var(--aurora-rust);
  color: var(--aurora-rust);
}

.alert-aurora-info {
  background-color: rgba(45, 74, 62, 0.1);
  border-left-color: var(--aurora-forest);
  color: var(--aurora-forest);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-aurora .page-link {
  border: none;
  color: var(--aurora-charcoal);
  font-weight: 500;
  padding: 0.75rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.pagination-aurora .page-link:hover {
  background: var(--aurora-sand);
  color: var(--aurora-terracotta);
}

.pagination-aurora .page-item.active .page-link {
  background: var(--aurora-terracotta);
  color: white;
}

/* ============================================
   PROGRESS & SPINNERS
   ============================================ */
.progress-aurora {
  height: 10px;
  border-radius: var(--radius-xl);
  background: var(--aurora-sand);
  overflow: hidden;
}

.progress-aurora .progress-bar {
  background: var(--aurora-gradient-earth);
  border-radius: var(--radius-xl);
}

.spinner-aurora {
  color: var(--aurora-terracotta);
}

/* ============================================
   MODAL
   ============================================ */
.modal-aurora .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.modal-aurora .modal-header {
  background: var(--aurora-gradient-warm);
  border: none;
  padding: 1.5rem 2rem;
}

.modal-aurora .modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.modal-aurora .modal-body {
  padding: 2rem;
}

.modal-aurora .modal-footer {
  border: none;
  padding: 1rem 2rem 1.5rem;
}

.modal-aurora .btn-close {
  opacity: 0.5;
}

.modal-aurora .btn-close:hover {
  opacity: 1;
}

/* ============================================
   TOAST
   ============================================ */
.toast-aurora {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.toast-aurora .toast-header {
  background: var(--aurora-forest);
  color: white;
  border: none;
}

.toast-aurora .toast-body {
  padding: 1rem 1.25rem;
}

/* ============================================
   OFFCANVAS
   ============================================ */
.offcanvas-aurora {
  border: none !important;
}

.offcanvas-aurora .offcanvas-header {
  padding: 1.5rem 2rem;
  background: var(--aurora-gradient-warm);
}

.offcanvas-aurora .offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.offcanvas-aurora .offcanvas-body {
  padding: 2rem;
}

/* Mobile Nav */
.offcanvas-nav .nav-link {
  font-size: 1.25rem;
  padding: 1rem 0 !important;
  border-bottom: 1px solid var(--aurora-sand);
}

.offcanvas-nav .nav-link::after {
  display: none;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-aurora {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-aurora .breadcrumb-item {
  font-size: 0.9rem;
}

.breadcrumb-aurora .breadcrumb-item a {
  color: var(--aurora-sage);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb-aurora .breadcrumb-item a:hover {
  color: var(--aurora-terracotta);
}

.breadcrumb-aurora .breadcrumb-item.active {
  color: var(--aurora-charcoal);
}

/* ============================================
   LIST GROUP
   ============================================ */
.list-group-aurora .list-group-item {
  border: none;
  border-bottom: 1px solid var(--aurora-sand);
  padding: 1.25rem 1.5rem;
  transition: var(--transition-fast);
}

.list-group-aurora .list-group-item:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.list-group-aurora .list-group-item:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-bottom: none;
}

.list-group-aurora .list-group-item:hover {
  background: var(--aurora-sand);
}

.list-group-aurora .list-group-item.active {
  background: var(--aurora-terracotta);
  border-color: var(--aurora-terracotta);
}

/* ============================================
   TABS / PILLS
   ============================================ */
.nav-tabs-aurora {
  border: none;
  gap: 0.5rem;
}

.nav-tabs-aurora .nav-link {
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--aurora-charcoal);
  background: var(--aurora-sand);
  transition: var(--transition-fast);
}

.nav-tabs-aurora .nav-link:hover {
  background: var(--aurora-blush);
}

.nav-tabs-aurora .nav-link.active {
  background: var(--aurora-terracotta);
  color: white;
}

.nav-pills-aurora .nav-link {
  border-radius: var(--radius-xl);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  color: var(--aurora-charcoal);
}

.nav-pills-aurora .nav-link.active {
  background: var(--aurora-forest);
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel-aurora .carousel-indicators {
  bottom: 2rem;
}

.carousel-aurora .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  border: none;
}

.carousel-aurora .carousel-indicators button.active {
  opacity: 1;
  background: var(--aurora-terracotta);
}

.carousel-aurora .carousel-control-prev,
.carousel-aurora .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border-radius: 50%;
  opacity: 0.9;
  margin: 0 1rem;
}

.carousel-aurora .carousel-control-prev:hover,
.carousel-aurora .carousel-control-next:hover {
  opacity: 1;
  background: var(--aurora-terracotta);
}

.carousel-aurora .carousel-control-prev-icon,
.carousel-aurora .carousel-control-next-icon {
  filter: invert(0);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-aurora {
  background: var(--aurora-charcoal);
  color: white;
  padding: 5rem 0 2rem;
}

[data-bs-theme="dark"] .footer-aurora {
  background: #0D0D0C;
}

.footer-aurora h5 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-aurora a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-aurora a:hover {
  color: var(--aurora-terracotta);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--aurora-terracotta);
  color: white;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   SCROLLSPY SIDEBAR
   ============================================ */
.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-nav .nav-link {
  color: var(--aurora-charcoal);
  padding: 0.5rem 1rem;
  border-left: 3px solid transparent;
  font-size: 0.9rem;
}

.sidebar-nav .nav-link:hover {
  color: var(--aurora-terracotta);
  background: var(--aurora-sand);
}

.sidebar-nav .nav-link.active {
  color: var(--aurora-terracotta);
  border-left-color: var(--aurora-terracotta);
  background: rgba(200, 123, 92, 0.1);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

[data-bs-theme="dark"] .pricing-card {
  background: #2C2C2C;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-elevated);
}

.pricing-card.featured {
  background: var(--aurora-forest);
  color: white;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--aurora-gold);
  color: var(--aurora-charcoal);
  padding: 0.25rem 3rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.5rem;
  top: -1rem;
}

.pricing-period {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li i {
  color: var(--aurora-sage);
}

.pricing-card.featured .pricing-features li i {
  color: var(--aurora-gold);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

[data-bs-theme="dark"] .blog-card {
  background: #2C2C2C;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--aurora-sage);
  margin-bottom: 1rem;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--aurora-charcoal);
  text-decoration: none;
  transition: var(--transition-fast);
}

[data-bs-theme="dark"] .blog-card-title a {
  color: #F5F2ED;
}

.blog-card-title a:hover {
  color: var(--aurora-terracotta);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-info-card {
  background: var(--aurora-forest);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--aurora-gold);
  margin-top: 0.25rem;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aurora-gradient-warm);
  position: relative;
  overflow: hidden;
}

.error-number {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 700;
  color: var(--aurora-terracotta);
  opacity: 0.15;
  position: absolute;
  z-index: 0;
}

.error-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.error-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hover lift effect */
.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
  background: var(--aurora-gradient-earth);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-warm {
  background: var(--aurora-gradient-warm);
}

.bg-gradient-hero {
  background: var(--aurora-gradient-hero);
}

.overflow-hidden {
  overflow: hidden;
}

.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }

/* Image attribution */
.img-attribution {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .section {
    padding: 4rem 0;
  }

  .hero-aurora {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-image {
    margin-top: 3rem;
  }

  .stat-block {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .footer-aurora {
    padding: 3rem 0 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .testimonial-card {
    padding: 1.75rem;
  }
}

/* ============================================
   COMPONENT SHOWCASE SPECIFIC
   ============================================ */
.component-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--aurora-sand);
}

.component-section:last-child {
  border-bottom: none;
}

.component-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--aurora-terracotta);
  display: inline-block;
}

.demo-box {
  background: var(--aurora-sand);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .demo-box {
  background: #2C2C2C;
}
