body {
  margin: 0;
  padding: 0;
}

/* * Typography */
.text-orange {
  color: #f9a01b;
}

/* ? Header */
.navbar a {
  color: white;
}
.navbar a:hover {
  color: #f9a01b;
}

/* ? Footer */
footer .phone {
  color: white;
  text-decoration: none;
}
footer .phone:hover {
  color: #f9a01b;
}

/* ? Homepage */
.hero {
  height: 550px;
  background: url("/images/hero-bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(145, 144, 144, 0.5);
  backdrop-filter: blur(1px);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-logo {
  max-width: 250px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

.our-brands {
  background-color: #e9e8e8;
}

.brand-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.brand-card img {
  max-width: 100%;
  max-height: 60px;
}

.category-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.category-card h3 {
  position: relative;
  z-index: 2;
}

.category-card:hover {
  transform: scale(1.05);
}

.category-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.3);
}

/* ? Categories page */
.product-card {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 16px;
}

/* ? Breadcrumbs */

.breadcrumb-container {
  padding: 10px;
  border-radius: 8px;
}

.breadcrumb {
  background: #f8f9fa;
  font-size: 1.1rem;
}

.breadcrumb-item a {
  color: #007bff;
  transition: color 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
  color: #ff7b00;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #ff7b00;
}
