/* ===== Tabs Style ===== */
.tab-nav {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  overflow: hidden;
}

.tab-nav li {
  padding: 0.25rem 1rem;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.2s ease;
  color: #333;
  margin: 5px;
}

.tab-nav li.active {
  background: #670ff2;
  color: #fff;
}

/* ===== Tab Contents ===== */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ===== Product Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .tab-nav {
      display: flex;
  }
}

/* ===== Product Card ===== */
.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.2s ease;
  background-color: #F7F7F8;
}

.product-card:hover {
  border-color: #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.product-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* Flag image */
.product-flag img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

/* Info */
.product-info {
  flex-grow: 1;
}
.product-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
 font-family: Poppins,Poppins Fallback !important;
    font-style: normal;
    color: #000000;
  
}
.product-info .starting-at {
  display: block;
  margin-top: 3px;
  font-size: 16px;
  color: #555;
   font-family: Poppins,Poppins Fallback !important;

}

/* Arrow */
.arrow {
  font-size: 30px;
  color: #aaa;
}

.load-more {
    background: none;
    color: #670ff2;
    margin: 0 auto;
    justify-content: center;
    display: flex
;
}