@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Ürünler sayfası */
.products-page.products_wrapper {
	padding-top: 72px;
	padding-bottom: 80px;
}

.products-page .product_list_section {
	width: 100%;
}

.products-page .product_items_section {
	margin-top: 0;
}

.products-page .product_items_section > ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	margin: 0 !important;
	padding: 0;
	list-style: none;
}

.products-page .product_items_section > ul > li {
	width: auto !important;
	padding: 0 !important;
	display: block;
	vertical-align: top;
}

.products-page .product_item_block {
	margin-bottom: 0;
	height: 100%;
}

.products-page .product_items_section ul li .org_product_block {
	height: 100%;
	padding: 0 0 24px;
	margin-bottom: 0;
	border: 1px solid var(--brand-border, rgba(26, 58, 82, 0.1));
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	background: #ffffff;
	overflow: hidden;
	text-align: center;
	transition: border-color 0.2s ease;
}

.products-page .product_items_section ul li .org_product_block:hover {
	padding: 0 0 24px;
	margin-bottom: 0;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	border-color: rgba(178, 150, 88, 0.35);
	z-index: 1;
}

.products-page .org_product_block .org_product_image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 18px;
	overflow: hidden;
	background: var(--brand-blue-bg-soft, #f6f9fc);
}

.products-page .product_items_section ul li .org_product_block .org_product_image > img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center center;
}

.products-page .org_product_block h4 {
	margin: 0 22px 16px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 17px;
	line-height: 1.4;
	font-weight: 600;
	color: var(--brand-navy, #1a3a52);
}

.products-page .product_items_section ul li .org_product_block a {
	position: static;
	transform: none;
	opacity: 1;
	visibility: visible;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: auto;
	line-height: 1;
	padding: 10px 22px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	background: var(--brand-gold, #b29658);
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.products-page .product_items_section ul li .org_product_block a:hover {
	color: #ffffff;
	background: var(--brand-gold-hover, #9a8250);
}

.products-page .product_items_section ul li .org_product_block:hover > a {
	opacity: 1;
	visibility: visible;
}

.products-page .product_item_block .content_block {
	display: none !important;
}

@media (max-width: 991px) {
	.products-page .product_items_section > ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 575px) {
	.products-page.products_wrapper {
		padding-top: 56px;
		padding-bottom: 64px;
	}

	.products-page .product_items_section > ul {
		grid-template-columns: 1fr;
	}
}
