:root {
  --primary-color: #155fc0;
  --secondary-color: #34a853;
  --dark-color: #202124;
  --light-gray: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Navbar */
.navbar {
  background: #2c3e50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar > .container {
  position: relative;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: white !important;
  display: flex;
  align-items: center;
  flex: 1;
}

.navbar-brand-text {
  display: inline;
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.navbar-toggler {
  border: none;
  padding: 8px 12px;
  margin-left: auto;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
  color: white !important;
  transform: translateY(-2px);
}

.badge-cart {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--secondary-color);
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 11px;
}

/* Hero Section */
.hero {
  background: url("../images/hero.png") center center no-repeat;
  background-size: 100% auto;
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}

/* Hero - Mobile */
@media (max-width: 768px) {
  .hero {
    background: url("../images/heromobil.png") center center no-repeat;
    background-size: 150%;
    min-height: 300px;
    padding: 60px 0;
  }
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px 12px 0 0;
  background: #f8f9fa;
  padding: 10px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-hidden {
  color: #999;
  font-size: 1rem;
  font-style: italic;
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-success {
  background: var(--secondary-color);
  border: none;
  border-radius: 8px;
}

.btn-success:hover {
  background: #2d8e47;
}

/* Alerts */
.alert {
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
  margin-top: 80px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: white;
}

/* Category Badge */
.category-badge {
  background: var(--light-gray);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
}

.category-badge:hover {
  background: var(--primary-color);
  color: white;
}

/* Table */
.table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.table thead {
  background: var(--primary-color);
  color: white;
}

/* Admin Sidebar */
.admin-sidebar {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.admin-sidebar .nav-link {
  color: #333;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: all 0.3s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: var(--primary-color);
  color: white;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Modern Category Cards */
.category-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.category-card:hover::before {
  transform: scaleY(1);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.category-card:hover .category-icon {
  transform: rotate(10deg) scale(1.1);
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

.category-content {
  flex: 1;
}

.category-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 8px 0;
  transition: color 0.3s;
}

.category-card:hover .category-name {
  color: var(--primary-color);
}

.category-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.category-arrow {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.category-card:hover .category-arrow {
  background: var(--primary-color);
  transform: translateX(5px);
}

.category-arrow i {
  font-size: 1rem;
  color: var(--dark-color);
  transition: color 0.3s;
}

.category-card:hover .category-arrow i {
  color: white;
}

/* Category Image Cards */
.category-image-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: all 0.3s;
  padding: 10px;
}

.category-image-card:hover .category-image {
  transform: scale(1.02);
}

.category-placeholder {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #999;
  gap: 15px;
}

.category-placeholder i {
  color: #dee2e6;
}

.category-placeholder p {
  margin: 0;
  font-weight: 600;
  color: #6c757d;
  font-size: 1.1rem;
}

/* Ürün Detay Sayfası Ana Görsel */
#main-product-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  object-position: center;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px 12px 0 0;
}

/* Thumbnail Görseller */
.product-thumbnail {
  width: 100%;
  height: 80px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #dee2e6;
}

.product-thumbnail:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Admin Ürün Görselleri */
.admin-product-image {
  transition: all 0.3s;
}

.admin-product-image:hover {
  transform: scale(1.02);
}

/* Sepet Ürün Görseli */
.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 5px;
}

/* Modern Ürünler Sayfası */
.products-header {
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 20px;
}

.products-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.products-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Modern Kategori Pills */
.category-filters {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #f8f9fa;
  color: #555;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.category-pill:hover {
  background: #e9ecef;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.category-pill.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Modern Product Card */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.empty-state h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
}

/* Modern Breadcrumb */
.modern-breadcrumb {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modern-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.modern-breadcrumb a:hover {
  color: #1557b0;
}

.modern-breadcrumb .active {
  color: #666;
}

/* Product Detail Gallery */
.product-detail-gallery {
  position: sticky;
  top: 20px;
}

.main-image-wrapper {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.main-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s;
}

.main-image-wrapper img:hover {
  transform: scale(1.05);
}

.thumbnail-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail-item {
  flex: 0 0 calc(25% - 8px);
}

.thumbnail-item .product-thumbnail {
  width: 100%;
  height: 100px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #e0e0e0;
}

.thumbnail-item .product-thumbnail:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

/* Product Detail Info */
.product-detail-info {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-badge-detail {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.category-badge-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
  color: white;
}

.product-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.3;
}

/* Price Section */
.product-detail-price-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.price-display {
  margin-bottom: 15px;
}

.price-label {
  font-size: 1rem;
  color: #666;
  display: block;
  margin-bottom: 5px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stock-display {
  margin-top: 15px;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
}

.stock-badge.in-stock {
  background: #d4edda;
  color: #155724;
}

.stock-badge.out-of-stock {
  background: #f8d7da;
  color: #721c24;
}

/* Product Detail Sections */
.product-detail-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}

.product-detail-section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.section-content {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.section-content.specifications {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

/* Product Actions */
.product-detail-actions {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.quantity-selector {
  margin-bottom: 20px;
}

.quantity-selector .input-group {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.quantity-selector .form-control {
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.quantity-selector .btn {
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.action-buttons {
  display: flex;
  gap: 15px;
}

.action-buttons .btn {
  flex: 1;
}

/* ========================================
   HESABIM SAYFASI MODERN STILLER
   ======================================== */

/* Account Header */
.account-header {
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
  border-radius: 20px;
  padding: 40px;
  color: white;
  box-shadow: 0 10px 40px rgba(26, 115, 232, 0.2);
}

.account-avatar {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  backdrop-filter: blur(10px);
}

.account-avatar i {
  font-size: 3rem;
  color: white;
}

.account-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.account-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.status-badge.status-active {
  background: rgba(52, 168, 83, 0.3);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.status-badge.status-pending {
  background: rgba(251, 188, 5, 0.3);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.status-badge.status-inactive {
  background: rgba(234, 67, 53, 0.3);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Account Info Cards */
.account-info-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s;
}

.account-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.account-card-header {
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.account-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.account-card-icon i {
  font-size: 1.8rem;
  color: white;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
}

.bg-gradient-success {
  background: linear-gradient(135deg, var(--secondary-color), #2d8e47);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #00acc1, #00838f);
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #e53935, #c62828);
}

.account-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
}

.account-card-body {
  padding: 30px;
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s;
  margin-bottom: 15px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.2rem;
  color: white;
}

.info-content {
  flex: 1;
}

.info-content label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 5px 0;
  display: block;
}

.info-content p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0;
  line-height: 1.6;
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.quick-link-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.quick-link-item:hover::before {
  transform: scaleY(1);
}

.quick-link-item:hover {
  background: white;
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-link-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-link-icon i {
  font-size: 1.3rem;
  color: white;
}

.quick-link-content {
  flex: 1;
}

.quick-link-content h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 5px 0;
}

.quick-link-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.quick-link-arrow {
  font-size: 1.2rem;
  color: #ccc;
  transition: all 0.3s;
}

.quick-link-item:hover .quick-link-arrow {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Navbar Mobile Fix */
  .navbar .container {
    position: relative;
    padding: 0.5rem 1rem;
  }

  .navbar-brand {
    flex: 1;
    max-width: calc(100% - 60px);
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.3;
  }

  .navbar-brand-text {
    display: flex;
    flex-direction: column;
  }

  .navbar-logo {
    height: 35px;
    margin-right: 8px;
  }

  .navbar-toggler {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 10px;
  }

  /* Account Page Mobile */
  .account-header {
    padding: 25px;
  }

  .account-avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .account-avatar i {
    font-size: 2rem;
  }

  .account-title {
    font-size: 1.5rem;
  }

  .account-subtitle {
    font-size: 0.95rem;
  }

  .status-badge {
    margin-top: 15px;
  }

  .account-card-header {
    padding: 20px;
  }

  .account-card-body {
    padding: 20px;
  }

  .info-item {
    padding: 15px;
  }

  .quick-link-item {
    padding: 15px;
  }

  /* Hero Mobile */
  .hero {
    min-height: 250px;
    padding: 40px 0;
  }

  /* Section Headers Mobile */
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Category Cards Mobile */
  .category-card {
    padding: 20px;
    min-height: 120px;
  }

  .category-icon {
    width: 50px;
    height: 50px;
  }

  .category-icon i {
    font-size: 1.5rem;
  }

  .category-name {
    font-size: 1.1rem;
  }

  /* Products Header Mobile */
  .products-header {
    text-align: center;
  }

  .products-title {
    font-size: 1.8rem;
  }
}

/* =============================================
   ADMIN ORDERS PAGE MODERN DESIGN
   ============================================= */

/* Admin Page Header */
.admin-page-header {
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
  border-radius: 16px;
  padding: 30px;
  color: white;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.2);
  margin-bottom: 30px;
}

.admin-page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.admin-page-subtitle {
  font-size: 1rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.admin-stats-mini {
  display: flex;
  gap: 20px;
}

.admin-stats-mini .stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 100px;
}

.admin-stats-mini .stat-item i {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.admin-stats-mini .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.admin-stats-mini .stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

/* Modern Orders Grid */
.modern-orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

/* Order Card */
.order-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.order-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Order Card Header */
.order-card-header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.order-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  display: flex;
  align-items: center;
}

.order-number i {
  color: var(--primary-color);
}

/* Order Status Badges */
.order-status-badge {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: capitalize;
}

.order-status-badge.status-warning {
  background: linear-gradient(135deg, #fff3cd, #ffc107);
  color: #856404;
}

.order-status-badge.status-info {
  background: linear-gradient(135deg, #d1ecf1, #17a2b8);
  color: #0c5460;
}

.order-status-badge.status-primary {
  background: linear-gradient(135deg, #cfe2ff, #0d6efd);
  color: #084298;
}

.order-status-badge.status-success {
  background: linear-gradient(135deg, #d1e7dd, #198754);
  color: #0f5132;
}

.order-status-badge.status-danger {
  background: linear-gradient(135deg, #f8d7da, #dc3545);
  color: #842029;
}

/* Order Card Body */
.order-card-body {
  padding: 20px;
}

.order-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.order-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.order-info-item:hover {
  background: #e9ecef;
}

.order-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.order-info-icon.bg-primary {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: white;
}

.order-info-icon.bg-success {
  background: linear-gradient(135deg, #198754, #146c43);
  color: white;
}

.order-info-icon.bg-warning {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #333;
}

.order-info-content {
  flex: 1;
  min-width: 0;
}

.order-info-label {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.order-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Order Total */
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 10px;
  margin-top: 15px;
  border: 2px solid var(--primary-color);
}

.order-total-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-total-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Order Card Footer */
.order-card-footer {
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.order-card-footer .btn {
  width: 100%;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease;
}

.order-card-footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal Sections */
.modal-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.modal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.modal-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-section-title i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Info Box */
.info-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--primary-color);
}

.info-box p {
  margin-bottom: 8px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.info-box p i {
  color: var(--primary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.info-box p strong {
  min-width: 120px;
  color: #6c757d;
  font-weight: 600;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Order Items Table in Modal */
.modal-body .table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modal-body .table thead {
  background: linear-gradient(135deg, var(--primary-color), #1557b0);
  color: white;
}

.modal-body .table thead th {
  border: none;
  font-weight: 600;
  padding: 15px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.modal-body .table tbody tr {
  transition: all 0.2s ease;
}

.modal-body .table tbody tr:hover {
  background: #f8f9fa;
}

.modal-body .table tbody td {
  padding: 15px;
  vertical-align: middle;
  border-color: #e9ecef;
}

.modal-body .table tfoot {
  background: #f8f9fa;
  font-weight: 700;
}

.modal-body .table tfoot td {
  padding: 15px;
  border-top: 2px solid var(--primary-color);
}

/* Status Change Form */
.modal-body .input-group {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modal-body .form-select {
  border: 2px solid #e9ecef;
  padding: 12px;
  font-weight: 600;
  border-radius: 10px 0 0 10px;
}

.modal-body .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.modal-body .input-group .btn {
  border-radius: 0 10px 10px 0;
  padding: 12px 24px;
  font-weight: 600;
}

/* Empty State */
.admin-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.admin-empty-state i {
  font-size: 5rem;
  color: #dee2e6;
  margin-bottom: 20px;
}

.admin-empty-state h3 {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.admin-empty-state p {
  color: #adb5bd;
  font-size: 1rem;
}

/* Responsive Design for Admin Orders */
@media (max-width: 768px) {
  .modern-orders-grid {
    grid-template-columns: 1fr;
  }

  .admin-page-header {
    padding: 20px;
  }

  .admin-page-header .d-flex {
    flex-direction: column !important;
    gap: 20px;
  }

  .admin-page-title {
    font-size: 1.5rem;
  }

  .admin-stats-mini {
    width: 100%;
    justify-content: center;
  }

  .order-info-row {
    grid-template-columns: 1fr;
  }

  .modal-section-title {
    font-size: 1rem;
  }

  .info-box p {
    flex-direction: column;
    gap: 5px;
  }

  .info-box p strong {
    min-width: auto;
  }
}

/* Hakkımızda Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 95, 192, 0.03) 0%, rgba(52, 168, 83, 0.03) 100%);
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.video-container video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  cursor: pointer;
}

.video-container video::-webkit-media-controls {
  filter: brightness(0.9);
}

.about-content .title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  margin-top: 10px;
}

.about-content .lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content h5 {
  font-weight: 600;
  color: var(--dark-color);
  display: flex;
  align-items: center;
}

.stat-box {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(21, 95, 192, 0.15) !important;
}

.stat-box h3 {
  font-weight: 700;
  font-size: 2rem;
}

.stat-box small {
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

/* Video Responsive */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0 !important;
    margin-top: 20px;
  }

  .about-section .section-header {
    text-align: center !important;
  }

  .about-section .title-underline {
    margin: 10px auto 0;
  }

  .stat-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 30px 0 !important;
  }

  .video-container {
    margin-bottom: 30px;
  }

  .about-content .lead {
    font-size: 1rem;
  }
}
