/* ============================================
   Lumen Draft - Custom Styles
   Industrial Theme with Bootstrap 5
   ============================================ */

/* CSS Custom Properties (Variables)
   ========================================== */
:root, [data-bs-theme="dark"] {
  /* Brand Colors - Premium Dark Theme */
  --lumen-gold: #F6A84B;
  --lumen-gold-hover: #ffb861;
  --lumen-bg-dark: #121212;
  --lumen-surface: #1C1C1C;
  --lumen-surface-hover: #2A2A2A;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-light-gray: #E0E0E0;
  --color-border: #333333;

  /* Typography */
  --font-family-base: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-family-heading: 'Montserrat', sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-base: 1.6;

  /* Spacing (8px baseline grid) */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;

  /* Shadows (Dark Mode Adjusted) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.25s ease-in-out;
  --transition-slow: 0.35s ease-in-out;

  /* Layout */
  --max-width-container: 1200px;
  --header-height: 70px;
  
  /* Semantic Color Tokens */
  --color-industrial-blue: #3B7DD8;
  --color-charcoal: #1E1E1E;
  --color-off-white: var(--lumen-surface);
  --color-success-green: #06A77D;
  --color-warning-amber: #F2A65A;
  --color-danger-red: #CE2029;
  --color-steel-gray: #6B7280;

  /* Bootstrap Overrides */
  --bs-body-bg: var(--lumen-bg-dark);
  --bs-body-color: var(--color-light-gray);
  --bs-primary: var(--lumen-gold);
  --bs-link-color: var(--lumen-gold);
  --bs-link-hover-color: var(--lumen-gold-hover);
}

/* Base Styles & Typography
   ========================================== */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-light-gray);
  background-color: var(--lumen-bg-dark);
  margin-bottom: 60px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

/* Accessibility: Improve contrast for muted text on true dark */
.text-muted {
  color: #A0A0A0 !important;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: var(--font-weight-semibold);
}

h5 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: var(--font-weight-semibold);
}

h6 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--font-weight-semibold);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--lumen-gold);
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover {
  color: var(--lumen-gold-hover);
  text-decoration: none;
}

/* Layout Components
   ========================================== */

/* Header / Navigation */
.site-header {
  background-color: var(--lumen-bg-dark);
  padding: 10px 0 0;
  border-bottom: 1px solid var(--color-border);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-heading);
  color: var(--color-white) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar-brand:hover {
  color: var(--lumen-gold) !important;
}

.navbar-logo {
  height: 48px;
  width: auto;
}

/* Navigation bar - fluid styling */
.navbar {
  background-color: transparent !important;
  border: none;
  margin-bottom: 0;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-link {
  color: var(--color-light-gray) !important;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px !important;
  margin: 0;
  transition: color var(--transition-base);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--lumen-gold) !important;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background-color: var(--lumen-surface);
  color: var(--color-light-gray);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  margin-top: 0;
  border-top: 1px solid var(--color-border);
}

.site-footer h5 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
}

.site-footer a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-brand {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-lg);
  text-align: center;
  font-size: 0.875rem;
}

.footer-dcc-logo {
  max-width: 200px;
  height: auto;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-dcc-logo:hover {
  opacity: 1;
}

/* Buttons
   ========================================== */
.btn {
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  font-family: var(--font-family-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-gold, .btn-primary {
  background-color: var(--lumen-gold) !important;
  border-color: var(--lumen-gold) !important;
  color: #000000 !important;
}

.btn-gold:hover, .btn-primary:hover {
  background-color: var(--lumen-gold-hover) !important;
  border-color: var(--lumen-gold-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(246, 168, 75, 0.4);
}

.btn-outline-gold {
  color: var(--lumen-gold);
  border-color: var(--lumen-gold);
  background-color: transparent;
}

.btn-outline-gold:hover {
  background-color: var(--lumen-gold);
  color: #000000;
  transform: translateY(-1px);
}

.btn:hover,
.btn:focus {
  text-decoration: none;
}

/* Base Form Control Updates */
.form-control, .form-select {
    background-color: var(--lumen-surface) !important;
    border-color: var(--color-border) !important;
    color: var(--color-white) !important;
}

/* Cards
   ========================================== */
.card {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  background-color: var(--lumen-surface);
  transition: box-shadow var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-header {
  background-color: var(--lumen-surface-hover);
  border-bottom: 1px solid var(--color-border);
  font-weight: var(--font-weight-semibold);
  color: var(--color-light-gray);
  padding: var(--spacing-sm) var(--spacing-md);
}

.card-body {
  padding: var(--spacing-md);
}

.card-footer {
  background-color: var(--lumen-surface-hover);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-sm) var(--spacing-md);
}

/* Forms
   ========================================== */
/* Forms
   ========================================== */
.form-label {
  font-weight: var(--font-weight-medium);
  color: var(--color-light-gray);
  margin-bottom: var(--spacing-xs);
}

.form-control,
.form-select {
  background-color: var(--lumen-surface) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--border-radius-sm);
  padding: 0.625rem 0.75rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--lumen-gold) !important;
  box-shadow: 0 0 0 0.15rem rgba(246, 168, 75, 0.25) !important;
  outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--color-danger-red) !important;
}

.invalid-feedback {
  color: var(--color-danger-red);
}

/* Tables
   ========================================== */
.table {
  background-color: transparent;
  --bs-table-bg: transparent;
}

.table thead th {
  background-color: var(--lumen-surface-hover);
  color: var(--color-light-gray);
  font-weight: var(--font-weight-semibold);
  border-bottom: 2px solid var(--color-border);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.03);
}

.table-hover tbody tr:hover {
  background-color: rgba(246, 168, 75, 0.05);
}

/* Badges
   ========================================== */
.badge {
  font-weight: var(--font-weight-medium);
  padding: 0.375rem 0.75rem;
  border-radius: var(--border-radius-sm);
}

.badge-primary {
  background-color: var(--color-industrial-blue);
}

.badge-success {
  background-color: var(--color-success-green);
}

.badge-warning {
  background-color: var(--color-warning-amber);
}

.badge-danger {
  background-color: var(--color-danger-red);
}

/* Alerts
   ========================================== */
.alert {
  border: none;
  border-left: 4px solid;
  border-radius: var(--border-radius-sm);
}

.alert-success {
  background-color: rgba(6, 167, 125, 0.1);
  border-left-color: var(--color-success-green);
  color: #86efac;
}

.alert-warning {
  background-color: rgba(242, 166, 90, 0.1);
  border-left-color: var(--color-warning-amber);
  color: #fbbf24;
}

.alert-danger {
  background-color: rgba(206, 32, 41, 0.1);
  border-left-color: var(--color-danger-red);
  color: #f87171;
}

.alert-info {
  background-color: rgba(59, 125, 216, 0.1);
  border-left-color: var(--color-industrial-blue);
  color: #60a5fa;
}

/* Bootstrap Utility Overrides */
.bg-danger {
  background-color: var(--color-danger-red) !important;
}

.text-danger {
  color: var(--color-danger-red) !important;
}

.border-danger {
  border-color: var(--color-danger-red) !important;
}

/* Utility Classes
   ========================================== */
.text-industrial {
  color: var(--color-industrial-blue);
}

.bg-industrial {
  background-color: var(--color-industrial-blue);
  color: var(--color-white);
}

.text-charcoal {
  color: var(--color-charcoal);
}

.bg-off-white {
  background-color: var(--color-off-white);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.section-padding-lg {
  padding: var(--spacing-xxl) 0;
}

/* Focus Styles (Accessibility) */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.25);
  outline: none;
}

/* Responsive Utilities
   ========================================== */
@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .section-padding {
    padding: var(--spacing-lg) 0;
  }

  .section-padding-lg {
    padding: var(--spacing-xl) 0;
  }
}

/* Page-Specific Styles
   ========================================== */

/* Home Page */
.hero-section {
  background: radial-gradient(ellipse at center, var(--lumen-surface-hover) 0%, var(--lumen-bg-dark) 70%);
  border-bottom: 1px solid var(--color-border);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-section h1,
.hero-section .lead {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Utility helpers for layouts used across pages */
.hero-row {
  min-height: 400px;
  /* keeps layout consistent with original design */
}

.product-image-center {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-large {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-sm {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-qty {
  max-width: 120px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.product-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-img-hover {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img-hover {
  transform: scale(1.08);
}

.product-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-image-placeholder {
  background-color: var(--color-light-gray);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-steel-gray);
  font-size: 1.25rem;
  border-radius: var(--border-radius-sm);
}

.product-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-industrial-blue);
}

.stock-level {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
}

.stock-level-in-stock {
  color: var(--color-success-green);
}

.stock-level-low {
  color: var(--color-warning-amber);
}

/* Cart Page */
.cart-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-md) 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-summary {
  background-color: var(--lumen-surface);
  border: 1px solid var(--color-border);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-sm);
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

/* Checkout Page */
.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.checkout-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: var(--spacing-sm);
}

.checkout-step::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
  z-index: -1;
}

.checkout-step:first-child::before {
  display: none;
}

.checkout-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-light-gray);
  color: var(--color-steel-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xs);
}

.checkout-step.active .checkout-step-number {
  background-color: var(--color-industrial-blue);
  color: var(--color-white);
}

.checkout-step.completed .checkout-step-number {
  background-color: var(--color-success-green);
  color: var(--color-white);
}

/* Admin Pages */
.admin-header {
  background-color: var(--lumen-surface-hover);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--spacing-lg);
}

/* Admin Layout - Sidebar + Content */
.admin-body {
  background-color: var(--lumen-bg-dark);
  margin-bottom: 0;
}

/* Mobile top bar */
.admin-topbar {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.admin-hamburger {
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
}

.admin-hamburger:hover,
.admin-hamburger:focus {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.admin-topbar-title {
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  font-size: 1rem;
}

/* Admin wrapper: sidebar + main side-by-side on desktop */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar styles */
.admin-sidebar {
  width: 240px;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* On mobile the offcanvas-md takes over, but on desktop we keep our layout */
@media (min-width: 768px) {
  .admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
  }
}

.admin-sidebar-brand {
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
}

.admin-sidebar-brand img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.admin-sidebar-label {
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xs);
}

.admin-nav {
  padding: 0 var(--spacing-xs);
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem var(--spacing-sm);
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  margin-bottom: 2px;
}

.admin-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-decoration: none;
}

.admin-nav-link.active {
  background-color: var(--color-industrial-blue);
  color: var(--color-white);
}

.admin-nav-link i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.admin-sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xs);
}

/* Main content area */
.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-desktop-header {
  background-color: var(--lumen-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem var(--spacing-md);
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.admin-content-area {
  padding: var(--spacing-lg);
  flex: 1;
}

@media (max-width: 767.98px) {
  .admin-content-area {
    padding: var(--spacing-sm);
  }
}

/* Offcanvas dark theme for admin sidebar */
#adminSidebar.offcanvas,
#adminSidebar.offcanvas-md {
  --bs-offcanvas-bg: var(--color-charcoal);
  --bs-offcanvas-color: var(--color-white);
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}

.status-pending {
  background-color: rgba(242, 166, 90, 0.2);
  color: var(--color-warning-amber);
}

.status-paid {
  background-color: rgba(6, 167, 125, 0.2);
  color: var(--color-success-green);
}

.status-shipped {
  background-color: rgba(59, 125, 216, 0.2);
  color: var(--color-industrial-blue);
}

/* ============================================
   Quote Request Page
   ============================================ */
.quote-confirm-icon {
  font-size: 4rem;
  color: var(--lumen-gold);
}

.quote-description {
  white-space: pre-wrap;
}

/* Portal Pages */
.portal-hero {
    background: linear-gradient(135deg, var(--lumen-surface-hover) 0%, var(--lumen-bg-dark) 100%);
    color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid var(--color-border);
}

.portal-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portal-hero p {
    opacity: 0.85;
    font-size: 1.1rem;
}

.portal-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.portal-empty {
    text-align: center;
    padding: 3rem;
    background: var(--lumen-surface);
    border-radius: var(--border-radius-md);
    color: var(--color-light-gray);
    border: 1px solid var(--color-border);
}

/* Subscription Pages */
.subscription-card {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: var(--lumen-surface);
}

.subscription-status-badge {
    display: inline-block;
    padding: 0.25em 0.75em;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subscription-status-badge.active   { background: rgba(6, 167, 125, 0.2); color: #86efac; }
.subscription-status-badge.paused   { background: rgba(242, 166, 90, 0.2); color: #fbbf24; }
.subscription-status-badge.cancelled { background: rgba(206, 32, 41, 0.2); color: #f87171; }

.sub-frequency-select {
    min-width: 180px;
}

/* Order Tracking */
.tracking-info {
    background: var(--lumen-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

/* Notification Settings */
.notif-settings-card {
    background: var(--lumen-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    max-width: 600px;
}

.notif-toggle-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
}

.notif-toggle-row:last-of-type {
    border-bottom: none;
}

.notif-toggle-row input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.notif-toggle-row .notif-label {
    font-weight: 600;
    color: var(--color-light-gray);
    margin-bottom: 0.15rem;
}

.notif-toggle-row .notif-desc {
    font-size: 0.875rem;
    color: #A0A0A0;
}

/* ============================================
   Homepage Helpers
   ============================================ */
.hero-title { text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.hero-title-accent { color: var(--lumen-gold); }
.hero-lead { max-width: 700px; font-size: 1.1rem; line-height: 1.8; }

.icon-gold-lg {
    color: var(--lumen-gold);
    font-size: 2.5rem;
}

.text-tracked { letter-spacing: 0.1em; }
.text-tracked-sm { letter-spacing: 0.05em; }
.lh-relaxed { line-height: 1.7; }
.lh-loose { line-height: 1.8; }

.featured-product-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

.product-img-cover {
    object-fit: cover;
    opacity: 0.8;
}

.product-placeholder-icon {
    font-size: 5rem;
    opacity: 0.1;
}

.product-overlay-bg {
    background: rgba(0, 0, 0, 0.6);
}

.product-card-title {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.product-card-price {
    letter-spacing: 0.1em;
    color: var(--color-light-gray) !important;
}

.bg-lumen-surface { background-color: var(--lumen-surface); }
