/* Global styles */
body {
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease;
  background: #ffffff;
  /* Set to white */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Improved Buttons */
button,
.btn {
  background: #e67e22 !important;
  /* Darker orange like the cart button */
  /* Same as navigation bar */
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover,
.btn:hover {
  background: linear-gradient(90deg, #ff8000, #ff6600);
  transform: scale(1.05);
}

/* Navigation Bar */
#menu {
  background: #e67e22 !important;
  /* Darker orange like the cart button */
  /* Adjusted to match the logo color */
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#menu .navbar-nav>li>a {
  color: black !important;
  font-size: 1.1em;
  padding: 12px 18px;
  transition: color 0.3s ease;
}

#menu .navbar-nav>li>a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

/* Search Box */
#search .form-control-lg {
  height: 40px;
  border-radius: 20px;
  padding: 0 15px;
}

#search .btn-lg {
  border-radius: 20px;
}

/* Product Cards */
.product-thumb {
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.product-thumb:hover {
  transform: scale(1.05);
}

.product-thumb .button {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  background: #f8f9fa;
  padding: 10px;
}

.product-thumb .button button {
  background: transparent;
  color: #222;
  border: none;
  font-size: 16px;
  flex: 1;
  text-align: center;
  transition: color 0.3s ease;
}

.product-thumb .button button:hover {
  color: #e67e22;
}

.product-thumb .button button:hover {
  transform: scale(1.1);
}

/* Footer Fix */
footer {
  width: 100%;
  padding-top: 30px;
  background-color: #303030;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
  text-align: center;
  padding-bottom: 20px;
  margin-top: auto;
}

html,
body {
  height: 100%;
}

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content {
  flex: 1;
}

footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Cool hover effect on links */
a {
  position: relative;
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: black;
}

a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0px;
  /* Hide the underline effect */
  background: transparent;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}

a:hover::after {
  transform: scaleX(1);
}