/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.tab:hover {
  color: var(--primary);
}

.tab.active {
  border-bottom: 3px solid var(--primary);
  font-weight: bold;
  color: var(--primary);
}

/* Template Grid */
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.template-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.template-card:hover {
  transform: translateY(-5px);
}

.template-image {
  height: 180px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 3rem;
}

.template-info {
  padding: 20px;
}

.template-info h3 {
  margin-bottom: 0.5rem;
}

.template-info p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Tags */
.template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 1rem;
}

.tag {
  background-color: #f0f5ff;
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}