.order-detail-page {
  background: #fff !important;
  border-radius: 15px !important;
  padding: 30px !important;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(212, 175, 55, 0.1) !important;
  margin: 0 !important;
}
.order-detail-page .order-detail-header {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  margin-bottom: 30px !important;
  padding-bottom: 20px !important;
  border-bottom: 2px solid #f1f3f4 !important;
}
.order-detail-page .order-detail-header .header-icon {
  background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin-right: 20px !important;
  -webkit-box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
          box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}
.order-detail-page .order-detail-header .header-icon i {
  font-size: 24px !important;
  color: #fff !important;
}
.order-detail-page .order-detail-header .header-content h1 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #2c1810 !important;
  margin: 0 0 5px 0 !important;
}
.order-detail-page .order-detail-header .header-content .order-date {
  color: #6c757d !important;
  font-size: 16px !important;
  margin: 0 !important;
}
.order-detail-page .order-summary-card {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%) !important;
  border-radius: 15px !important;
  padding: 25px !important;
  margin-bottom: 30px !important;
  color: #fff !important;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}
.order-detail-page .order-summary-card .summary-grid {
  display: -ms-grid !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 20px !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label {
  font-size: 14px !important;
  color: #d4af37 !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge {
  display: inline-block !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created {
  background: #ffc107 !important;
  color: #2c1810 !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed {
  background: #28a745 !important;
  color: #fff !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped {
  background: #17a2b8 !important;
  color: #fff !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered {
  background: #6f42c1 !important;
  color: #fff !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled {
  background: #dc3545 !important;
  color: #fff !important;
}
.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code {
  color: #d4af37 !important;
  font-weight: 700 !important;
}
.order-detail-page .address-cards {
  margin-bottom: 30px !important;
}
.order-detail-page .address-cards .address-card {
  background: #fff !important;
  border: 2px solid #e9ecef !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}
.order-detail-page .address-cards .address-card:hover {
  border-color: #d4af37 !important;
  -webkit-box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15) !important;
          box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15) !important;
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
}
.order-detail-page .address-cards .address-card .card-header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
  padding: 20px !important;
  border-bottom: 2px solid #e9ecef !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.order-detail-page .address-cards .address-card .card-header i {
  font-size: 20px !important;
  color: #d4af37 !important;
  margin-right: 15px !important;
}
.order-detail-page .address-cards .address-card .card-header h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #2c1810 !important;
  margin: 0 !important;
}
.order-detail-page .address-cards .address-card .card-content {
  padding: 20px !important;
}
.order-detail-page .address-cards .address-card .card-content .address-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #f1f3f4 !important;
}
.order-detail-page .address-cards .address-card .card-content .address-item:last-child {
  border-bottom: none !important;
}
.order-detail-page .address-cards .address-card .card-content .address-item .label {
  font-weight: 600 !important;
  color: #6c757d !important;
  font-size: 14px !important;
  min-width: 120px !important;
}
.order-detail-page .address-cards .address-card .card-content .address-item .value {
  color: #2c1810 !important;
  font-weight: 500 !important;
  text-align: right !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
}
.order-detail-page .address-cards .address-card .card-content .address-item.full-address {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label {
  margin-bottom: 8px !important;
  min-width: auto !important;
}
.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value {
  text-align: left !important;
  line-height: 1.5 !important;
}
.order-detail-page .address-cards .address-card.shipping-address .card-header {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb) !important;
}
.order-detail-page .address-cards .address-card.billing-address .card-header {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7) !important;
}
.order-detail-page .order-products-section {
  margin-bottom: 30px !important;
}
.order-detail-page .order-products-section .section-header {
  margin-bottom: 20px !important;
}
.order-detail-page .order-products-section .section-header h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #2c1810 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.order-detail-page .order-products-section .section-header h2 i {
  color: #d4af37 !important;
  margin-right: 15px !important;
  font-size: 20px !important;
}
.order-detail-page .order-products-section .products-table {
  background: #fff !important;
  border: 2px solid #e9ecef !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}
.order-detail-page .order-products-section .products-table .table-header {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 60px 1fr 100px 120px !important;
  grid-template-columns: 60px 1fr 100px 120px !important;
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%) !important;
  color: #fff !important;
  padding: 15px 20px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1) {
  text-align: center !important;
}
.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3) {
  text-align: center !important;
}
.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4) {
  text-align: right !important;
}
.order-detail-page .order-products-section .products-table .product-row {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 60px 1fr 100px 120px !important;
  grid-template-columns: 60px 1fr 100px 120px !important;
  padding: 15px 20px !important;
  border-bottom: 1px solid #f1f3f4 !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
.order-detail-page .order-products-section .products-table .product-row:hover {
  background: #f8f9fa !important;
}
.order-detail-page .order-products-section .products-table .product-row:last-child {
  border-bottom: none !important;
}
.order-detail-page .order-products-section .products-table .product-row .product-cell {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1) {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  font-weight: 600 !important;
  color: #6c757d !important;
}
.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3) {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  font-weight: 600 !important;
}
.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4) {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
  font-weight: 600 !important;
  color: #d4af37 !important;
}
.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a {
  color: #2c1810 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  -webkit-transition: color 0.3s ease !important;
  transition: color 0.3s ease !important;
}
.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover {
  color: #d4af37 !important;
}
.order-detail-page .order-products-section .products-table .product-row .product-cell.price {
  color: #d4af37 !important;
  font-weight: 600 !important;
}
.order-detail-page .order-summary-section .section-header {
  margin-bottom: 20px !important;
}
.order-detail-page .order-summary-section .section-header h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #2c1810 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.order-detail-page .order-summary-section .section-header h2 i {
  color: #d4af37 !important;
  margin-right: 15px !important;
  font-size: 20px !important;
}
.order-detail-page .order-summary-section .summary-table {
  background: #fff !important;
  border: 2px solid #e9ecef !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  padding: 15px 20px !important;
  border-bottom: 1px solid #f1f3f4 !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row:hover {
  background: #f8f9fa !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row:last-child {
  border-bottom: none !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row .summary-label {
  font-weight: 600 !important;
  color: #6c757d !important;
  font-size: 16px !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row .summary-value {
  font-weight: 600 !important;
  color: #2c1810 !important;
  font-size: 16px !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row.discount {
  background: #fff3cd !important;
  border-color: #ffeaa7 !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label {
  color: #856404 !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value {
  color: #e74c3c !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row.total {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%) !important;
  color: #fff !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label {
  color: #d4af37 !important;
  font-size: 18px !important;
}
.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value {
  color: #fff !important;
  font-size: 20px !important;
}
@media (max-width: 768px) {
  .order-detail-page {
    padding: 20px !important;
  }
  .order-detail-page .order-detail-header {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    text-align: center !important;
  }
  .order-detail-page .order-detail-header .header-icon {
    margin-right: 0 !important;
    margin-bottom: 15px !important;
  }
  .order-detail-page .order-summary-card .summary-grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .order-detail-page .address-cards .row {
    margin: 0 !important;
  }
  .order-detail-page .address-cards .col-lg-6 {
    padding: 0 !important;
    margin-bottom: 20px !important;
  }
  .order-detail-page .products-table .table-header,
  .order-detail-page .products-table .product-row {
    -ms-grid-columns: 40px 1fr 80px 100px !important;
    grid-template-columns: 40px 1fr 80px 100px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
  }
  .order-detail-page .summary-table .summary-row {
    padding: 12px 15px !important;
    font-size: 14px !important;
  }
}