@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #349583;
  --primary-color-faded: #3495833f;
}

body {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #333;
  background-color: whitesmoke;
}

a {
  text-decoration: none;
  color: #e8f5e9;
}

/*=== Utility Classes ===*/
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.header-top {
  display: flex;
  justify-content: flex-start;
  padding: 10px 5px;
  background-color: #e8f5e9;
}

.header-top .link {
  color: #2e7d32;
  text-decoration: none;
  font-weight: bold;
  margin-right: 5px;
  border-right: 1px solid #2e7d32;
  padding-right: 5px;
  transition: 0.5s;
}

.header-top .link:hover {
  color: rgba(46, 125, 50, 0.6980392157);
  font-size: 16.5px;
  cursor: pointer;
}

.header-bottom {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
}

.menu-btn ion-icon {
  font-size: 30px;
  cursor: pointer;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 50%;
}

.main-nav a {
  margin: 0 0 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.main-nav a.active {
  color: #2e7d32;
}

.login-btn {
  background-color: #2e7d32;
  color: white;
  border: solid #2e7d32 1px;
  border-radius: 3px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.5s;
}

.login-btn:hover {
  background-color: white;
  color: black;
}

.hidden-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100vh;
  overflow: hidden;
  background: var(--primary-color);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: left 0.3s;
  z-index: 10;
  padding: 30px 0;
}
.hidden-nav .hidden-nav-bottom {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 70px;
}
.hidden-nav .hidden-nav-bottom .btm-hid-nav {
  display: flex;
  justify-content: center;
}

.hidden-nav #close-menu {
  border-radius: 20%;
  background: none;
  border: 1px solid white;
  margin-left: 10px;
}

.hidden-nav ion-icon:hover {
  color: #2e7d32;
}

.hidden-nav ion-icon {
  font-size: 40px;
  font-weight: 700px;
  color: white;
  transition: 0.5s;
}

.hidden-nav ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 50px 0;
}
.hidden-nav ul .top-link {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.hidden-nav li {
  padding: 10px 30px;
  max-width: 100%;
  transition: 0.5s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hidden-nav li:hover {
  background-color: none;
  cursor: pointer;
  border: 1px solid white;
  border-left: 6px solid white;
}

.hidden-nav button {
  margin: 10px;
  border: none;
  border-radius: 5px;
}

.hidden-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.hidden-nav .signup-btn, .hidden-nav .login-btn {
  width: 85%;
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
}

.signup-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  transition: 0.5s;
}

.signup-btn:hover {
  background-color: #2e7d32;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}

.terms {
  color: #90caf9;
  font-size: 12px;
  transition: 0.5s;
}

.terms:hover {
  color: #2e7d32;
}

main {
  padding: 10px 10px 50px 10px;
}

.store-directory h1 {
  margin: 20px 5px;
  color: #333333;
  font-size: 28px;
}

#filter-bar {
  display: flex;
  flex-direction: column;
  padding: 5px;
}

/*=== custom dropdown styles start ===*/
.custom-dropdown {
  position: relative;
  width: 100%;
  font-family: Arial, sans-serif;
  user-select: none;
}

/* Selected Item */
.dropdown-selected {
  background: #fff;
  border: 1px solid var(--primary-color);
  padding: 10px 15px;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

/* Add custom arrow */
.dropdown-selected::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.custom-dropdown.active .dropdown-selected::after {
  transform: rotate(180deg);
}

/* Dropdown Options */
.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-radius: 5px;
  z-index: 10;
}

/* Show dropdown */
.custom-dropdown.active .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

/*=== custom dropdown styles end ===*/
.search {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}

#search-input {
  width: 100%;
  padding: 21px 20px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
}

#search-input::placeholder {
  font-size: 16px;
}

#search-btn {
  background-color: var(--primary-color);
  border-radius: 0 5px 5px 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
}

#search-btn ion-icon {
  font-size: 22px;
  color: white;
}

.store-previews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.store-card {
  background: white;
  border: 1px solid #ddd;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s;
  max-width: 250px;
  border-radius: 5%;
}

.store-card:hover {
  transform: scale(1.05);
  background-color: rgba(152, 255, 152, 0.295);
}

.store-card img {
  width: 100%;
  border-radius: 5px;
}

/* For Exclusive Users*/
.store-card[alt~=Yes] {
  border: 2px solid var(--primary-color);
  /* filter: blur(2px); */ /*optional your choice*/
}

.merchant-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #e8f5e9;
  line-height: 30px;
}

.info-text h2 {
  font-size: 50px;
  color: #2e7d32;
  margin-top: 20px;
  line-height: 50px;
}

.info-text h3 {
  margin: 20px 0;
  font-size: 30px;
}

.info-text p {
  font-size: 20px;
}

.info-text button {
  padding: 10px 20px;
  background: linear-gradient(to bottom left, rgb(184, 219, 27), #8AB62E, #597001);
  box-shadow: dimgray 2px 4px 10px;
  color: white;
  border: none;
  cursor: pointer;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
}

.merchant-info img {
  margin: 15px 0;
  border-radius: 50%;
  width: 100%;
}

.footer-container {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: var(--primary-color);
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: white;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: white;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .store-previews {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 425px) {
  #filter-bar {
    min-width: 80%;
  }
  .logo img {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .header-bottom {
    justify-content: center;
  }
  .login-btn {
    display: none;
  }
}
/* Min-Width */
@media (min-width: 425px) {
  .logo img {
    width: 30%;
  }
}
@media (min-width: 550px) {
  .store-directory h1 {
    font-size: 55px;
  }
  #filter-bar {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .search {
    margin: 0;
  }
  .store-previews {
    transition: ease 0.3s;
  }
  .merchant-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 5%;
  }
  .merchant-info img {
    width: 50%;
  }
  .footer-links {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
  }
  .footer-links a {
    margin-top: 10px;
  }
  .footer-links div {
    border-bottom: none;
  }
}
@media (min-width: 769px) {
  .logo {
    justify-content: left;
  }
  .logo img {
    width: 175px;
  }
  h1 {
    font-size: 30px;
  }
}
@media (min-width: 869px) {
  .store-previews {
    grid-template-columns: repeat(4, 1fr);
  }
  main {
    width: 864px;
    margin: auto;
    background-color: whitesmoke;
  }
}
@media (min-width: 1080px) {
  main {
    width: 864px;
    margin: auto;
    background-color: whitesmoke;
  }
}
.store-list-hero {
  padding: 20px;
}
.store-list-hero .hero {
  height: 150px;
  width: 100%;
  background-image: url(/images/sprout-header-pics/1.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 90px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  display: none; /* Hide by default */
}

.bottom-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
}

.bottom-nav a ion-icon {
  display: block;
  font-size: 25px;
  margin-bottom: 5px;
  color: white;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
  }
  .store-button.active {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: white;
  }
  .store-button.active ion-icon {
    position: relative;
    top: 2px;
    color: var(--primary-color) !important;
  }
  .dashboard-button.active, .hot-deals-button.active {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: white;
  }
  .dashboard-button.active ion-icon, .hot-deals-button.active ion-icon {
    position: relative;
    top: 2px;
    color: var(--primary-color) !important;
  }
}
/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#preloader img {
  width: 150px; /* Adjust size as needed */
  animation: fadeInOut 1s infinite alternate;
}

/* Fading effect */
@keyframes fadeInOut {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
/* Hide preloader */
.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 430px) {
  .notification {
    display: none;
  }
}
@media (min-width: 430px) {
  #preloader, header, .store-list-hero, #main, .bottom-nav, .dashboard, .deal-list {
    display: none !important;
  }
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 15%;
  }
  .notification {
    display: block;
  }
}
.deal-list {
  padding: 120px 20px 50px;
  width: 100%;
}
.deal-list .deals-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url(/images/sprout-header-pics/1.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 13vh;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.deal-list .deals-hero h2 {
  color: white;
}
.deal-list h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.deal-list .deals-container-one, .deal-list .deals-container-two, .deal-list .deals-container-three {
  overflow: hidden;
  margin-block-end: 3rem;
}
.deal-list .deals-container-one .deal-slider, .deal-list .deals-container-two .deal-slider, .deal-list .deals-container-three .deal-slider {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.deal-list .deals-container-one .deal-slider .deal, .deal-list .deals-container-two .deal-slider .deal, .deal-list .deals-container-three .deal-slider .deal {
  flex-shrink: 0;
  width: 85%;
  height: 210px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 8px;
}
.deal-list .deals-container-one .deal-slider .deal .deal-image, .deal-list .deals-container-two .deal-slider .deal .deal-image, .deal-list .deals-container-three .deal-slider .deal .deal-image {
  width: 50%;
  background-image: url(/images/Cosmetics.png);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.deal-list .deals-container-one .deal-slider .deal .deal-content, .deal-list .deals-container-two .deal-slider .deal .deal-content, .deal-list .deals-container-three .deal-slider .deal .deal-content {
  width: 50%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.deal-list .deals-container-one .deal-slider .deal .deal-content p, .deal-list .deals-container-two .deal-slider .deal .deal-content p, .deal-list .deals-container-three .deal-slider .deal .deal-content p {
  font-size: 14px;
}
.deal-list .deals-container-one .deal-slider .deal .deal-content a, .deal-list .deals-container-two .deal-slider .deal .deal-content a, .deal-list .deals-container-three .deal-slider .deal .deal-content a {
  background-color: var(--primary-color);
  color: white;
  padding: 3px 5px;
  font-size: 14px;
  border-radius: 5px;
  text-align: center;
}

.dashboard {
  padding: 120px 20px 50px;
}
.dashboard .sprout-credits {
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  background-color: var(--primary-color);
}
.dashboard .sprout-credits .wallet-icon {
  color: white;
  font-size: 23px;
}
.dashboard .sprout-credits ul {
  flex-grow: 0.5;
}
.dashboard .sprout-credits ul li {
  color: white;
}
.dashboard .sprout-credits ul .credit-amount {
  font-weight: 500;
}
.dashboard .sprout-credits .credit-icon {
  font-size: 23px;
  color: white;
}

.sign-up {
  width: 100%;
  padding: 60px 60px 10px;
}
.sign-up .container {
  text-align: center;
}
.sign-up .container img {
  width: 160px;
  margin-bottom: 30px;
}
.sign-up .container form {
  width: 100%;
}
.sign-up .container form div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-end: 20px;
  border-radius: 10px;
  padding-block: 5px;
  background-color: var(--primary-color-faded);
}
.sign-up .container form div ion-icon {
  color: var(--primary-color);
}
.sign-up .container form div input {
  padding: 10px;
  background: none;
  outline: none;
  border: none;
}
.sign-up .container form div input::-webkit-input-placeholder {
  color: var(--primary-color);
}
.sign-up .container form .sign-up-button {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background-color: var(--primary-color);
  color: white;
}
.sign-up .container span {
  margin-top: 20px;
  display: inline-block;
}
.sign-up .container .sign-in-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.sign-up .container .sign-in-options ion-icon {
  font-size: 35px;
  color: var(--primary-color);
  padding: 8px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.sign-up .container p {
  font-size: 14px;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.sign-up .container p a {
  color: black;
  font-size: inherit;
  font-weight: bold;
  text-decoration: underline;
}

/*# sourceMappingURL=styles.css.map */
