.navbar,
.navbar * {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important; /* Bold */
}

/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/* ========== SECTION CONTAINER ========== */
.section-container {
  max-width: 1000px;
  width: 100%;
  margin: 60px auto;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

main {
  min-height: 80vh;
  padding-bottom: 100px;
}

/* ========== SLIDER ========== */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 40px;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .slide img {
    max-height: 250px;
    object-fit: cover;
  }
}

.navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.navigation .dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
}

.navigation .dot.active {
  opacity: 1;
  background-color: yellow;
}

/* ========== CATEGORIES ========== */
.categories {
  padding: 40px 10px;
  background-color: #f0f0f0;
  text-align: center;
}

.categories h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category {
  width: 100px;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.category-icon {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.category-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .category {
    width: 45%;
  }
}

/* ========== PROFILE ========== */
.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== CONTACT METHOD ========== */
.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-link {
  font-size: 1.2em;
  color: #007bff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* ========== HOWTO STEPS ========== */
.howto-order-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.howto-step img {
  border-radius: 10px;
}


.about-card ul {
  padding-left: 30px;
  list-style-position: outside;
}



/* ========== FOOTER ========== */
.footer {
  background-color: #45526e;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.footer-text {
  font-size: 0.9em;
  line-height: 1.5;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95em;
}

.footer-link:hover {
  text-decoration: underline;
  color: #cddc39;
}

.footer-copyright {
  margin-top: 20px;
  font-size: 0.85em;
  color: #cccccc;
}

/* ========== SIDEBAR ADMIN ========== */
.admin-sidebar {
  width: 220px;
  min-height: 100vh;
  background-color: #2c3e50;
  color: #fff;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
}

.sidebar-title {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
}

.sidebar-nav li {
  margin: 15px 0;
}

.sidebar-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.sidebar-nav a:hover {
  background-color: #34495e;
}

.admin-content {
  margin-left: 240px;
  padding: 40px;
}

@media (max-width: 768px) {
  .admin-sidebar {
    position: relative;
    width: 100%;
    min-height: auto;
  }
  .admin-content {
    margin-left: 0;
    padding: 20px;
  }
}


.category-heading h2 {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #343a40;
  position: relative;
}

.category-heading h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #0d6efd;
  margin: 12px auto 0;
  border-radius: 2px;
}

.category-heading .badge {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 30px;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.logo-hover {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-hover:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
