section#shop-page {
	font-family: var(--default-font);
	margin: 60px var(--section-margin) 0 var(--section-margin);
	position: relative;
}

section#shop-page h2 {
	font-family: var(--default-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0;
	color: #08416E;
	padding: 0 0 0 0;
	border-radius: 0 0 0 0;
	max-width: 680px;
	margin-bottom: 20px;
}

section#shop-page h2::before {
	content: "";
	display: inline-block;
	margin-left: 15px;
	background-color: var(--btn-special-color);
	width: 10px;
	aspect-ratio: 1 / 1;
	border-radius: 20%;
	transform: rotateZ(45deg);
}

section#shop-page .shop-page__product-card {
	box-shadow: 0px 0px 24px 1px rgba(121, 160, 190, 0.24);
	background-color: white;
	border-radius: 45px 45px 45px 45px;
	cursor: pointer;
}

section#shop-page .shop-page__product-card img {
	max-height: 300px;
	object-fit: contain;
	margin: 0 auto;
	width: 100%;
	transition: transform 0.5s ease;
	z-index: 1;
}

section#shop-page .shop-page__product-card img:hover {
	transform: scale(1.1);
	transition-duration: 1.5s;
}

section#shop-page .shop-page__product-card h4 {
	text-align: center;
	font-weight: bold;
	z-index: 2;
}

section#shop-page .shop-page__product-card h4:first-of-type {
	font-size: 1.2rem;
	color: dimgrey;
	margin-bottom: 20px;
}

section#shop-page .shop-page__product-card h4:nth-of-type(2) {
	font-size: 1.2rem;
	color: dimgrey;
	margin-bottom: 20px;
}

section#shop-page .shop-page__product-card h4:nth-of-type(3) {
	color: #08416E;
	font-size: 1.4rem;
	margin-bottom: 30px;
}

section#shop-page .shop-page__product-card h4:nth-of-type(3) span {
	font-family: var(--default-font);
	font-weight: bold;
}

section#shop-page .shop-page__add-to-card {
	z-index: 1;
	margin: 0 30px 20px;
}

@media only screen and (max-width: 678px) {
	section#shop-page h2 {
		font-size: 20px;
	}

	section#shop-page .shop-page__product-card .material-bubble__text {
		font-size: 14px;
	}
}

@media only screen and (max-width: 640px) {
	section#shop-page .shop-page__add-to-card {
		margin: 0 20px 20px;
	}
}

@media only screen and (max-width: 575px) {
	section#shop-page .shop-page__product-card .material-bubble__text {
		font-size: 1rem;
	}
}
