* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Roboto";
  src: url("/Fonts/static/Roboto-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

/* Style de la navbar */
.navbar {
  background-color: transparent;
  padding: 1rem 0;
}

/* Style du menu burger */
.burger-menu {
  width: 40px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 5px;
  transition: all 0.3s ease;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu:hover span {
  background-color: #adb5bd;
}

.burger-menu:hover span:nth-child(1) {
  transform: translateY(-2px);
}

.burger-menu:hover span:nth-child(3) {
  transform: translateY(2px);
}

/* Style de la sidebar */
#sidebar {
  width: 280px;
  background-color: rgba(33, 37, 41, 0.98);
  backdrop-filter: blur(10px);
}

/* Style des liens de navigation */
#sidebar .nav-link {
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

#sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: #0dfd69ff;
  padding-left: 1.75rem !important;
}

body {
  background-image: url("../images/BOTW.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.display-5 {
  color: rgb(238, 197, 17);
  margin-top: 3rem;
  text-align: center;
}

.container.text-center {
  margin-top: 3rem;
  text-align: center;
}

.col-custom {
  margin-top: 3rem;
  text-align: center;
}

.img-small {
  max-width: 100%;
  height: auto;
}

.card-body {
  text-align: center;
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }
  .lead {
    font-size: 0.95rem;
  }
  .card img {
    height: 180px;
    object-fit: cover;
  }
}

.commandes-container {
  max-width: 1400px;
  margin: 50px auto;
  padding: 20px;
}

.page-header {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  padding: 40px 50px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.page-header h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.user-greeting {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-top: 15px;
  font-weight: 300;
}

.tabs-container {
  background: rgba(255, 255, 255, 0.98);
  padding: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tabs {
  display: flex;
  border-bottom: 3px solid #eee;
  padding: 0;
  margin: 0;
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.tab-btn {
  flex: 1;
  padding: 22px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  color: #666;
  position: relative;
}

.tab-btn.active {
  background: #fff;
  color: #ff00ff;
  border-bottom: 4px solid #ff00ff;
}

.tab-btn.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
}

.tab-btn:hover:not(.active) {
  background: rgba(255, 0, 255, 0.1);
  color: #ff00ff;
}

.tab-content {
  padding: 40px 30px;
}

.orders-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.orders-table thead {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.orders-table th {
  padding: 18px 15px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.2px;
  border-bottom: 3px solid #ff00ff;
}

.orders-table td {
  padding: 22px 15px;
  border-bottom: 1px solid #eee;
  background: white;
}

.orders-table tbody tr {
  transition: all 0.3s ease;
}

.orders-table tbody tr:hover {
  background: linear-gradient(
    to right,
    rgba(255, 0, 255, 0.05),
    rgba(0, 255, 255, 0.05)
  );
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 0, 255, 0.15);
}

.order-number {
  font-weight: 700;
  color: #333;
  font-size: 16px;
}

.status-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-paid {
  background: linear-gradient(135deg, #00c851 0%, #007e33 100%);
  color: white;
}

.status-pending {
  background: linear-gradient(135deg, #ffbb33 0%, #ff8800 100%);
  color: white;
}

.status-shipped {
  background: linear-gradient(135deg, #33b5e5 0%, #0099cc 100%);
  color: white;
}

.status-delivered {
  background: linear-gradient(135deg, #aa66cc 0%, #9933cc 100%);
  color: white;
}

.status-processing {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
}

.btn-details {
  background: linear-gradient(135deg, #ff00ff 0%, #ff0080 100%);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(255, 0, 255, 0.3);
}

.btn-details:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255, 0, 255, 0.5);
  background: linear-gradient(135deg, #ff0080 0%, #ff00ff 100%);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.empty-state-icon {
  font-size: 96px;
  margin-bottom: 30px;
  opacity: 0.4;
  animation: float 3s ease-in-out infinite;
}

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

.empty-state h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.empty-state p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

.btn-shop {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff00ff 0%, #ff0080 100%);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(255, 0, 255, 0.3);
}

.btn-shop:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 0, 255, 0.5);
  background: linear-gradient(135deg, #ff0080 0%, #ff00ff 100%);
  color: white;
}

.total-amount {
  font-size: 18px;
  font-weight: 700;
  color: #ff00ff;
}

@media (max-width: 1200px) {
  .orders-table {
    font-size: 13px;
  }

  .orders-table th,
  .orders-table td {
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .tab-btn {
    font-size: 11px;
    padding: 15px 10px;
  }

  .orders-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* FOOTER GAMER / NEON */
.footer-custom {
  background: rgba(0, 0, 0, 0.7);
  border-top: 2px solid #0ce44cff;
  color: #e2ffe6;
  font-family: "Roboto", sans-serif;
}

/* TITRES */
.footer-title {
  color: #0ce44cff;
  font-size: 1.7rem;
  font-weight: bold;
  text-shadow: 0 0 8px #0ce44cff;
}

.footer-section {
  color: #9afc9aff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #0ce44cff;
}

/* TEXTE */
.footer-text {
  opacity: 0.85;
}

/* LIENS */
.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  text-decoration: none;
  color: #cfffda;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #0ce44cff;
  text-shadow: 0 0 10px #0ce44cff;
}

/* ICONES RESEAUX SOCIAUX */
.social-icons .social-link {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #cfffda;
  transition: 0.3s;
}

.social-icons .social-link:hover {
  color: #0ce44cff;
  text-shadow: 0 0 10px #0ce44cff;
}

/* BAS DE PAGE */
.footer-bottom {
  border-top: 1px solid rgba(12, 228, 76, 0.4);
}

.footer-copy {
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-custom {
    text-align: center;
  }
}
