* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
	font-family: sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/*Header Section css */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 100;
   overflow-x: hidden;
  max-width: 100%;
}

.dark-header {
  position: relative; /* creates stacking context */
  z-index: 1;         /* less than announcement-bar */
  padding-top: 2.5rem;
  height: 11rem;
  overflow: hidden;
  /* background-image: url('https://static.wixstatic.com/media/nsplsh_e60baffe130143938d541483f07be49b~mv2.jpg/v1/fill/w_1351,h_690,al_c,q_85,usm_1.20_1.00_0.01,enc_avif,quality_auto/nsplsh_e60baffe130143938d541483f07be49b~mv2.jpg'); */
  background: #0F0F0FF2 url('https://static.wixstatic.com/media/nsplsh_e60baffe130143938d541483f07be49b~mv2.jpg/v1/fill/w_1351,h_690,al_c,q_85,usm_1.20_1.00_0.01,enc_avif,quality_auto/nsplsh_e60baffe130143938d541483f07be49b~mv2.jpg');
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible; /* Allow dropdown to show */
}

/* NAVIGATION BAR ON TOP */
.navbar {
    flex-wrap: wrap;
  z-index: 1000; /* higher than products-page and cart-panel */
  top: 2.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  /* ? Full transparency + glass effect */
  background: transparent; /* FULL transparency */
	backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .header-button{
	color: var(--davidoff-primary-white, #fffdfa);
    /* color: #c59949;  */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: .84px;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.05); /* Slight light overlay on dark bg */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    border-radius: 4px;
    padding: 6px 12px; /* Add padding to emphasize the hover zone */
    transition: all 0.3s ease-in-out;
}


.navbar .login-header-button{
	color: var(--davidoff-primary-white, #fffdfa);
    /* color: #c59949;  */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: .84px;
    text-transform: uppercase;
    background-color: #28a745; /* Slight light overlay on dark bg */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    border-radius: 4px;
    padding: 6px 12px; /* Add padding to emphasize the hover zone */
    transition: all 0.3s ease-in-out;
}

/* Shared Hover Effect for All Header Buttons */
.header-button:hover,
.header-button:focus {
    color: #ffffff; /* Gold hover color */
    background-color: #0F0F0FF2; /* Slight light overlay on dark bg */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    border-radius: 4px;
    padding: 6px 12px; /* Add padding to emphasize the hover zone */
    transition: all 0.3s ease-in-out;
}

/* Active / Clicked State */
.header-button:active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #e0c170;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: scale(0.98); /* Slight button press effect */
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
   align-items: center;  /* Vertically center all li elements */
    list-style: none;     /* Remove default list styling */
}

.nav-left li
.nav-right li {
    display: flex;
    align-items: center;  /* Ensure content inside <li> is vertically aligned */
}

.nav-left li a,
.nav-right li a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left li a:hover,
.nav-right li a:hover {
  color: #c59949;
}

.navbar .logo {
  width: 150px;
  height: 90px;
  overflow: hidden;
  display: flex;
  justify-content: center;  /* Center the logo inside the navbar */
}
.navbar .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-left {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start; /* Align the nav-left items to the left */
  position: absolute;
  left: 2rem; /* Add space from the left edge */
}

.nav-right {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end; /* Align the nav-right items to the right */
  position: absolute;
  right: 2rem; /* Add space from the right edge */
}


.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 9999;
}

/* Hide menu on mobile by default */
.mobile-menu {
  display: block; /* or flex with column direction */
  /* If you want flex: */
  /* display: flex; */
  /* flex-direction: column; */
  background
}

.mobile-menu ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul.nav-left,
.mobile-menu ul.nav-right {
  display: none; /* ensure ul is block */
}

.mobile-menu ul.nav-left li,
.mobile-menu ul.nav-right li {
  margin: 10px 0; /* spacing between items */
}

.mobile-menu ul li a.header-button {
  display: block; /* make the <a> full width */
  padding: 10px 15px;
  text-decoration: none;
  color: #000; /* example */
}

/* Mobile styles */
@media (max-width: 1200px) {
  .nav-left,
  .nav-right {
    display: none !important;
  }

  .hamburger {
    display: block;
	z-index: 9999;
  }
  

  .mobile-menu.show {
    display: flex;
	display: flex;
    z-index: 9998;
  }
  

  .mobile-menu.show ul li {
    text-align: center;
  }	

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	flex-direction: row; /* Maintain the row direction */
    justify-content: space-between; /* Space between items */
  }
  
   .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Ensure logo remains centered */
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff; /* Optional: match your theme */
    padding: 1rem 0;
    width: 100%;
	
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu ul {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .mobile-menu ul li {
    list-style: none;
  }

  .mobile-menu ul li a {
    display: block;
    padding: 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
  }

  .mobile-menu ul li a:hover {
    background-color: #f0f0f0;
  }
}
/*Header Section css */

    .wrapper {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f5f5f5;
      padding: 20px; /* Add padding to prevent content sticking to edges */
      box-sizing: border-box;
    }
    .signup-container {
      background: #fff;
      padding: 30px 40px;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 400px;
    }

    .signup-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    .signup-container input[type="text"],
    .signup-container input[type="email"],
    .signup-container input[type="password"] {
      width: 100%;
      padding: 12px 15px;
      margin: 8px 0 16px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .signup-container button {
      width: 100%;
      padding: 12px;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .signup-container button:hover {
      background-color: #45a049;
    }

    .signup-container p {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
    }

    .signup-container a {
      color: #4CAF50;
      text-decoration: none;
    }

    .signup-container a:hover {
      text-decoration: underline;
    }





    .login-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.input-group input[type="text"],
.input-group input[type="password"] {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.input-group input[type="text"]:focus,
.input-group input[type="password"]:focus {
  border-color: #4CAF50;
  outline: none;
}

.login-container button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #0F0F0FF2;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button[type="submit"]:hover {
  background-color: #45a049;
}

#error-msg {
  margin-top: 15px;
  color: red;
  font-size: 14px;
  text-align: center;
  min-height: 18px; /* to keep space reserved */
}

.signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.signup-link a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 600;
}

.signup-link a:hover {
  text-decoration: underline;
}

.profile-dropdown {
    position: relative;
}

#profileMenu {
  display: none !important;
}


.container {
            max-width: 1000px;
            margin: auto;
            padding: 2rem 3rem;
        }

.dataTables_filter {
  margin-bottom: 20px;
  padding-right: 10px;
  text-align: right;
}

#ordersTable thead th {
  background-color: #111; /* Dark slate header */
  color: #c59949;            /* White text */
  font-weight: 600;
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
  padding-right: 24px;
}

/* ALTERNATE ROWS */
#ordersTable tbody tr:nth-child(odd) {
  background-color: #f3f4f6; /* Light gray alternate rows */
}

#ordersTable tbody tr:nth-child(even) {
  background-color: #ffffff; /* White for even rows */
}

/* CELL TEXT ALIGNMENT */
#ordersTable td {
  text-align: left;
  vertical-align: top;
  white-space: normal;
  padding: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
#ordersTable tbody tr:hover {
  background-color: #e9ecef; /* Soft blue-gray on hover */
}


