/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Bar Info */
.top-bar-info {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
  padding: 8px 0;
  font-size: 12px;
  color: #555;
}

.top-bar-info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-sm {
  font-size: 12px;
}

/* Top Bar (Header) */
.top-bar {
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 1px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.top-bar-logo {
  flex: 0 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #ee4d2d; /* Shopee orange */
  text-transform: uppercase;
}

/* Search Bar */
.top-bar-search {
  flex: 1;
  max-width: 600px;
  margin: 0 20px;
}

.search-form {
  display: flex;
  align-items: center;
  border: 2px solid #ee4d2d;
  border-radius: 2px;
  background-color: #fff;
  overflow: hidden;
}

.search-input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
}

.search-button {
  background-color: #ee4d2d;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button i {
  color: #fff;
  font-size: 16px;
}

/* Navigation */
.top-bar-nav {
  flex: 0 0 auto;
  margin-left: auto; /* Pushes nav to the far right on desktop */
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-item {
  margin-left: 20px;
}

.nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: #ee4d2d;
}

.nav-link i {
  font-size: 20px;
  margin-right: 5px;
}

.nav-text {
  display: inline-block;
}

.btn-shopee-outline {
  border: 1px solid #ee4d2d;
  border-radius: 2px;
  padding: 6px 15px;
  color: #ee4d2d;
  font-weight: 500;
}

.btn-shopee-outline:hover {
  background-color: #ee4d2d;
  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  .top-bar-logo {
    flex: 0 0 auto;
  }

  .logo-text {
    display: none;
  }

  .top-bar-search {
    flex: 1;
    margin: 0 10px 0 15px;
  }

  .search-form {
    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
    flex: 0 0 auto;
    order: 3;
  }

  .top-bar-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .top-bar-nav-mobile.active {
    display: block;
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin-top: 10px;
  }

  .nav-item {
    margin: 8px 0; /* Reduced from 15px */
    width: 100%;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 0; /* Reduced from 8px */
    width: 100%;
    transition: background-color 0.2s, color 0.2s;
  }

  .nav-link:hover {
    background-color: #ffe8e0;
    color: #ee4d2d;
  }

  .btn-shopee-outline {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 6px 0;
    transition: background-color 0.2s, color 0.2s;
  }

  .btn-shopee-outline:hover {
    background-color: #ee4d2d;
    color: #fff;
  }

  .mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  .mobile-menu-close i {
    color: #333;
    font-size: 24px;
  }

  .mobile-menu-close:hover i {
    color: #ee4d2d;
  }
}

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 0; /* Reduced from 60px */
  color: #fff;
  text-align: center;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(191, 191, 191,0.3 ); /* Dark overlay for readability */
  z-index: -1;
}

.ev-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ev-hero-breadcrumbs {
  margin-bottom: 15px;
  font-size: 14px;

}

.breadcrumb-link {
  color: #f56b45;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: #ee4d2d; /* Shopee orange */
}

.breadcrumb-separator {
  color: #fff;
  margin: 0 8px;
}

.ev-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #f56b45;
  margin: 0;
  line-height: 1.2;
}

.ev-hero-cta {
  display: inline-block;
  background-color: #ee4d2d; /* Shopee orange */
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
 
}

.ev-hero-cta:hover {
  background-color: #d43c1e; /* Darker orange for hover */
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 0; /* Reduced from 40px */
  }

  .ev-hero-title {
    font-size: 24px;
  }

  .ev-hero-cta {
    padding: 10px 20px;
    font-size: 16px;
  }

  .ev-hero-breadcrumbs {
    font-size: 12px;
  }
}
.bg-shopee {
  background-color: white !important;
}

.top-bar-info-inner, .top-bar-info-inner a {
  color: black !important;
}