/* ===== Oaseeds USA Topbar ===== */
.oaseeds-usa-topbar{
  position: relative;
  width: 100%;
  background: #155b2a; /* verde Oaseeds */
  color: #fff;
  border-bottom: 1px solid rgba(0,0,0,.15);
  z-index: 99999;
}

.oaseeds-usa-topbar__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oaseeds-usa-topbar__left{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.oaseeds-usa-topbar__flag{
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.oaseeds-usa-topbar__text{
  font-size: 14px;
  line-height: 1.25;
  opacity: .98;
}

.oaseeds-usa-topbar__right{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.oaseeds-usa-topbar__cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #0f3f1d;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .12s ease, background .12s ease;
}

.oaseeds-usa-topbar__cta:hover{
  background: #0c3317;
  transform: translateY(-1px);
}

.oaseeds-usa-topbar__close{
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background .12s ease;
  opacity:.7;
}

.oaseeds-usa-topbar__close:hover{
  background: rgba(0,0,0,.12);
  opacity:1;
}

/* ===== Responsive ===== */
@media (max-width: 768px){
  .oaseeds-usa-topbar__inner{
    padding: 10px 10px;
  }
  .oaseeds-usa-topbar__text{
    font-size: 13px;
  }
}

@media (max-width: 420px){
  .oaseeds-usa-topbar__inner{
    flex-direction: column;
    align-items: stretch;
  }
  .oaseeds-usa-topbar__right{
    width: 100%;
    justify-content: space-between;
  }
  .oaseeds-usa-topbar__cta{
    flex: 1 1 auto;
    justify-content: center;
    padding: 10px 10px;
  }
}

