/* ICR Header Scoped Styles */
.icr-header {
  background: #8b7355;
  padding: 16px 20px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.icr-btn{
    background-color: #f5f3f0;
    color: #8b7355;   
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
}
.icr-header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icr-header-logo img {
  height: 80px;
}

.icr-header-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.icr-header-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.icr-header-links li a {
  color: white;
  font-size: 16px;
  transition: color 0.3s;
  text-decoration: none;
}


.icr-header-links li a:hover {
color: white;
}

.icr-hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .icr-header-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background: #8b7355;
    padding: 20px;
    gap: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    width: 200px;
  }

  .icr-header-links.icr-active {
    display: flex;
  }

  .icr-hamburger {
    display: block;
    margin-left: 20px;

  }
}
.clr li a{
  background-color: #f5f3f0;
  color: #8b7355;
}