﻿/* ========================================
   CSS VARIABLES & CUSTOM PROPERTIES
   ======================================== */

:root {
  /* Primary Colors */
  --primary-color: #ff8c42;
  --primary-dark: #e67e22;
  --primary-light: #ffa726;
  
  /* Secondary Colors */
  --secondary-color: #2c3e50;
  --secondary-dark: #34495e;
  
  /* Background Colors */
  --bg-primary: #fafbfc;
  --bg-secondary: #f8f9fa;
  
  /* Text Colors */
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --text-white: #ffffff;
  
  /* Border Colors */
  --border-color: #e9ecef;
  
  /* Shadow Variables */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.15);
  
  /* Gradient Variables */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-hero: linear-gradient(135deg, #f4f1eb 0%, #fff5f0 50%, var(--primary-color) 100%);
  --gradient-success: linear-gradient(135deg, #28a745, #20c997);
  --gradient-danger: linear-gradient(135deg, #dc3545, #e74c3c);
  --gradient-warning: linear-gradient(135deg, #ffc107, #fd7e14);
  --gradient-info: linear-gradient(135deg, #17a2b8, #6f42c1);
  
  /* Spacing Variables */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* Border Radius Variables */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-xxl: 25px;
  
  /* Font Variables */
  --font-family-primary: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Font Weight Variables */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Transition Variables */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Z-Index Variables */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-live-search: 10000;
}
/* ========================================
   BASE STYLES & RESET
   ======================================== */

/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins and paddings */
* {
  margin: 0;
  padding: 0;
}

/* Set base font family */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--spacing-md);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Form elements */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--spacing-sm));
}

.col {
  flex: 1;
  padding: 0 var(--spacing-sm);
}

/* Responsive grid columns */
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Spacing utilities */
.mb-4 { margin-bottom: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xxl); }
.py-5 { padding-top: var(--spacing-xxl); padding-bottom: var(--spacing-xxl); }
/* ========================================
   PROFESSIONAL CLEAN NAVBAR
   ======================================== */

.pro-navbar {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  z-index: var(--z-sticky);
  transition: all 0.3s ease;
}

.navbar-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.brand-logo img {
  height: 45px;
  transition: all 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

/* Central Search Bar */
.central-search-wrapper {
  max-width: 700px;
  justify-self: center;
  width: 100%;
}

.central-search-form {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 50px;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.central-search-form:focus-within {
  background: white;
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.2);
  transform: translateY(-2px);
}

.search-icon-left {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.central-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem;
}

.central-search-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.search-clear:hover {
  color: #dc3545;
  transform: rotate(90deg);
}

.search-submit-btn {
  background: var(--gradient-primary);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
  font-size: 1.1rem;
}

.search-submit-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(255, 140, 66, 0.4);
}

/* Global Search Results - Outside Navbar */
.global-search-results {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: calc(var(--z-sticky) - 1);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  animation: slideDown 0.3s ease;
  border-bottom: 3px solid var(--primary-color);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-results-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 0;
}

.search-loading {
  padding: 2rem;
  text-align: center;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
}

.live-search-items {
  padding: 0.5rem;
}

.live-search-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.live-search-item:hover {
  background: rgba(255, 140, 66, 0.05);
  border-color: rgba(255, 140, 66, 0.2);
  transform: translateX(5px);
}

.live-search-image {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 10px;
  background: #f8f9fa;
  padding: 0.5rem;
  border: 1px solid #e9ecef;
}

.live-search-details {
  flex: 1;
  min-width: 0;
}

.live-search-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-search-title mark {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.live-search-meta {
  font-size: 0.85rem;
  color: #6c757d;
}

.live-search-brand {
  color: #667eea;
  font-weight: 600;
}

.live-search-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  white-space: nowrap;
}

.live-search-footer {
  border-top: 2px solid #f8f9fa;
  padding: 0.75rem;
  margin-top: 0.5rem;
}

.live-search-view-all {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.live-search-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
  color: white;
}

.live-search-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: #6c757d;
}

/* Right Actions */
.navbar-right-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f8f9fa;
  border: none;
  color: #2c3e50;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.counter-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  border: 2px solid white;
}

/* Menu Dropdown */
.menu-dropdown {
  position: relative;
}

.menu-trigger {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 0.6rem 1.25rem;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.menu-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 140, 66, 0.4);
}

.menu-trigger i {
  font-size: 1.3rem;
}

.menu-dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-section {
  padding: 0.75rem;
  border-bottom: 1px solid #f8f9fa;
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #6c757d;
  padding: 0.5rem 1rem;
  letter-spacing: 0.5px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: none;
  width: 100%;
  cursor: pointer;
}

.menu-item:hover {
  background: rgba(255, 140, 66, 0.08);
  border-color: rgba(255, 140, 66, 0.2);
  color: var(--primary-color);
  transform: translateX(5px);
}

.menu-item.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.menu-item i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.menu-badge {
  margin-left: auto;
  background: var(--primary-color);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Scroll Effect */
.pro-navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.pro-navbar.scrolled .brand-logo img {
  height: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar-wrapper {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }
  
  .central-search-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    grid-template-columns: auto auto;
    gap: 1rem;
  }
  
  .central-search-wrapper {
    grid-column: 1 / -1;
    order: 3;
  }
  
  .brand-logo {
    order: 1;
  }
  
  .navbar-right-actions {
    order: 2;
  }
  
  .menu-dropdown-content {
    right: 0;
    min-width: 280px;
  }
}

@media (max-width: 576px) {
  .pro-navbar {
    padding: 0.6rem 0;
  }
  
  .brand-logo img {
    height: 38px;
  }
  
  .action-icon {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }
  
  .menu-trigger {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .menu-trigger span {
    display: none;
  }
  
  .central-search-input {
    font-size: 0.9rem;
  }
  
  .central-search-input::placeholder {
    font-size: 0.85rem;
  }
}

/* Hide old navbar */
.navbar.navbar-expand-lg,
.modern-navbar {
  display: none !important;
}
/* ========================================
   ULTRA MODERN HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 4rem 0;
}

/* Hero Background Layers */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float1 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
  animation: float2 15s ease-in-out infinite;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 30px) rotate(180deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -40px) rotate(-180deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: glow 3s ease-in-out infinite;
}

.hero-badge i {
  color: #ffd700;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  }
}

/* Hero Title */
.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-gradient-text {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

/* Hero Stats Pills */
.hero-stats-inline {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-pill i {
  font-size: 1.2rem;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: white;
  color: #667eea;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.btn-hero-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #667eea;
  background: #ffd700;
}

.btn-hero-outline {
  background: transparent;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 55vh;
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats-inline {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stat-pill {
    width: fit-content;
    margin: 0 auto;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }
  
  .shape-1,
  .shape-2,
  .shape-3 {
    opacity: 0.5;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 50vh;
    padding: 2.5rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }
  
  .stat-pill {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
  
  .btn-hero-primary,
  .btn-hero-outline {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}
/* ========================================
   BREADCRUMBS STYLES
   ======================================== */

/* Modern Centered Breadcrumbs */
.breadcrumb-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  margin: 0 auto 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: fit-content;
  list-style: none;
}

.breadcrumb-modern .breadcrumb-item {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.breadcrumb-modern .breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
}

.breadcrumb-modern .breadcrumb-item a:hover {
  color: var(--primary-color);
  background: rgba(255, 140, 66, 0.1);
}

.breadcrumb-modern .breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 700;
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0.75rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-modern {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .breadcrumb-modern .breadcrumb-item {
    font-size: 0.85rem;
  }
  
  .breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   BUTTON STYLES
   ======================================== */

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

/* Authentication Buttons */
.auth-buttons {
  position: relative;
}

.btn-login, .btn-register {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-bounce);
  overflow: hidden;
  min-width: 140px;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.btn-login {
  background: var(--gradient-secondary);
  border: 2px solid var(--secondary-dark);
  color: var(--text-white);
  position: relative;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-login:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 50%, var(--secondary-dark) 100%);
  border-color: var(--secondary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4), 0 0 20px rgba(44, 62, 80, 0.2);
  color: var(--text-white);
}

.btn-login:hover::before {
  left: 100%;
}

.btn-login i {
  transition: transform var(--transition-normal);
}

.btn-login:hover i {
  transform: translateX(3px);
}

.btn-register {
  background: var(--gradient-primary);
  color: var(--text-white);
  border: 2px solid transparent;
  position: relative;
}

.btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff6b35 0%, var(--primary-color) 50%, #ffa726 100%);
  border-radius: 30px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.btn-register:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 20px rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.btn-register:hover::before {
  opacity: 1;
}

.btn-register i {
  transition: transform var(--transition-normal);
}

.btn-register:hover i {
  transform: scale(1.1) rotate(5deg);
}

.btn-logout {
  background: var(--gradient-danger);
  color: var(--text-white);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-logout::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-logout:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4), 0 0 20px rgba(220, 53, 69, 0.3);
  color: var(--text-white);
}

.btn-logout:hover::before {
  left: 100%;
}

.btn-logout i {
  transition: transform var(--transition-normal);
  position: relative;
  z-index: 1;
}

.btn-logout:hover i {
  transform: translateX(-3px) rotate(-5deg);
}

.btn-logout span {
  position: relative;
  z-index: 1;
  transition: all var(--transition-normal);
}

.btn-logout:hover span {
  transform: translateX(-2px);
}

/* Custom Primary Button */
.btn-primary-custom {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-weight: var(--font-weight-bold);
  color: var(--text-white);
  transition: all var(--transition-normal);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

/* Button Text Animation */
.btn-login span, .btn-register span {
  position: relative;
  z-index: 1;
  transition: all var(--transition-normal);
}

.btn-login:hover span {
  transform: translateX(2px);
}

.btn-register:hover span {
  transform: translateX(2px);
}

/* Focus States for Accessibility */
.btn-login:focus, .btn-register:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.3);
}

/* Active States */
.btn-login:active, .btn-register:active {
  transform: translateY(-1px) scale(1.02);
}

/* Responsive Button Styles */
@media (max-width: 991.98px) {
  .auth-buttons {
    flex-direction: column;
    gap: var(--spacing-md) !important;
    margin-top: var(--spacing-lg);
    width: 100%;
    padding: 0 var(--spacing-md);
  }
  
  .btn-login, .btn-register {
    width: 100%;
    padding: 14px 28px;
    font-size: var(--font-size-base);
    min-width: auto;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .auth-buttons {
    padding: 0 var(--spacing-sm);
    gap: 0.8rem !important;
  }
  
  .btn-login, .btn-register {
    padding: 12px 24px;
    font-size: var(--font-size-sm);
    border-radius: 25px;
  }
}
/* ========================================
   CARD COMPONENT STYLES
   ======================================== */

/* Base Card Styles */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 14px;
  transition: all var(--transition-normal);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-xl) 0;
}

.stats-card {
  background: var(--text-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.1);
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stats-number {
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Categories Section */
.categories-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: var(--font-weight-normal);
}

.category-card {
  background: var(--text-white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.category-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: var(--text-white);
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover .category-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 140, 66, 0.5);
}

.category-name {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.category-count {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  background: rgba(255, 140, 66, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 0;
}

.product-card {
  background: var(--text-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.1);
  transition: all var(--transition-normal);
  overflow: hidden;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.product-image {
  height: 180px;
  object-fit: contain;
  width: 100%;
  padding: var(--spacing-md);
  transition: all var(--transition-normal);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-body {
  padding: var(--spacing-lg);
}

.product-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  min-height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-brand {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  font-weight: var(--font-weight-semibold);
  font-size: 0.7rem;
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

.product-price {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-offers {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: var(--spacing-md);
}

.product-btn {
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-weight: var(--font-weight-semibold);
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3), 0 2px 6px rgba(255, 140, 66, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: 100%;
  text-align: center;
}

.product-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4), 0 3px 10px rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.product-btn:hover::before {
  left: 100%;
}

/* Price Tag */
.price-tag {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: var(--font-weight-bold);
  font-size: 1.2rem;
}

/* Offer Badge */
.offer-badge {
  background: var(--gradient-success);
  color: var(--text-white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

/* Responsive Card Styles */
@media (max-width: 768px) {
  .stats-card {
    padding: var(--spacing-md) 0.8rem;
  }
  
  .stats-number {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .category-card {
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .category-name {
    font-size: var(--font-size-base);
  }
  
  .category-count {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }
  
  .product-body {
    padding: var(--spacing-md);
  }
  
  .product-image {
    height: 150px;
    padding: 0.8rem;
  }
  
  /* Stats Section - 2 columns on mobile */
  .stats-section .row .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  /* Categories Section - 2 columns on mobile */
  .categories-section .row .col-lg-3,
  .categories-section .row .col-md-4,
  .categories-section .row .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  /* Products Section - 2 columns on mobile */
  .products-section .row .col-lg-3,
  .products-section .row .col-lg-4,
  .products-section .row .col-md-4,
  .products-section .row .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* ========================================
   MODAL STYLES
   ======================================== */

/* Modal Authentication Styles */
.auth-modal {
  border: none;
  border-radius: var(--radius-xxl);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-modal-header {
  background: var(--gradient-primary);
  border: none;
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-modal-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex: 1;
}

.auth-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

.auth-modal-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-white);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.auth-modal-title {
  color: var(--text-white);
  position: relative;
  z-index: 1;
  flex: 1;
}

.auth-modal-title .modal-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.auth-modal-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.3;
}

.auth-modal-body {
  padding: var(--spacing-lg);
}

.auth-modal-footer {
  background: #f8f9fa;
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: center;
}

/* Form Styles */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  font-weight: var(--font-weight-semibold);
  color: #333;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1rem;
  font-size: var(--font-size-sm);
  transition: all var(--transition-normal);
  background: #f8f9fa;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.15);
  background: var(--text-white);
  transform: translateY(-1px);
}

.input-group {
  position: relative;
}

.input-group .form-control {
  padding-right: 3rem;
}

.input-group-text {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  z-index: 3;
}

/* Auth Submit Button */
.btn-auth-submit {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.875rem 2rem;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  color: var(--text-white);
  width: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-auth-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
  color: var(--text-white);
}

.btn-auth-submit:hover::before {
  left: 100%;
}

/* Auth Divider */
.auth-divider {
  text-align: center;
  margin: var(--spacing-lg) 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.auth-divider span {
  background: var(--text-white);
  padding: 0 var(--spacing-md);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

/* Social Auth */
.social-auth {
  display: flex;
  gap: var(--spacing-md);
}

.btn-social {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--text-white);
  color: var(--text-muted);
  text-decoration: none;
  text-align: center;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-normal);
}

.btn-social:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Auth Links */
.auth-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-normal);
}

.auth-link:hover {
  color: var(--primary-dark);
}

/* Password Strength */
.password-strength {
  margin-top: var(--spacing-sm);
}

.strength-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
}

.strength-fill {
  height: 100%;
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.strength-weak { background: #dc3545; width: 25%; }
.strength-fair { background: #ffc107; width: 50%; }
.strength-good { background: #17a2b8; width: 75%; }
.strength-strong { background: #28a745; width: 100%; }

.strength-text {
  font-size: 0.85rem;
  font-weight: var(--font-weight-semibold);
}

.strength-weak-text { color: #dc3545; }
.strength-fair-text { color: #ffc107; }
.strength-good-text { color: #17a2b8; }
.strength-strong-text { color: #28a745; }

/* Form Check */
.form-check {
  margin-bottom: var(--spacing-md);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

.form-check-label {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

/* Close Button */
.btn-close {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 1;
  position: relative;
  z-index: 2;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
  transition: all var(--transition-normal);
  padding: 0;
}

.btn-close i {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1) rotate(90deg);
  color: #000;
}

.btn-close:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* White close button variant */
.btn-close-white {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-close-white:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: scale(1.1) rotate(90deg);
}

/* Animations */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
  .auth-modal-body {
    padding: var(--spacing-md);
  }
  
  .auth-modal-header {
    padding: var(--spacing-md);
  }
  
  .auth-modal-footer {
    padding: 0.75rem var(--spacing-md);
  }
  
  .social-auth {
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 0.75rem;
  }
  
  .auth-modal-content {
    gap: 0.75rem;
  }
  
  .auth-modal-icon {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-base);
  }
  
  .auth-modal-title .modal-title {
    font-size: 1.1rem;
  }
  
  .auth-modal-subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .auth-modal-header {
    padding: 0.75rem;
  }
  
  .auth-modal-content {
    gap: var(--spacing-sm);
  }
  
  .auth-modal-icon {
    width: 35px;
    height: 35px;
    font-size: var(--font-size-sm);
  }
  
  .auth-modal-title .modal-title {
    font-size: var(--font-size-base);
  }
  
  .auth-modal-subtitle {
    font-size: 0.75rem;
  }
}
/* ========================================
   FOOTER STYLES
   ======================================== */

/* Footer */
footer {
  background: var(--bg-dark) !important;
  color: var(--text-white) !important;
  padding: var(--spacing-xxl) 0 var(--spacing-xxl) 0;
  margin-top: var(--spacing-xxl);
}

footer h5 {
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-lg);
}

footer h5 img {
  height: 80px;
}

footer h6 {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

footer p {
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: var(--spacing-sm);
}

footer ul li a {
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-normal);
}

footer ul li a:hover {
  color: var(--primary-color);
}

/* Newsletter Form */
#newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
}

#newsletter-email {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--text-white);
  color: var(--text-dark);
}

#newsletter-email:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.15);
}

#newsletter-form .btn {
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-normal);
}

#newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Newsletter Message */
#newsletter-message {
  margin-top: var(--spacing-sm);
}

#newsletter-message .alert {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  margin: 0;
}

#newsletter-message .alert-success {
  background: var(--gradient-success);
  color: var(--text-white);
  border: none;
}

#newsletter-message .alert-danger {
  background: var(--gradient-danger);
  color: var(--text-white);
  border: none;
}

/* Footer Divider */
footer hr {
  margin: var(--spacing-lg) 0;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
footer .row:last-child {
  align-items: center;
}

footer .text-md-end {
  text-align: right;
}

footer .text-md-end p {
  margin-bottom: 0;
}

footer .bi-heart-fill {
  color: #dc3545;
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer {
    padding: var(--spacing-xl) 0;
  }
  
  footer h5 img {
    height: 60px;
  }
  
  #newsletter-form {
    flex-direction: column;
  }
  
  #newsletter-form .btn {
    width: 100%;
  }
  
  footer .text-md-end {
    text-align: left;
    margin-top: var(--spacing-md);
  }
}
/* ========================================
   UTILITY CLASSES & ANIMATIONS
   ======================================== */

/* Animation Classes */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Feature Highlight */
.feature-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--text-white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 30px;
  text-align: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-white);
  font-size: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-hero);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
}

.newsletter-input {
  border: 3px solid transparent;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.newsletter-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.3rem rgba(255, 140, 66, 0.25);
}

/* Toast Notifications */
.iziToast {
  font-family: var(--font-family-primary) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lg) !important;
}

.iziToast-message {
  font-weight: var(--font-weight-medium) !important;
  font-size: var(--font-size-sm) !important;
}

.iziToast-title {
  font-weight: var(--font-weight-bold) !important;
  font-size: var(--font-size-base) !important;
}

.iziToast-success {
  background: var(--gradient-success) !important;
  border: none !important;
}

.iziToast-error {
  background: var(--gradient-danger) !important;
  border: none !important;
}

.iziToast-warning {
  background: var(--gradient-warning) !important;
  border: none !important;
}

.iziToast-info {
  background: var(--gradient-info) !important;
  border: none !important;
}

/* Grid System Utilities */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--spacing-sm));
}

.col {
  flex: 1;
  padding: 0 var(--spacing-sm);
}

/* Spacing Utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--text-white); }
.text-dark { color: var(--text-dark); }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary-color); }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

/* Flexbox Utilities */
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

/* Position Utilities */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

/* Border Utilities */
.border { border: 1px solid var(--border-color); }
.border-0 { border: none; }
.border-top { border-top: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }
.border-left { border-left: 1px solid var(--border-color); }
.border-right { border-right: 1px solid var(--border-color); }

/* Border Radius Utilities */
.rounded { border-radius: var(--radius-md); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-xxl { border-radius: var(--radius-xxl); }
.rounded-circle { border-radius: 50%; }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Width Utilities */
.w-25 { width: 25%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }

/* Height Utilities */
.h-25 { height: 25%; }
.h-50 { height: 50%; }
.h-75 { height: 75%; }
.h-100 { height: 100%; }

/* Responsive Utilities */
@media (max-width: 576px) {
  .d-sm-none { display: none; }
  .d-sm-block { display: block; }
  .d-sm-flex { display: flex; }
}

@media (max-width: 768px) {
  .d-md-none { display: none; }
  .d-md-block { display: block; }
  .d-md-flex { display: flex; }
}

@media (max-width: 992px) {
  .d-lg-none { display: none; }
  .d-lg-block { display: block; }
  .d-lg-flex { display: flex; }
}
