.order-detail-section {
  padding: 3rem 0;
  min-height: 60vh;
  background-color: #f8f9fa;
}
.order-detail-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.breadcrumb {
  margin-bottom: 2rem;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b4cdb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #7a3ec5;
}

.order-detail-header {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.order-detail-header .header-left .order-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}
.order-detail-header .header-left .order-date {
  font-size: 1rem;
  color: #666;
  margin: 0;
}
.order-detail-header .header-left .order-date i {
  margin-right: 0.5rem;
}
.order-detail-header .header-right .status-badge-large {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.order-detail-header .header-right .status-badge-large.status-pending {
  background: #fff3cd;
  color: #856404;
}
.order-detail-header .header-right .status-badge-large.status-received, .order-detail-header .header-right .status-badge-large.status-processing {
  background: #d1ecf1;
  color: #0c5460;
}
.order-detail-header .header-right .status-badge-large.status-shipped {
  background: #cfe2ff;
  color: #084298;
}
.order-detail-header .header-right .status-badge-large.status-delivered {
  background: #d1e7dd;
  color: #0f5132;
}
.order-detail-header .header-right .status-badge-large.status-cancelled, .order-detail-header .header-right .status-badge-large.status-refunded {
  background: #f8d7da;
  color: #842029;
}

.order-progress-wrapper {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.order-progress-wrapper .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2rem;
}
.order-progress-wrapper .progress-tracker {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  padding: 1rem 0;
}
.order-progress-wrapper .progress-tracker .progress-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.order-progress-wrapper .progress-tracker .progress-stage .stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.order-progress-wrapper .progress-tracker .progress-stage .stage-icon i {
  font-size: 1.5rem;
  color: #999;
}
.order-progress-wrapper .progress-tracker .progress-stage .stage-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  margin: 0 0 0.25rem;
}
.order-progress-wrapper .progress-tracker .progress-stage .stage-info .stage-status {
  font-size: 0.8rem;
  color: #8b4cdb;
  font-weight: 600;
  margin: 0;
}
.order-progress-wrapper .progress-tracker .progress-stage .stage-connector {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-progress-wrapper .progress-tracker .progress-stage .stage-connector i {
  font-size: 1.2rem;
  color: #0f5132;
  background: white;
  padding: 0 0.5rem;
}
.order-progress-wrapper .progress-tracker .progress-stage.completed .stage-icon {
  background: #d1e7dd;
}
.order-progress-wrapper .progress-tracker .progress-stage.completed .stage-icon i {
  color: #0f5132;
}
.order-progress-wrapper .progress-tracker .progress-stage.completed .stage-info h4 {
  color: #0f5132;
}
.order-progress-wrapper .progress-tracker .progress-stage.completed .stage-connector {
  background: #0f5132;
}
.order-progress-wrapper .progress-tracker .progress-stage.active .stage-icon {
  background: #8b4cdb;
  box-shadow: 0 0 0 4px rgba(139, 76, 219, 0.2);
  transform: scale(1.1);
}
.order-progress-wrapper .progress-tracker .progress-stage.active .stage-icon i {
  color: white;
}
.order-progress-wrapper .progress-tracker .progress-stage.active .stage-info h4 {
  color: #1a1a1a;
}

.order-content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}
.order-content-grid .section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}

.order-items-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.order-items-section .order-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.order-items-section .order-items-list .order-item-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.order-items-section .order-items-list .order-item-card:hover {
  border-color: #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.order-items-section .order-items-list .order-item-card .item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-items-section .order-items-list .order-item-card .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-items-section .order-items-list .order-item-card .item-image .item-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 2.5rem;
}
.order-items-section .order-items-list .order-item-card .item-info {
  flex: 1;
  min-width: 0;
}
.order-items-section .order-items-list .order-item-card .item-info .item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.order-items-section .order-items-list .order-item-card .item-info .product-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.order-items-section .order-items-list .order-item-card .item-info .product-attributes .attribute {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.order-items-section .order-items-list .order-item-card .item-info .product-attributes .attribute .attribute-label {
  font-weight: 600;
  color: #666;
}
.order-items-section .order-items-list .order-item-card .item-info .product-attributes .attribute .attribute-value {
  color: #1a1a1a;
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
}
.order-items-section .order-items-list .order-item-card .item-info .item-sku,
.order-items-section .order-items-list .order-item-card .item-info .item-ean {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  margin: 0.5rem 0;
  font-family: "Courier New", monospace;
}
.order-items-section .order-items-list .order-item-card .item-info .item-sku i,
.order-items-section .order-items-list .order-item-card .item-info .item-ean i {
  color: #8b4cdb;
  font-size: 1rem;
}
.order-items-section .order-items-list .order-item-card .item-info .item-sku .sku-label,
.order-items-section .order-items-list .order-item-card .item-info .item-sku .ean-label,
.order-items-section .order-items-list .order-item-card .item-info .item-ean .sku-label,
.order-items-section .order-items-list .order-item-card .item-info .item-ean .ean-label {
  font-weight: 500;
}
.order-items-section .order-items-list .order-item-card .item-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 140px;
  text-align: right;
}
.order-items-section .order-items-list .order-item-card .item-pricing .quantity-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.order-items-section .order-items-list .order-item-card .item-pricing .quantity-display .qty-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}
.order-items-section .order-items-list .order-item-card .item-pricing .quantity-display .qty-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.order-items-section .order-items-list .order-item-card .item-pricing .unit-price {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.order-items-section .order-items-list .order-item-card .item-pricing .unit-price .price-label {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-top: 0.25rem;
}
.order-items-section .order-items-list .order-item-card .item-pricing .line-total {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.order-items-section .order-items-list .order-item-card .item-pricing .line-total .total-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}
.order-items-section .order-items-list .order-item-card .item-pricing .line-total .total-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8b4cdb;
}
.order-items-section .order-items-list .no-items {
  text-align: center;
  padding: 3rem;
  color: #666;
  font-size: 1.1rem;
}
.order-items-section .order-summary {
  border-top: 2px solid #e0e0e0;
  padding-top: 1.5rem;
}
.order-items-section .order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #333;
}
.order-items-section .order-summary .summary-row.total-row {
  border-top: 2px solid #1a1a1a;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}
.order-items-section .order-summary .summary-row.total-row .total-amount {
  color: #8b4cdb;
}

.order-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.order-details-sidebar .info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.order-details-sidebar .info-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.order-details-sidebar .info-card .card-title i {
  color: #8b4cdb;
}
.order-details-sidebar .info-card .card-content .info-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.order-details-sidebar .info-card .card-content .info-row .info-label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}
.order-details-sidebar .info-card .card-content .info-row .info-value {
  color: #1a1a1a;
  font-weight: 500;
  text-align: right;
}
.order-details-sidebar .info-card .card-content .address-block {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 0.75rem;
}
.order-details-sidebar .info-card .card-content .address-block p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.order-details-sidebar .info-card .card-content .address-block p strong {
  color: #1a1a1a;
}
.order-details-sidebar .info-card .card-content .tracking-number {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-weight: 600;
  color: #8b4cdb;
  word-break: break-all;
  font-size: 0.9rem;
}
.order-details-sidebar .info-card .card-content .payment-status {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}
.order-details-sidebar .info-card .card-content .payment-status.status-completed, .order-details-sidebar .info-card .card-content .payment-status.status-captured {
  background: #d1e7dd;
  color: #0f5132;
}
.order-details-sidebar .info-card .card-content .payment-status.status-pending {
  background: #fff3cd;
  color: #856404;
}
.order-details-sidebar .info-card .card-content .payment-status.status-failed {
  background: #f8d7da;
  color: #842029;
}
.order-details-sidebar .info-card .card-content .amount-paid {
  font-weight: 700;
  color: #8b4cdb;
}
.order-details-sidebar .info-card .card-content .reference-id {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: #666;
  word-break: break-all;
}
.order-details-sidebar .help-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.order-details-sidebar .help-card .card-title {
  color: white;
}
.order-details-sidebar .help-card .card-title i {
  color: white;
}
.order-details-sidebar .help-card .card-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.order-details-sidebar .help-card .btn-contact-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #764ba2;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
}
.order-details-sidebar .help-card .btn-contact-support:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.order-details-sidebar .order-actions-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.order-details-sidebar .order-actions-card .btn-cancel-order {
  width: 100%;
  padding: 1rem;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.order-details-sidebar .order-actions-card .btn-cancel-order:hover {
  background: #c82333;
}
.order-details-sidebar .support-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.order-details-sidebar .support-card p {
  margin: 0 0 1rem;
  color: #666;
}
.order-details-sidebar .support-card .btn-contact-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #8b4cdb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.order-details-sidebar .support-card .btn-contact-support:hover {
  background: #7a3ec5;
}

@media (max-width: 1200px) {
  .order-content-grid {
    grid-template-columns: 1fr;
  }
  .order-details-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .order-details-sidebar .help-card,
  .order-details-sidebar .support-card {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .order-detail-section {
    padding: 2rem 0;
  }
  .order-detail-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .order-detail-header .header-right {
    align-self: flex-start;
  }
  .order-progress-wrapper {
    padding: 1.5rem;
  }
  .progress-tracker {
    flex-direction: column;
    align-items: stretch !important;
  }
  .progress-tracker .progress-stage {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    margin-bottom: 1.5rem;
  }
  .progress-tracker .progress-stage .stage-icon {
    margin-right: 1rem;
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
  .progress-tracker .progress-stage .stage-info {
    flex: 1;
    text-align: left;
  }
  .progress-tracker .progress-stage .stage-connector {
    display: none !important;
  }
  .order-items-section {
    padding: 1.5rem;
  }
  .order-item-card {
    grid-template-columns: 80px 1fr !important;
    grid-template-rows: auto auto;
    gap: 1rem !important;
  }
  .order-item-card .item-image {
    width: 80px !important;
    height: 80px !important;
    grid-row: 1/3;
  }
  .order-item-card .item-info {
    grid-column: 2;
  }
  .order-item-card .item-info .product-attributes {
    flex-direction: column;
    gap: 0.5rem;
  }
  .order-item-card .item-pricing {
    grid-column: 2;
    grid-row: 2;
    align-items: flex-start !important;
    text-align: left !important;
    margin-top: 1rem;
  }
  .order-item-card .item-pricing .quantity-display {
    margin-bottom: 0.5rem;
  }
  .order-details-sidebar {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .order-item-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto;
    text-align: center;
  }
  .order-item-card .item-image {
    grid-row: 1 !important;
    grid-column: 1;
    margin: 0 auto;
  }
  .order-item-card .item-info {
    grid-column: 1;
    grid-row: 2;
  }
  .order-item-card .item-pricing {
    grid-column: 1;
    grid-row: 3;
    align-items: center !important;
    text-align: center !important;
  }
}
.orders-list-section {
  padding: 3rem 0;
  min-height: 60vh;
  background-color: #f8f9fa;
}
.orders-list-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.orders-list-section .orders-header {
  text-align: center;
  margin-bottom: 3rem;
}
.orders-list-section .orders-header .orders-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.orders-list-section .orders-header .orders-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.orders-list-section .orders-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.orders-list-section .orders-stats .stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.orders-list-section .orders-stats .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.orders-list-section .orders-stats .stat-card.stat-card-currency {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.orders-list-section .orders-stats .stat-card.stat-card-currency::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.orders-list-section .orders-stats .stat-card.stat-card-currency .stat-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 2rem;
  padding: 0.75rem;
  border-radius: 10px;
  min-width: 3.5rem;
  text-align: center;
}
.orders-list-section .orders-stats .stat-card.stat-card-currency .stat-content h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.orders-list-section .orders-stats .stat-card.stat-card-currency .stat-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  margin: 0.25rem 0 0;
  font-weight: 500;
}
.orders-list-section .orders-stats .stat-card.stat-card-currency:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}
.orders-list-section .orders-stats .stat-card .stat-icon {
  font-size: 2rem;
  color: #8b4cdb;
  background: rgba(139, 76, 219, 0.1);
  padding: 0.75rem;
  border-radius: 10px;
  min-width: 3.5rem;
  text-align: center;
  flex-shrink: 0;
}
.orders-list-section .orders-stats .stat-card .stat-content {
  flex: 1;
}
.orders-list-section .orders-stats .stat-card .stat-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.orders-list-section .orders-stats .stat-card .stat-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0.25rem 0 0;
  font-weight: 500;
}

.orders-list-section .orders-filter-panel {
  background: white !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  margin-bottom: 2rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}
.orders-list-section .orders-filter-panel .orders-filter-form {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  align-items: end !important;
}
.orders-list-section .orders-filter-panel .orders-filter-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}
.orders-list-section .orders-filter-panel .orders-filter-field-label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #666 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.orders-list-section .orders-filter-panel .orders-select-wrapper {
  position: relative !important;
}
.orders-list-section .orders-filter-panel .orders-select-wrapper .orders-select-icon {
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #8b4cdb !important;
  font-size: 0.9rem !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.orders-list-section .orders-filter-panel .orders-select-wrapper .orders-filter-select {
  width: 100% !important;
  padding: 0.875rem 2.5rem 0.875rem 2.75rem !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  color: #333 !important;
  background-color: #fafafa !important;
  transition: all 0.2s ease !important;
  appearance: none !important;
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238b4cdb' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: right 0.75rem center !important;
  background-repeat: no-repeat !important;
  background-size: 1.25em 1.25em !important;
}
.orders-list-section .orders-filter-panel .orders-select-wrapper .orders-filter-select:hover {
  background-color: white !important;
  border-color: #8b4cdb !important;
  box-shadow: 0 2px 8px rgba(139, 76, 219, 0.15) !important;
}
.orders-list-section .orders-filter-panel .orders-select-wrapper .orders-filter-select:focus {
  outline: none !important;
  background-color: white !important;
  border-color: #8b4cdb !important;
  box-shadow: 0 0 0 3px rgba(139, 76, 219, 0.1) !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-icon {
  position: absolute !important;
  left: 1rem !important;
  color: #8b4cdb !important;
  font-size: 0.9rem !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-input {
  flex: 1 !important;
  padding: 0.875rem 3.5rem 0.875rem 2.75rem !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  color: #333 !important;
  background-color: #fafafa !important;
  transition: all 0.2s ease !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-input::placeholder {
  color: #999 !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-input:hover {
  background-color: white !important;
  border-color: #8b4cdb !important;
  box-shadow: 0 2px 8px rgba(139, 76, 219, 0.15) !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-input:focus {
  outline: none !important;
  background-color: white !important;
  border-color: #8b4cdb !important;
  box-shadow: 0 0 0 3px rgba(139, 76, 219, 0.1) !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-btn {
  position: absolute !important;
  right: 0.375rem !important;
  background: #8b4cdb !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.65rem 1rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-btn:hover {
  background: #7a3ec5 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(139, 76, 219, 0.3) !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-btn:active {
  transform: translateY(0) !important;
}
.orders-list-section .orders-filter-panel .orders-search-field .orders-search-box .orders-search-btn i {
  font-size: 0.9rem !important;
}

.orders-list-section .orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.orders-list-section .orders-list .order-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.orders-list-section .orders-list .order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.orders-list-section .orders-list .order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}
.orders-list-section .orders-list .order-card-header .order-info .order-number {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.orders-list-section .orders-list .order-card-header .order-info .order-number a {
  color: #8b4cdb;
  text-decoration: none;
  transition: color 0.2s;
}
.orders-list-section .orders-list .order-card-header .order-info .order-number a:hover {
  color: #7a3ec5;
}
.orders-list-section .orders-list .order-card-header .order-info .order-date {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.orders-list-section .orders-list .order-card-header .order-info .order-date i {
  margin-right: 0.5rem;
}
.orders-list-section .orders-list .order-card-header .order-status .status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}
.orders-list-section .orders-list .order-card-header .order-status .status-badge.status-pending {
  background: #fff3cd;
  color: #856404;
}
.orders-list-section .orders-list .order-card-header .order-status .status-badge.status-received, .orders-list-section .orders-list .order-card-header .order-status .status-badge.status-processing {
  background: #d1ecf1;
  color: #0c5460;
}
.orders-list-section .orders-list .order-card-header .order-status .status-badge.status-shipped {
  background: #cfe2ff;
  color: #084298;
}
.orders-list-section .orders-list .order-card-header .order-status .status-badge.status-delivered {
  background: #d1e7dd;
  color: #0f5132;
}
.orders-list-section .orders-list .order-card-header .order-status .status-badge.status-cancelled, .orders-list-section .orders-list .order-card-header .order-status .status-badge.status-refunded {
  background: #f8d7da;
  color: #842029;
}
.orders-list-section .orders-list .order-items-preview-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact:hover {
  border-color: #8b4cdb;
  box-shadow: 0 2px 8px rgba(139, 76, 219, 0.15);
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-image-compact {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-image-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-image-compact .item-image-placeholder-compact {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.5rem;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact {
  flex: 1;
  min-width: 0;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact .item-title-compact {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact .product-attributes-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact .product-attributes-compact .attribute-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact .product-attributes-compact .attribute-compact .attribute-label-compact {
  font-weight: 600;
  color: #999;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact .product-attributes-compact .attribute-compact .attribute-value-compact {
  color: #666;
  background: #f8f9fa;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact .item-sku-compact {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: #999;
  font-family: "Courier New", monospace;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-info-compact .item-sku-compact i {
  color: #8b4cdb;
  font-size: 0.85rem;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-pricing-compact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 100px;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-pricing-compact .quantity-display-compact {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: #f8f9fa;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-pricing-compact .quantity-display-compact .qty-label-compact {
  font-size: 0.7rem;
  color: #999;
  font-weight: 600;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-pricing-compact .quantity-display-compact .qty-value-compact {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
}
.orders-list-section .orders-list .order-items-preview-list .order-item-card-compact .item-pricing-compact .line-total-compact .total-value-compact {
  font-size: 1rem;
  font-weight: 700;
  color: #8b4cdb;
}
.orders-list-section .orders-list .order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}
.orders-list-section .orders-list .order-card-footer .order-total .total-label {
  font-size: 0.9rem;
  color: #666;
  margin-right: 0.5rem;
}
.orders-list-section .orders-list .order-card-footer .order-total .total-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
}
.orders-list-section .orders-list .order-card-footer .order-actions .btn-view-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #8b4cdb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.orders-list-section .orders-list .order-card-footer .order-actions .btn-view-order:hover {
  background: #7a3ec5;
}
.orders-list-section .orders-list .order-card-footer .order-actions .btn-view-order i {
  transition: transform 0.2s;
}
.orders-list-section .orders-list .order-card-footer .order-actions .btn-view-order:hover i {
  transform: translateX(4px);
}

.orders-list-section .empty-orders {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.orders-list-section .empty-orders .empty-icon {
  font-size: 5rem;
  color: #ddd;
  margin-bottom: 1rem;
}
.orders-list-section .empty-orders h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}
.orders-list-section .empty-orders p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}
.orders-list-section .empty-orders .btn-clear-filters,
.orders-list-section .empty-orders .btn-start-shopping {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #8b4cdb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.orders-list-section .empty-orders .btn-clear-filters:hover,
.orders-list-section .empty-orders .btn-start-shopping:hover {
  background: #7a3ec5;
}

.orders-list-section .pagination-wrapper {
  margin-top: 3rem;
}
.orders-list-section .pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.orders-list-section .pagination-wrapper .pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: white;
  color: #8b4cdb;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.orders-list-section .pagination-wrapper .pagination .page-link:hover {
  background: #8b4cdb;
  color: white;
}
.orders-list-section .pagination-wrapper .pagination .page-info {
  padding: 0 1rem;
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 992px) {
  .orders-list-section .orders-filter-panel .orders-filter-form {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .orders-list-section .orders-filter-panel .orders-filter-form .orders-search-field {
    grid-column: 1/-1 !important;
  }
}
@media (max-width: 768px) {
  .orders-list-section .orders-header .orders-title {
    font-size: 2rem;
  }
  .orders-list-section .orders-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .orders-list-section .orders-stats .stat-card {
    padding: 1rem;
  }
  .orders-list-section .orders-stats .stat-card .stat-icon {
    font-size: 1.5rem;
    min-width: 2.5rem;
    padding: 0.5rem;
  }
  .orders-list-section .orders-stats .stat-card .stat-content h3 {
    font-size: 1.3rem;
  }
  .orders-list-section .orders-stats .stat-card .stat-content p {
    font-size: 0.75rem;
  }
  .orders-list-section .orders-stats .stat-card.stat-card-currency .stat-content h3 {
    font-size: 1.2rem;
  }
  .orders-list-section .orders-stats .stat-card.stat-card-currency .stat-content p {
    font-size: 0.7rem;
  }
  .orders-list-section .orders-filter-panel {
    padding: 1.5rem !important;
  }
  .orders-list-section .orders-filter-panel .orders-filter-form {
    grid-template-columns: 1fr !important;
  }
  .orders-list-section .order-card-header {
    flex-direction: column;
    gap: 1rem;
  }
  .orders-list-section .order-item-card-compact {
    grid-template-columns: 50px 1fr !important;
    grid-template-rows: auto auto;
    gap: 0.75rem !important;
  }
  .orders-list-section .order-item-card-compact .item-image-compact {
    width: 50px !important;
    height: 50px !important;
    grid-row: 1/3;
  }
  .orders-list-section .order-item-card-compact .item-info-compact {
    grid-column: 2;
  }
  .orders-list-section .order-item-card-compact .item-info-compact .product-attributes-compact {
    flex-direction: column;
    gap: 0.25rem;
  }
  .orders-list-section .order-item-card-compact .item-pricing-compact {
    grid-column: 2;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
  .orders-list-section .order-card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .orders-list-section .order-card-footer .order-actions {
    text-align: center;
  }
  .orders-list-section .order-card-footer .order-actions .btn-view-order {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .orders-list-section .orders-stats {
    grid-template-columns: 1fr;
  }
  .orders-list-section .order-item-card-compact {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .orders-list-section .order-item-card-compact .item-image-compact {
    grid-row: 1 !important;
    grid-column: 1;
    margin: 0 auto;
  }
  .orders-list-section .order-item-card-compact .item-info-compact {
    grid-column: 1;
    grid-row: 2;
  }
  .orders-list-section .order-item-card-compact .item-pricing-compact {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
  }
}
.order-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 10px 0;
}
.order-dashboard-header .title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.order-dashboard-header .title-row h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
}
.order-dashboard-header .timestamp {
  color: #666;
  font-size: 14px;
  margin: 0;
}
.order-dashboard-header .badge-row {
  display: flex;
  gap: 8px;
}
.order-dashboard-header .header-actions {
  display: flex;
  gap: 10px;
}

.order-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}
@media (max-width: 1100px) {
  .order-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}
.dashboard-card .card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #333;
}
.dashboard-card .card-sub-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin: 0 0 15px 0;
}

/* Status Pills */
.status-pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: #f0f0f0;
}
.status-pill.alert {
  background: #ffebee;
  color: #c62828;
}
.status-pill.store {
  background: #e8f5e9;
  color: #2e7d32;
}
.status-pill.status-pending {
  background: #fff8e1;
  color: #f57f17;
}

/* Stepper */
.progress-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 10px 0;
}
.progress-stepper .step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
}
.progress-stepper .step::after {
  content: "";
  height: 4px;
  width: 100%;
  background: #eee;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
}
.progress-stepper .step.completed {
  color: #8b4cdb;
}
.progress-stepper .step.completed::after {
  background: #8b4cdb;
}
.progress-stepper .step.active {
  color: #333;
}
.progress-stepper .step.active::after {
  background: #8b4cdb;
}

/* Items List */
.order-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5;
}
.order-item:last-child {
  border-bottom: none;
}
.order-item .item-name {
  font-weight: 700;
  color: #1a1a1a;
}
.order-item .item-meta {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}
.order-item .sku {
  margin-right: 15px;
}
.order-item .item-total {
  font-weight: 800;
  color: #333;
}

/* Timeline */
.timeline-event {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-left: 2px solid #eee;
  padding-left: 20px;
  margin-left: 10px;
  position: relative;
}
.timeline-event::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  position: absolute;
  left: -6px;
  top: 0;
}
.timeline-event .event-time {
  font-size: 12px;
  color: #999;
  width: 80px;
}
.timeline-event .event-status {
  font-weight: 700;
  font-size: 14px;
}
.timeline-event .event-actor {
  font-size: 12px;
  color: #666;
}
.timeline-event .event-notes {
  font-style: italic;
  font-size: 13px;
  margin-top: 5px;
  color: #444;
}

/* Sidebar Specifics */
.profile-block .profile-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}
.profile-block .profile-info {
  font-size: 14px;
  color: #666;
}

.address-block label {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: 700;
}
.address-block p {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.4;
}
.address-block.spacer {
  margin-top: 15px;
}

.nps-gauge {
  text-align: center;
  padding: 10px 0;
}
.nps-gauge .nps-score {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #8b4cdb;
}
.nps-gauge .nps-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
}

/* Buttons */
.btn-action {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.btn-action.primary {
  background: #8b4cdb;
  color: #fff;
}
.btn-action.secondary {
  background: #f0f0f0;
  color: #333;
}

.empty-state {
  color: #999;
  font-style: italic;
  font-size: 14px;
  text-align: center;
}

/* Share base styles with Details for consistency */
.order-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.order-dashboard-header .title-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.order-dashboard-header .title-row h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}
.order-dashboard-header .timestamp {
  color: #888;
  margin: 5px 0 0 0;
  font-size: 14px;
}

.dashboard-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

/* Filter Specifics */
.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .filter-grid {
    grid-template-columns: 1fr;
  }
}
.filter-grid label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-control, .multi-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
  font-family: inherit;
}

.multi-select {
  height: 100px;
}

.quick-period-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.quick-period-links .period-btn {
  font-size: 12px;
  text-decoration: none;
  color: #8b4cdb;
  font-weight: 700;
  padding: 4px 8px;
  background: #f3ebff;
  border-radius: 4px;
}
.quick-period-links .period-btn:hover {
  background: #8b4cdb;
  color: #fff;
}

.date-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.date-row .date-input {
  flex: 1;
}
.date-row .date-input input {
  width: 100%;
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* Table Specifics */
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-table thead th {
  text-align: left;
  padding: 12px 15px;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  border-bottom: 2px solid #f0f0f0;
}
.dashboard-table tbody tr {
  border-bottom: 1px solid #f9f9f9;
  transition: background 0.2s;
}
.dashboard-table tbody tr:hover {
  background: #fafafa;
}
.dashboard-table tbody tr.row-alert {
  background: #fff9f9;
}
.dashboard-table tbody tr.row-alert td {
  color: #c62828;
}
.dashboard-table td {
  padding: 15px;
  vertical-align: middle;
  font-size: 14px;
}

.order-link {
  color: #8b4cdb;
  text-decoration: none;
  font-weight: 900;
}
.order-link:hover {
  text-decoration: underline;
}

.store-label {
  font-weight: 700;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 3px 8px;
  border-radius: 4px;
}

.pill-alert {
  background: #ffebee;
  color: #c62828;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}

.nps-mini-gauge {
  margin-top: 4px;
}
.nps-mini-gauge .nps-val {
  color: #8b4cdb;
  font-weight: 800;
  font-size: 12px;
  margin-right: 5px;
}

/* Status Pills Logic (Shared or defined here) */
.status-pill {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  background: #eee;
}
.status-pill.status-pending {
  background: #fff8e1;
  color: #f57f17;
}
.status-pill.status-delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.btn-ops {
  text-decoration: none;
  background: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.btn-ops:hover {
  background: #000;
}

/* Utilities */
.bold {
  font-weight: 700;
}

.muted {
  color: #888;
}

.small {
  font-size: 12px;
}

.d-block {
  display: block;
}

.dashboard-pagination {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.dashboard-pagination .pagination-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dashboard-pagination .pagination-nav .page-btn {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.dashboard-pagination .pagination-nav .page-btn:hover {
  background: #f0f0f0;
}

.order-track {
  padding: 2.5rem 1rem 4rem;
}
.order-track__inner {
  max-width: 520px;
  margin: 0 auto;
}
.order-track__title {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1f2a26;
}
.order-track__subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5f6b66;
}
.order-track__card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #dfe3e1;
  border-radius: 12px;
}
.order-track__card--sent {
  text-align: center;
  background: #f6f5ee;
  border-color: #5d7b6f;
}
.order-track__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: #eae7d6;
  color: #5d7b6f;
  font-size: 1.3rem;
}
.order-track__card-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2a26;
}
.order-track__text {
  margin: 0 0 0.75rem;
  line-height: 1.55;
  color: #1f2a26;
}
.order-track__hint, .order-track__help {
  font-size: 0.85rem;
  color: #5f6b66;
}
.order-track__hint {
  margin: 0 0 1.25rem;
}
.order-track__help {
  margin-top: 0.3rem;
}
.order-track__field {
  margin-bottom: 1.1rem;
}
.order-track__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2a26;
}
.order-track__error {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: #b3261e;
}
.order-track__btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid #5d7b6f;
  border-radius: 8px;
  background: #fff;
  color: #5d7b6f;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.order-track__btn:hover {
  background: #eae7d6;
  color: #5d7b6f;
}
.order-track__btn:focus-visible {
  outline: 3px solid #a4c3a2;
  outline-offset: 2px;
}
.order-track__btn--primary {
  display: block;
  width: 100%;
  background: #5d7b6f;
  color: #fff;
}
.order-track__btn--primary:hover {
  background: #4a6459;
  color: #fff;
}
.order-track__signin {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  text-align: center;
  color: #5f6b66;
}
.order-track__signin a {
  color: #5d7b6f;
  font-weight: 600;
}

.orders-guest-note {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #5f6b66;
}
.orders-guest-note a {
  color: #5d7b6f;
  font-weight: 600;
}

* {
  box-sizing: border-box;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

html {
  scroll-behavior: smooth;
}

/*# sourceMappingURL=main.css.map */
