

.tabs {
	background: white;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	border-radius: 12px 12px 0 0
}

.tab {
	padding: 20px 32px;
	color: #666;
	font-weight: 600;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.3s
}

.tab.active {
	color: #1f183c;
    border-bottom-color: #1f183b;
}

.tab:hover {
	color: #4F46E5
}
 
.content-section {
	background: white;
	padding: 40px 0
}

.section-title {
	font-size: 30px;
	font-weight: bold;
	color: #1f2937;
	margin-bottom: 32px
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 32px
}

.product-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s;
	cursor: pointer
}

.product-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px)
}

.product-icon {
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	/*max-width: 30%;*/
	padding:2px;
}

.product-icon img{
	border-radius: 8px;
	width: 90px;
    border: 1px solid #8080801c;
    padding: 5px;
}

.product-header {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
    gap: 20px;
}

.product-name {
	font-size: 18px;
	font-weight: bold;
	color: #1f2937
}

.bookmark {
	color: #9ca3af;
	cursor: pointer
}

.product-desc {
	color: #6b7280;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 16px
}

.product-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px
}


.product-stats {
	text-align: right
}

.stat {
	color: #9ca3af;
	font-size: 14px;
	font-weight: 600
}

 

.featured-section {
	margin-bottom: 32px
}



@media (max-width:768px) {
	 
	 
	.products-grid {
		grid-template-columns: 1fr;
		gap: 16px
	}

	
	 
}


.featured-section .product-card {
	background: linear-gradient(135deg, #1a1b2e 0%, #4202af 100%);
     
	
}

.product-card {
	
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.featured-section .product-name{
	font-size: 21px;
    color: #ffffff;
}

.featured-section .product-desc{
	font-size: 14px;
    color: #ffffff;
}

.product-stats{
	display: flex;
    gap: 10px;
}
.product-stats .stat{
	border: 1px gray solid;
    border-radius: 10px;
    padding: 2px 6px;
    background-color: white;
    color: #3f0297;
}	

.cardTopPart{
	display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
}

.cardTopPartLinks{
	font-size: 12.5px;
    color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    float: right;
    gap: 12px;
    max-width: 60%;
    text-decoration: underline;
}

.other-products-section .fa-trophy{
	display:none;
}

.featured-section .cardTopPartLinks a, .featured-section .fa-external-link{
	color:white;
}

 .fa-external-link, .cardTopPartLinks a{
	color:black;
}

.product-info{
	width: 100%;
}

.pagination-container{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
	gap: 13px;
}

.pagination-controls{
	 display: flex;
    flex-direction: row;
    align-items: center;
	gap: 11px;
}
.page-numbers{
	display: flex;
    gap: 10px;
}

.page-numbers .page-number, .pagination-btn{
	border: 1px solid #191b2e;
    padding: 5px 10px;
    background-color: #191b2e;
    color: white;
    line-height: 16px;
	cursor:pointer;
}

.page-numbers .page-number.active{
	border:1px solid #191b2e;
	color: #191b2e;
	background-color:white;
}
#pagination-text{
	font-size: 14px;
}