.full-height-row {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 150px);
}

.collection-sidebar {
  background: #fff;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.col-md-9 {
  display: flex;
  flex-direction: column;
}

.sidebar-list li{
	padding:5px 0;
	color:#555;
	cursor:pointer;
	list-style: none;
}

.template-body{
	padding:15px;
}

.template-body h4{
	font-size:16px;
	font-weight:600;
}

.template-description{
	font-size:13px;
	color:#666;
}

.template-meta{
	display:flex;
	justify-content:space-between;
	font-size:12px;
	margin-top:10px;
}

.template-footer{
	margin-top:15px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.status-approved{
	color:green;
	font-weight:600;
}

.toolkits-header-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.toolkits-title {
  font-weight: 700;
  color: #000;
  margin-top: 0;
  margin-bottom: 12px;
}

.toolkits-subtitle {
  font-weight: 500;
  color: black;
  margin-bottom: 0;
}

.faq-item{
	border:1px solid #e5e5e5;
	border-radius:8px;
	margin-bottom:10px;
	padding:15px;
	background:white;
}

.faq-question{
	font-weight:600;
}

.help-banner{
	background:#1e3a8a;
	color:white;
	padding:30px;
	border-radius:10px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.no-results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.no-results-image {
  max-width: 300px;
  width: 100%;
  margin-bottom: 24px;
  opacity: 0.9;
}

.no-results-text {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

.template-grid{
	grid-template-columns:repeat(3,1fr);
	gap:18px;
}

@media (max-width: 992px) {
  .template-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .template-grid {
    grid-template-columns: 1fr;
  }
}

.template-card{
	background:white;
	border-radius:10px;
	box-shadow:0 2px 8px rgba(0,0,0,0.08);
	overflow:hidden;
	transition:all .2s;
}

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

.template-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.template-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.placeholder-image{
	width:100%;
	height:100%;
	background:#ddd;
}

.sidebar-panel {
  background: white;
  padding: 15px;
  border-radius: 4px;
  height: 100%;
}

.search-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #999;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.filters-wrapper {
  margin-top: 15px;
  overflow-y: auto;
  padding-right: 5px;
}

.filter-heading {
  font-size: 14px;
  font-weight: 700;
  color: #9e9e9e;
}

.filter-item {
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.filter-item.active {
  font-weight: bold;
  color: #000;
}

.sidebar-list {
  margin-bottom: 10px;
  list-style: none;
}

.filter-item:hover {
  color: #000;
}

.filters-wrapper::-webkit-scrollbar {
  width: 6px;
}

.filters-wrapper::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.filters-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 768px) {

  .collection-sidebar {
    border-right: none;
    padding: 10px;
  }

  .filters-section {
    display: none;
  }

  .search-input {
    display: block;
  }

  .full-height-row {
    flex-direction: column;
  }

  .container.collection-page {
    padding: 10px;
  }

  .template-card {
    margin-bottom: 10px;
  }

  .final-cta {
    padding: 30px 20px;
  }
}
