.atmostore-search-section {
  position: relative;
  width: 100%;
  margin: 0px 0 40px 0;
  padding: 0;
  z-index: 1;
}

.atmostore-search-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 28px 30px 30px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.atmostore-search-heading {
  margin-bottom: 22px;
}

.atmostore-search-heading-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.atmostore-search-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .atmostore-search-icon img {
    max-width: 52px;
    max-height: 52px;
    display: block;
  }

.atmostore-search-title-wrap h2 {
  margin: 12px 0 6px 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: -0.4px;

}

.atmostore-search-title-wrap h5 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #6c6c6c;
}

.atmostore-form {
  width: 100%;
  margin: 0;
}

.atmostore-finder-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.atmostore-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
}

  .atmostore-field label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2e2e2e;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

.atmostore-select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: #ffffff;
  color: #2a2a2a;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

  .atmostore-select:focus {
    border-color: #66b8a0;
    box-shadow: 0 0 0 2px rgba(102, 184, 160, 0.12);
  }

.atmostore-button-wrap {
  flex: 0 0 190px;
}

.atmostore-search-btn {
  width: 100%;
  height: 54px;
  border: none;
  background: red;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

  .atmostore-search-btn:hover {
    background: #222;
  }

@media (max-width: 991px) {
  .atmostore-search-inner {
    padding: 24px 22px;
  }

  .atmostore-search-title-wrap h2 {
    font-size: 28px;
  }

  .atmostore-button-wrap {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .atmostore-search-section {
    margin: 20px 0 30px 0;
  }

  .atmostore-search-inner {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .atmostore-search-heading-left {
    align-items: flex-start;
    gap: 12px;
  }

  .atmostore-search-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

    .atmostore-search-icon img {
      max-width: 38px;
      max-height: 38px;
    }

  .atmostore-search-title-wrap h2 {
    font-size: 22px;
  }

  .atmostore-search-title-wrap p {
    font-size: 14px;
  }

  .atmostore-finder-row {
    display: block;
  }

  .atmostore-field {
    width: 100%;
    margin-bottom: 14px;
  }

    .atmostore-field:last-child {
      margin-bottom: 0;
    }
}
.atmostore-category-validation {
  display: none;
  width: 100%;
  flex: 0 0 100%;
  margin-top: 12px;
  color: #c62828;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}