@import url("https://fonts.googleapis.com/css2?family=Lato&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Lato", sans-serif;
}

/*body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  width: 100%;
}

.flip-card {
  background-color: transparent;
  height: 250px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.flip-card-front {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flip-card-back {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.shop-image {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
}

.shop-image img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.shop-name {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.shop-title {
  color: #7f8c8d;
  font-size: 16px;
}

.address-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.address-details {
  line-height: 1.8;
  font-size: 13px;
  padding-top: 10px;
}
.address-details a {
  color: #fff;
  text-decoration: none;
}

.address-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  margin-top: 40px;
  text-align: center;
  color: #7f8c8d;
  padding: 20px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  .logo-container {
    margin-bottom: 15px;
    justify-content: center;
  }
  .search-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .directorypage .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
@media (max-width: 600px) {
  .directory-grid {
    grid-template-columns: 1fr;
  }
}
.directorypage .nav-tabs {
  background-image: linear-gradient(to right, #413fa1, #3d9ae6);
  border-radius: 30px;
  padding: 10px 50px;
}
.directorypage .nav-tabs .nav-link {
  color: #fff;
  border-radius: 30px;
  white-space: nowrap;
}
.directorypage .nav-tabs .nav-link:hover {
  border: 1px solid #ed791b;
  background-color: #ed791b;
}
.directorypage .nav-tabs .nav-link.active {
  border: 1px solid #ed791b;
  background-color: #ed791b;
}

.png-bg {
  background-color: #fff;
}

.directory .page-link {
  color: #666;
}/*# sourceMappingURL=styles.css.map */