:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #7c3aed;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

/* Modern Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  /* Blur effekti artıq nav-links üzərindədir */
  border-bottom: none;
  transition: all 0.3s ease;
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  justify-content: right 100px;
}

.logo {
  height: 100px;
  /* Ya da uyğun ölçü */
  max-width: 200px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}


/* BLUR və OVAL EFFEKT BURADA */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin-right: 50px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 40px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.nav-links a {
  color: var(--primary);
  /* Arxa fon şəffaf olduğu üçün rəng ağ olmalıdır */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Dropdown menyu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
  animation: fadeIn 0.3s ease-in-out;
  list-style: none;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.nav-links li.dropdown:hover>.dropdown-menu,
.nav-links li.dropdown .dropdown-menu:hover {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 25px;
  color: #333;
  white-space: nowrap;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
  color: var(--primary);
  cursor: pointer;
}

.nav-links li.dropdown {
  position: relative;
}

.login {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-left: 5rem;
}

.login-button {
  background: transparent;
  color: var(--primary-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  border: 3px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.login-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.logo,
.login {
  transition: all 0.3s ease;
}

.hide-on-scroll {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

/* Mobil üçün (768px aşağısı) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    /* Mobil üçün blur effekti ləğv olundu */
    -webkit-backdrop-filter: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.25rem;
    color: var(--dark);
    /* mobil fonda ağ olduğuna görə tünd rəng */
  }

  .nav-links a:hover {
    color: var(--primary);
  }

  .nav-links li.dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: none;
  }

  .nav-links li.dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding-left: 2rem;
    color: var(--dark);
    background: transparent !important;
  }

  .dropdown-menu li a:hover {
    background: transparent;
    color: var(--primary);
  }
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%239C92AC" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
  opacity: 0.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 5px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
  top: 20%;
  left: -10%;
  animation-delay: 1s;
}

.floating-card-2 {
  bottom: 20%;
  right: -10%;
  animation-delay: 2s;
}

.floating-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.floating-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-description {
  color: var(--gray);
  line-height: 1.8;
}



/* Enhanced Products Section */
.enhanced-products-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.enhanced-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.enhanced-section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #005ab4;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 90, 180, 0.1);
  border-radius: 50px;
}

.enhanced-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.enhanced-section-description {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.enhanced-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.enhanced-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.enhanced-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.enhanced-product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  color: white;
}

.enhanced-product-badge.new {
  background-color: #ef4444;
}

.enhanced-product-badge.discount {
  background-color: #10b981;
}

.enhanced-product-image {
  position: relative;
  height: 220px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.enhanced-product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.enhanced-product-card:hover .enhanced-product-image img {
  transform: scale(1.05);
}

.enhanced-product-actions {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enhanced-product-card:hover .enhanced-product-actions {
  opacity: 1;
}

.enhanced-btn-view, 
.enhanced-btn-wishlist {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.enhanced-btn-view:hover {
  background: #005ab4;
  color: white;
}

.enhanced-btn-wishlist:hover {
  color: #ef4444;
}

.enhanced-btn-wishlist.active {
  color: #ef4444;
  fill: #ef4444;
}

.enhanced-product-content {
  padding: 1.5rem;
}

.enhanced-product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.enhanced-product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.enhanced-product-price .current-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #005ab4;
}

.enhanced-product-price .old-price {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.enhanced-product-features {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.enhanced-product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.enhanced-product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #005ab4;
}

.enhanced-btn-buy {
  width: 100%;
  padding: 0.75rem;
  background: #005ab4;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.enhanced-btn-buy:hover {
  background: #004494;
}

.enhanced-load-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.enhanced-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #005ab4;
  border-radius: 50px;
  color: #005ab4;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enhanced-load-more-btn:hover {
  background: #005ab4;
  color: white;
}

.enhanced-load-more-btn svg {
  transition: transform 0.3s ease;
}

.enhanced-load-more-btn:hover svg {
  transform: translateX(4px);
}

/* Enhanced Modal Styles */
.enhanced-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.enhanced-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.enhanced-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.enhanced-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.enhanced-modal-close:hover {
  background: #e2e8f0;
}

.enhanced-modal-container {
  display: flex;
  flex-direction: column;
}

.enhanced-modal-image {
  height: 300px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.enhanced-modal-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.enhanced-modal-details {
  padding: 2rem;
}

.enhanced-modal-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.enhanced-modal-details h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.enhanced-modal-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #005ab4;
  margin-bottom: 1.5rem;
}

.enhanced-modal-price .old-price {
  font-size: 1rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.enhanced-modal-description h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.enhanced-modal-description ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.enhanced-modal-description li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.enhanced-modal-description li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #005ab4;
  font-weight: bold;
}

.enhanced-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.enhanced-btn-buy-now,
.enhanced-btn-add-cart {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enhanced-btn-buy-now {
  background: #005ab4;
  color: white;
}

.enhanced-btn-buy-now:hover {
  background: #004494;
}

.enhanced-btn-add-cart {
  background: #10b981;
  color: white;
}

.enhanced-btn-add-cart:hover {
  background: #0d9f6e;
}

.enhanced-btn-wishlist-modal {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enhanced-btn-wishlist-modal:hover {
  background: #fee2e2;
  color: #ef4444;
}

.enhanced-btn-wishlist-modal.active {
  background: #fee2e2;
  color: #ef4444;
}

/* Cart Modal Styles */
.enhanced-cart-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.enhanced-cart-modal.open {
  transform: translateX(0);
}

.enhanced-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1099;
  display: none;
}

.enhanced-cart-overlay.show {
  display: block;
}

.enhanced-cart-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.enhanced-cart-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.enhanced-cart-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.enhanced-cart-items {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image img {
  max-width: 80%;
  max-height: 80%;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: #005ab4;
  margin-bottom: 0.5rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-quantity button {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
}

.cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
}

.enhanced-cart-summary {
  padding-top: 1rem;
  border-top: 2px solid #e2e8f0;
}

.enhanced-cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.enhanced-btn-checkout {
  width: 100%;
  padding: 1rem;
  background: #005ab4;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enhanced-btn-checkout:hover {
  background: #004494;
}

/* Enhanced Notification */
.enhanced-notification {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 1001;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  gap: 0.5rem;
  animation: slideIn 0.3s ease-out;
}

.enhanced-notification.success {
  background: #10b981;
}

.enhanced-notification.error {
  background: #ef4444;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .enhanced-modal-container {
    flex-direction: row;
  }
  
  .enhanced-modal-image {
    flex: 1;
    height: auto;
  }
  
  .enhanced-modal-details {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .enhanced-section-title {
    font-size: 2rem;
  }
  
  .enhanced-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .enhanced-modal-actions {
    flex-direction: column;
  }
  
  .enhanced-btn-buy-now,
  .enhanced-btn-add-cart {
    width: 100%;
  }
  
  .enhanced-cart-modal {
    max-width: 100%;
  }
}

/* Modern Projects Section Styles */
.modern-projects-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.modern-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.modern-section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #005ab4;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 90, 180, 0.1);
  border-radius: 50px;
}

.modern-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.modern-section-description {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.modern-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.modern-filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-filter-btn:hover {
  border-color: #005ab4;
  color: #005ab4;
}

.modern-filter-btn.active {
  background: #005ab4;
  border-color: #005ab4;
  color: white;
}

.modern-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.modern-project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modern-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.project-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
}

.project-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #005ab4;
  background-color: rgba(0, 90, 180, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.project-description {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #005ab4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: #004494;
  gap: 0.5rem;
}

.modern-load-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.modern-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #005ab4;
  border-radius: 50px;
  color: #005ab4;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-load-more-btn:hover {
  background: #005ab4;
  color: white;
}

.modern-load-more-btn svg {
  transition: transform 0.3s ease;
}

.modern-load-more-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-section-title {
    font-size: 2rem;
  }
  
  .modern-projects-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}
/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.about-experience {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.about-experience .years {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  list-style: none;
  margin-bottom: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-features i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.team-slider {
  position: relative;
  overflow: hidden;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e5e7eb;
  transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
  border-color: var(--primary);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-socials a {
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s ease;
}

.member-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 10%;
  font-size: 20rem;
  color: #f3f4f6;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-company {
  color: var(--gray);
  font-size: 0.875rem;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.testimonial-rating i {
  color: #fbbf24;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-details h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--gray);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-control {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #94a3b8;
}

.footer-payment {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-payment img {
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-payment img:hover {
  opacity: 1;
}

.footer-logo {
  width: 150px; /* Ölçünü ehtiyacınıza uyğun tənzimləyin */
  height: auto;
  margin-bottom: 1rem;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-experience {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid,
  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .projects-showcase {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Loading Animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}


/* Modal Arxa Planı */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 8% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@keyframes animatetop {
    from { top: -300px; opacity: 0; }
    to { top: 0; opacity: 1; }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover,
.close-modal:focus { color: #333; }

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) { .modal-body { flex-direction: row; } }

.modal-image {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: #007bff;
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.modal-info { flex: 2; }

.modal-title {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #333;
}

.product-categorys {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.modal-description {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-specs {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

.modal-specs li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
    display: flex;
    align-items: center;
}

.modal-specs li:last-child { border-bottom: none; }

.modal-specs li::before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

.product-bttm {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px; /* aradakı məsafə bir az azaldıldı */
  padding: 10px 24px; /* daha kiçik iç boşluq */
  border: 3px solid transparent;
  font-size: 14px; /* kiçik font ölçüsü */
  background-color: inherit;
  border-radius: 50px;
  font-weight: 600;
  color: rgb(0, 90, 180); /* tünd mavi */
  box-shadow: 0 0 0 2px rgb(0, 90, 180); /* daha tünd çərçivə */
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  justify-content: center;
}

.product-bttm .text {
  position: relative;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-bttm .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: rgb(0, 90, 180); /* tünd mavi dairə */
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

/* Soldakı ox */
.product-bttm svg.arr-2 {
  position: absolute;
  left: -30px;
  width: 20px; /* bir az kiçik */
  fill: rgb(0, 90, 180);
  z-index: 2;
  transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover zamanı */
.product-bttm:hover .arr-2 {
  left: 12px;
}

.product-bttm:hover .text {
  transform: translateX(10px);
  color: white;
}

.product-bttm:hover .circle {
  width: 180px;
  height: 180px;
  opacity: 1;
}

.product-bttm:hover svg.arr-2 {
  fill: #ffffff;
}

.product-bttm:active {
  scale: 0.95;
  box-shadow: 0 0 0 3px rgb(0, 90, 180);
}


@media (max-width: 768px) {
  .modal-content {
    margin: 15% auto;
    padding: 20px;
    width: 95%;
  }
  
  .modal-body {
    flex-direction: column;
  }
  
  .modal-title {
    font-size: 1.8em;
  }
  
  .modal-image {
    min-height: 150px;
    font-size: 60px;
  }
  
  .product-bttm {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .product-bttm {
    padding: 6px 12px;
    font-size: 12px;
    box-shadow: 0 0 0 1px rgb(0, 90, 180);
  }
  
  .product-bttm:hover .text {
    transform: translateX(5px);
  }
  
  .product-bttm:hover .arr-2 {
    left: 8px;
  }
  
  .product-bttm .circle {
    width: 14px;
    height: 14px;
  }
  
  .product-bttm:hover .circle {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 640px) {
  .modern-projects-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .modern-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .enhanced-product-card {
    max-width: 100%;
  }
  
  .enhanced-product-image {
    height: 180px;
  }
  
  .enhanced-product-content {
    padding: 1rem;
  }
  
  .enhanced-product-title {
    font-size: 1rem;
  }
  
  .enhanced-product-price .current-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .team-member {
    padding: 1.5rem;
  }
  
  .member-avatar {
    width: 100px;
    height: 100px;
  }
  
  .member-name {
    font-size: 1.1rem;
  }
  
  .member-socials a {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-control {
    padding: 0.75rem;
  }
  
  .form-submit {
    padding: 0.75rem 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-links li {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-payment {
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .loader-spinner {
    width: 50px;
    height: 50px;
    border-width: 5px;
  }
}


/* Stats Section Responsive Dizayn */
.stats-section {
  padding: 3rem 1rem;
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  margin-left: 25%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-weight: 500;
  font-size: 1rem;
}

/* Tablet üçün (768px-1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: 2rem;
  }
}

/* Desktop üçün (1024px+) */
@media (min-width: 1025px) {
  .stats-section {
    padding: 5rem 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

/* Çox kiçik ekranlar üçün (480px-) */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 1.25rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Default olaraq mobil login gizli olsun */
.mobile-login {
  display: none;
}

/* Desktop login */
.desktop-login {
  display: block;
}

/* Mobil görünüş (burger menyu üçün) */
@media (max-width: 992px) {
  .desktop-login {
    display: none; /* mobil görünüşdə gizlə */
  }

  .mobile-login {
    display: block; /* mobil menyuda göstər */
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-login .login-button {
    display: block;
    width: 100%;
    text-align: center;
  }
}


/* Burger Menyu Düyməsi */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobil Görünüm (992px-dən kiçik) */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  /* Desktop login gizlənsin */
  .desktop-login {
    display: none;
  }

  /* Mobil login menyuda çıxsın */
  .mobile-login {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    width: 100%;
    display: block;
  }

  .mobile-login .login-button {
    display: block;
    text-align: center;
    width: 100%;
  }
}


/* Kiçik Mobil Cihazlar (576px-dən kiçik) */
@media (max-width: 576px) {
  .nav-links {
    width: 250px;
    padding: 1.5rem;
  }
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* üfüqi scroll tamamilə bağlansın */
}


