/* ========================================
   COMMON.CSS - Design System Sistematizat
   ======================================== */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* ========================================
   1. CSS VARIABLES (Custom Properties)
   ======================================== */
:root {
  --primary-gradient: linear-gradient(135deg, #484848  0%, #059669 100%);
  --secondary-gradient: linear-gradient(135deg, #047857 0%, #065f46 100%);
  --accent-gradient: linear-gradient(45deg, #34d399, #10b981);
  
  --primary-color: #10b981;
  --secondary-color: #059669;
  --accent-color: #34d399;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #06b6d4;
  
  --text-primary: #333;
  --text-secondary: #666;
  --text-muted: #95a5a6;
  --text-light: #ecf0f1;
  --text-white: #ffffff;
  
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-overlay: rgba(255, 255, 255, 0.1);
  --bg-overlay-hover: rgba(255, 255, 255, 0.2);
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 50px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 25px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 4px 30px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  padding-top: 0;
}

/* ========================================
   3. UTILITY CLASSES
   ======================================== */

/* Gradients */
.bg-primary-gradient { background: var(--primary-gradient); }
.bg-secondary-gradient { background: var(--secondary-gradient); }
.bg-accent-gradient { background: var(--accent-gradient); }

/* Text Colors */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }
.text-white { color: var(--text-white) !important; }

/* Spacing */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.p-0 { padding: 0 !important; }

/* ========================================
   4. COMPONENT SYSTEM
   ======================================== */

/* Cards */
.card-custom {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  overflow: hidden;
  background: var(--bg-white);
}

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

/* Buttons */
.btn-custom {
  border: none;
  border-radius: var(--radius-xl);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: 600;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-brand {
  display: inline-block;
  background: var(--primary-gradient);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-brand:hover {
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-brand:focus {
  color: var(--text-white);
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.35);
}

.btn-primary-custom {
  background: var(--primary-gradient);
  color: var(--text-white);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
  color: var(--text-white);
}

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

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

/* Icons */
.icon-custom {
  transition: all var(--transition-normal);
}

.icon-custom:hover {
  transform: scale(1.1);
}

/* Badges */
.badge-custom {
  position: absolute;
  background: var(--accent-gradient);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(52, 211, 153, 0.3);
  z-index: var(--z-dropdown);
}

/* Sections */
.section-custom {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xxl);
  text-align: center;
  color: var(--text-primary);
  position: relative;
}

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

/* ========================================
   5. ANIMATIONS
   ======================================== */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-pulse { animation: pulse 2s infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }

/* ========================================
   6. RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .card-custom:hover {
    transform: none;
  }
  
  .btn-custom:hover {
    transform: none;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  .hero-pattern-container {
    display: none;
  }
}

/* ========================================
   7. SCROLLBAR CUSTOMIZATION
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #10b981, #059669);
}

/* ========================================
   8. AOS ANIMATION OVERRIDES
   ======================================== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ========================================
   9. GENERIC COMPONENTS (din alte fișiere)
   ======================================== */

/* Hero Section Generic */
.hero-section {
  background: var(--primary-gradient);
  color: var(--text-white);
  padding: 0;
  margin-bottom: var(--spacing-xxl);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Hero Section pentru pagini non-homepage */
.hero-section.hero-small {
  min-height: 50vh;
  padding: var(--spacing-xxl) 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25) 0%, transparent 60%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.1) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="recycle" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="3" fill="rgba(255,255,255,0.2)"/><path d="M8,8 L22,8 L22,22 L8,22 Z" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1"/><path d="M12,12 L18,12 L18,18 L12,18 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23recycle)"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
  background-size: cover, cover, cover, cover, cover, 60px 60px, 40px 40px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Hero decorative elements */
.hero-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-pattern-container {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-pattern-icon {
  font-size: 8rem;
  opacity: 0.4;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  position: relative;
}

.hero-pattern-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.pattern-circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 40px;
  left: 40px;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 60px;
  animation-delay: 2s;
}

.circle-3 {
  width: 40px;
  height: 40px;
  top: 80px;
  left: 80px;
  animation-delay: 4s;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll Down Button */
.scroll-down-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-down-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: color 0.2s ease;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.scroll-down-btn::before { display: none; }

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

.scroll-down-btn:hover {
  color: white;
  background: transparent;
  transform: none;
  box-shadow: none;
  text-decoration: none;
}

/* Mouse Shape */
.mouse-shape {
  width: 60px;
  height: 80px;
  position: relative;
  margin-bottom: 15px;
  animation: mouseFloat 3s ease-in-out infinite;
}

.mouse-body {
  width: 100%;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px 30px 30px 30px;
  position: relative;
  overflow: hidden;
}

.mouse-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 30px 30px 30px 30px;
}

.scroll-wheel {
  width: 4px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s ease-in-out infinite;
}

.scroll-wheel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: wheelHighlight 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

@keyframes mouseFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes wheelScroll {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes wheelHighlight {
  0%, 100% {
    opacity: 0.8;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}


/* Features Section Generic */
.features-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  position: relative;
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  color: var(--secondary-color);
}

/* No Image Placeholder */
.no-image {
  height: 250px;
  background: linear-gradient(45deg, var(--bg-light), #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.1rem;
  width: 100%;
  padding: 10px;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: var(--accent-gradient);
  color: var(--text-white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(52, 211, 153, 0.3);
  animation: pulse 2s infinite;
}

/* Stock Status */
.stock-status {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.stock-status.in-stock {
  color: var(--success-color);
}

.stock-status.out-of-stock {
  color: var(--danger-color);
}

/* Loading Animation */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: var(--radius-full);
  border-top-color: var(--text-white);
  animation: spin 1s ease-in-out infinite;
}

/* Navbar Generic */
.navbar-custom {
  background: var(--primary-gradient);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md) 0;
  transition: all var(--transition-normal);
}

.navbar-custom.scrolled {
  padding: var(--spacing-sm) 0;
  box-shadow: var(--shadow-xl);
}

.language-switch .btn {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.language-switch .btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px);
}

.language-switch .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.language-switch .btn i {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.language-switch .btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.language-switch .btn::after {
  display: none !important;
}

.custom-dropdown {
  min-width: 120px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.custom-dropdown-item {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
  display: block;
}

.custom-dropdown-item:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateX(5px);
}

.custom-dropdown-item:focus {
  background: var(--primary-color);
  color: var(--text-white);
  outline: none;
}

@media (max-width: 991.98px) {
  .language-switch .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .custom-dropdown {
    min-width: 100px;
  }
  
  .custom-dropdown-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white) !important;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #f8f9fa !important;
}

.nav-link {
  color: var(--text-white) !important;
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  margin: 0 3px;
}

.nav-link.dropdown-toggle {
  max-width: 200px;
  overflow: hidden;
}

.nav-link .user-name-text {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .nav-link.dropdown-toggle {
    max-width: 150px;
  }
  
  .nav-link .user-name-text {
    max-width: 100px;
  }
}

@media (max-width: 991.98px) {
  .nav-link.dropdown-toggle {
    max-width: 100%;
  }
  
  .nav-link .user-name-text {
    max-width: 200px;
  }
}

.nav-link:hover {
  background-color: var(--bg-overlay);
  color: var(--text-white) !important;
}

.nav-link.active {
  background-color: var(--bg-overlay-hover);
}

/* Dropdown Generic */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 8px 0;
  margin-top: var(--spacing-xs);
}

.dropdown-item {
  padding: 8px var(--spacing-lg);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--text-primary);
}

/* Cart Icon Generic */
.cart-icon {
  position: relative;
  background: var(--bg-overlay);
  border-radius: var(--radius-full);
  padding: var(--spacing-sm);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  overflow: visible;
}

.cart-icon:hover {
  background: var(--bg-overlay-hover);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-color);
  color: var(--text-white);
  border-radius: var(--radius-full);
  width: 30px;
  height: 30px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(52, 211, 153, 0.3);
  z-index: var(--z-dropdown);
  border: 2px solid var(--text-white);
}

/* Language Selector Generic */
.language-selector {
  background: var(--bg-overlay);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  outline: none;
}

.language-selector:focus {
  background: var(--bg-overlay-hover);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.language-selector option {
  background: var(--bg-white);
  color: var(--text-primary);
}

/* Navbar Toggler Generic */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  background: var(--bg-overlay);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.navbar-toggler:hover {
  background: var(--bg-overlay-hover);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Footer Generic */
.footer-custom {
  background: var(--secondary-gradient);
  color: var(--text-white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
}

.footer-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-overlay);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.contact-info i {
  color: rgba(255, 255, 255, 0.9);
  width: 20px;
}

.footer-custom .contact-info a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
}

.footer-custom .contact-info a:hover {
  color: rgba(255, 255, 255, 1) !important;
  text-decoration: none;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.3);
  margin: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

.footer-developed-by {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.85rem;
}

.footer-developed-by .developer-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-developed-by .developer-link:hover {
  opacity: 0.8;
}

.footer-developed-by .developer-logo {
  height: 22px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.footer-developed-by .developer-link:hover .developer-logo {
  opacity: 1;
}

/* ========================================
   9.5. WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  border-radius: var(--radius-full);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive adjustments for Why Choose Us */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-card {
    padding: var(--spacing-lg);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon i {
    font-size: 1.8rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
}

/* ========================================
   9.6. TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-swiper {
  padding: var(--spacing-lg) 0 var(--spacing-xxl) 0;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.testimonial-content {
  flex: 1;
  margin-bottom: var(--spacing-lg);
}

.testimonial-rating {
  margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.1rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author {
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  padding-top: var(--spacing-md);
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 5px 0;
}

.author-position {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
  margin: 0 0 3px 0;
}

.author-company {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
  background: var(--bg-white);
  border-radius: var(--radius-full);
  width: 50px;
  height: 50px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
  color: var(--text-white) !important;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: var(--spacing-xl) 0;
  }
  
  .testimonial-card {
    padding: var(--spacing-lg);
    min-height: 250px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-text::before {
    font-size: 2.5rem;
    top: -8px;
    left: -12px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* ========================================
   9.7. STATISTICS SECTION
   ======================================== */
.stats-section {
  background: var(--bg-light);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.stat-suffix {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 700;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   9.6. PRODUCT FILTERS
   ======================================== */

.category-filters .btn {
  margin: 0 var(--spacing-xs);
}

.category-filters .btn.active {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

/* ========================================
   10. RESPONSIVE OVERRIDES
   ======================================== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding: var(--spacing-lg) 0;
    padding-top: 100px;
  }
  
  .hero-section.hero-small {
    min-height: 40vh;
    padding: var(--spacing-lg) 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .product-image {
    height: 200px;
  }
  
  .feature-card {
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-custom {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    margin-top: var(--spacing-lg);
  }
  
  .footer-developed-by {
    justify-content: center !important;
    margin-top: var(--spacing-sm);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-suffix {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 110px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .product-card {
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 991.98px) {
  .navbar-custom {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .navbar-nav {
    margin-top: var(--spacing-md);
    padding: 0 var(--spacing-sm);
  }
  
  .nav-link {
    margin: var(--spacing-xs) 0;
    padding: 12px var(--spacing-lg) !important;
    border-radius: var(--radius-sm);
  }
  
  .dropdown-menu {
    position: static !important;
    width: 100%;
    margin: var(--spacing-xs) 0;
    background-color: rgba(255,255,255,0.95);
    border-radius: var(--radius-sm);
  }
  
  .dropdown-item {
    color: var(--text-primary) !important;
    padding: 12px var(--spacing-lg);
  }
  
  .cart-icon {
    margin: var(--spacing-sm) 0;
    padding: 8px var(--spacing-sm);
  }
  
  .language-selector {
    margin: var(--spacing-sm) 0;
    width: 100%;
    text-align: center;
    padding: 6px var(--spacing-sm);
  }
  
  .hero-section {
    margin-top: 0;
    padding-top: 100px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .scroll-down-container {
    bottom: 20px;
  }
  
  .scroll-down-btn {
    padding: 15px 20px;
  }
  
  .mouse-shape {
    width: 45px;
    height: 60px;
    margin-bottom: 10px;
  }
  
  .mouse-body {
    height: 55px;
  }
  
  .scroll-wheel {
    height: 14px;
    top: 10px;
  }
  
  .scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
}

/* ========================================
   HERO SECTION BUTTON
   ======================================== */
.btn-add-cart {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.btn-add-cart:active {
  transform: translateY(0);
}

.page-header {
  background: var(--primary-gradient);
  color: white;
  padding: 100px 0 50px;
  margin-bottom: 50px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  padding: 50px 0;
}

.content-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.content-card h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.content-card p {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.value-item {
  padding: 15px;
}

.value-item i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.value-item strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.value-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.services-section {
  padding: 50px 0;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
}

.cta-box {
  background: var(--primary-gradient);
  padding: 50px;
  border-radius: var(--radius-lg);
  color: white;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.blog-section {
  padding: 50px 0;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.blog-card-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all var(--transition-normal);
  margin-top: auto;
}

.blog-card-read-more:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: var(--text-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.blog-card-read-more i {
  transition: transform var(--transition-fast);
}

.blog-card-read-more:hover i {
  transform: translateX(3px);
}

.blog-content-section {
  padding: 50px 0;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
}

.blog-meta-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.blog-image {
  margin-bottom: 40px;
}

.blog-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.blog-content h3 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-content h4 {
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-content h5 {
  color: var(--text-primary);
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.contact-info-section {
  padding: 50px 0;
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.contact-info-icon i {
  font-size: 2rem;
  color: white;
}

.contact-info-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-card p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.mission-section {
  background: var(--bg-light);
  padding: 80px 0;
}
