body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar-t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
  max-height: 30px;
}

.left {
  display: flex;
  gap: 25px;
  margin-left: 200px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin-right:200px ;
}

.menu li a {
  text-decoration: none;
  color: black;
}


.navbar-b {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  margin-left: 200px;
  margin-right: 200px;
}

.logo {
  height: 50px;
}

.search-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 15px;
  border: 2px solid black;
  border-radius: 30px;
  overflow: hidden;
}

.search-input {
  flex-grow: 1;
  border: none;
  padding: 10px;
  font-size: 16px;
  outline: none;
}

.category-dropdown {
  border: none;
  /* padding: 10px; */
  outline: none;
}

.search-button {
  background-color: #3460E9;
  color: white;
  padding: 10px 50px;
  border: 1px solid #3460E9;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
}
.search-button:hover{
  background-color: #3628E5;
}

.advanced-search {
  color: #898989;
  text-decoration: none;
  font-size: 13px;
}

.advanced-search:hover{
  color: #3460E9;
}

/* Sort by category style */
.category-btn {
  background: white;
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #898989;
}

.category-btn:hover {
  background: #f3f3f3;
}

.category-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  gap: 50px;
  width: 600px;
  top: 100%;
  left: 0;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.column {
  flex: 1;
  min-width: 150px;
  padding: 10px;
}

.column h4 {
  margin: 5px 0;
  font-size: 16px;
}

.column p {
  margin: 5px 0;
  font-size: 13px;
  color: #898989;
  cursor: pointer;
}

.column p:hover {
  text-decoration: underline;
}

/* Show dropdown on hover */
.category-dropdown:hover .dropdown-content {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.search-input {
  flex-grow: 1;
  padding: 10px;
  margin-left: 20px;
  font-size: 14px;
}
hr{
  opacity: 70%;
  margin-top: 0;
}

/* Responsive Styles for Top navbar upto here */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-t {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
  }

  .left {
      flex-wrap: wrap;
      gap: 10px;
      margin-left: 0;
  }

  .menu {
      display: none;
      flex-direction: column;
      width: 100%;
      padding-top: 10px;
  }

  .menu.active {
      display: flex;
  }

  .menu-toggle {
      display: block;
  }
}


/* Responsive for seacbar navbar*/
@media (max-width: 768px) {
  .search-bar {
      flex-direction: column;
      align-items: center;
  }

  .search-container {
      width: 100%;
  }

  .search-input {
      width: 100%;
  }
}
.brand-outlet {
  padding: 40px 0;
  background-color: #f4f4f4;
}

.outlet-title {
  font-size: 36px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.section-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-content {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.section-title + .section-content {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 20px;
}

.section-title + .section-content:first-child {
  border-top: none;
}

@media (max-width: 768px) {
  .outlet-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .content-section {
    padding: 0 15px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section-content {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}


.same-footer {
  margin-top: 20px;
  font-size: 14px; 
  padding-top: 12px;
  text-align: center;
  }

  .same-footer p {
  margin: 0;
  }

  .same-link {
  color: #3b82f6; 
  text-decoration: none;
  }

  .same-link:hover {
  text-decoration: underline;
  }
