/* Original Desktop Styles */
header {
  position: absolute;
  width: 100%;
  z-index: 111;
  top: 80px;
  left: 0;
  padding: 0 140px;
}

header .top-row {
  padding-bottom: 28px;
  border-bottom: 1px dashed #cccccc59;
}

header .top-row .top-col-left {
  padding-left: 0;
}

header .header-navs-left ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 0;
}

header .header-navs-left ul li a {
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

header .header-navs-right ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-left: 0;
  margin-top: 14px;
  margin-bottom: 0;
}

header .header-navs-right ul li button {
  background-color: #ffd26d;
  width: 55px;
  height: 55px;
  border-radius: 100px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

header .header-navs-right ul li .basket {
  position: relative;
  overflow: unset;
}

header .header-navs-right ul li .basket span {
  color: var(--white-color);
  background: linear-gradient(180deg, #565e15 0%, #868d30 100%);
  width: 24px;
  height: 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7px;
  right: -4px;
  font-size: 12px;
  font-weight: 600;
}

.header-navs-right ul li a {
  color: #0d401c;
  background-color: var(--white-color);
  padding: 5px 5px 5px 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  text-decoration: none;
  font-size: 16px;
}

.header-navs-right ul li a span {
  background-color: #ffd26d;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

/* Mobile Hamburger Button */
.mobile-hamburger {
  background-color: #ffd26d;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.desktop-only {
  display: block;
}

/* Simple Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  background: #ffd26d;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sidebar-content {
  padding: 20px;
}

.sidebar-nav {
  margin: 30px 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-actions {
  margin-top: 30px;
}

.sidebar-actions button,
.sidebar-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.sidebar-actions button {
  background: #ffd26d;
  color: #565E15;
}

.sidebar-actions a {
  background: #0d401c;
  color: white;
}


@media (max-width: 991px) {
  header {
    padding: 0 40px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  header {
    /* padding: 0 20px; */
    top: 66px;
  }
  
  .desktop-only {
    display: none;
  }
  
  .header-logo img {
    height: 50px;
    width: auto;
  }
  
  .mobile-sidebar {
    width: 280px;
    right: -280px;
  }
}

@media (max-width: 575px) {
  header {
    padding: 0 15px;
  }
  
  .header-logo img {
    height: 45px;
  }
  
  .mobile-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 400px) {
  .header-logo img {
    height: 40px;
  }
  
  .mobile-hamburger {
    width: 40px;
    height: 40px;
  }
}