.gs-peptides-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.gs-shop-pagination {
    padding-block: 20px;
    gap: 5px;
}
.gs-shop-pagination button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 !important;
}
.gs-shop-pagination button.next {
    padding-inline: 30px !important;
}
.card-peptide {
	position: relative;
	background: #fff;
	border: 1px solid #e8ecf2;
	border-radius: 18px;
	padding: 20px;
	min-height: 250px;
	box-shadow: 0 8px 28px rgba(16, 24, 40, 0.04);
	transition: all 0.25s ease;
	overflow: hidden;
}

.card-peptide:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

.gs-peptide_grid-head {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 20px;
}

.gs-peptide_grid-head .gleft a {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: #eaf3ff;
	border: 1px solid #d6e8ff;
	color: #4f83ff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}

.gs-peptide_grid-head .gright a {
	text-decoration: none;
}

.gs-peptide_grid-head .gright span {
	display: block;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 600;
	color: #111827;
	margin-top: 4px;
	max-width: 310px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gs-peptide_grid-head .sub-title {
    font-size: 14px !important;
    font-weight: 300 !important;
}

.card-peptide-wrapper {
	margin-top: 12px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eef1f5;
}

.peptide-attributes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.peptide-attributes span {
	display: inline-flex;
	align-items: center;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 7px 15px;
	font-size: 14px;
	line-height: 1;
	color: #667085;
	background: #fff;
}

.card-peptide-wrapper > span {
	display: block;
	font-size: 15px;
	line-height: 1.45;
	color: #475467;
	margin-top: 34px;
}

.peptide-description::before {
	content: "RESEARCH USES";
	display: block;
	font-size: 12px;
	letter-spacing: 3px;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.card-peptide-info {
	padding-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.card-peptide-info .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #cfd6df;
	border-radius: 999px;
	background: transparent;
	color: #000;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 7px 13px;
	text-decoration: none;
}

.card-peptide-info::after {
	content: "→";
	font-size: 18px;
	color: #000;
}

.card-peptide:nth-child(3n+2)::after,
.card-peptide:nth-child(3n+4)::after {
	content: "";
	position: absolute;
	left: 20%;
	right: 20%;
	bottom: -45px;
	height: 142px;
	background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 70%);
	pointer-events: none;
}

.card-peptide:nth-child(3n+5)::after {
	content: "";
	position: absolute;
	left: 20%;
	right: 20%;
	bottom: -45px;
	height: 142px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 70%);
	pointer-events: none;
}

.card-peptide:nth-child(3n+6)::after {
	content: "";
	position: absolute;
	left: 20%;
	right: 20%;
	bottom: -45px;
	height: 142px;
	background: radial-gradient(circle, rgba(34, 197, 94, 0.16), transparent 70%);
	pointer-events: none;
}

.gs-shop-filter-form {
	display: flex;
	gap: 14px;
	margin-bottom: 35px;
}

.gs-shop-filter-form input,
.gs-shop-filter-form select {
	height: 48px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 0 16px;
	font-size: 15px;
	color: #475467;
	background: #fff;
}

.gs-shop-filter-form button {
	height: 48px;
	border: 0;
	border-radius: 12px;
	padding: 0 24px;
	background: #111827;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
}

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

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

	.card-peptide {
		padding: 24px;
	}

	.gs-shop-filter-form {
		flex-direction: column;
	}
}