* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
	border: none;
	transition: all 0.3s;
	list-style: none;
	text-decoration: none;
	font-family: "Poppins";
}

@font-face {
	font-family: "Poppins";
	src: url("../typography/Poppins-Regular.ttf") format("truetype");
	font-weight: 400;
}
@font-face {
	font-family: "DMSerifDisplay";
	src: url("../typography/DMSerifDisplay-Regular.ttf") format("truetype");
	font-weight: 400;
}
.important-text {
	color: #c05670;
}

.bold {
	font-weight: 600;
}

.italic {
	font-style: italic;
}

hr {
	width: 100%;
	background-color: #fff;
	height: 2px;
}

body {
	background-color: #fff;
	color: #3b3b3b;
}

.body-content {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	margin-top: 20px;
}

a {
	color: #fff;
}

.btn {
	padding: 0.5rem 1.6rem;
	border-radius: 4px;
	background: #c05670;
	border: 2px solid #c05670;
	font-size: 1rem;
	cursor: pointer;
	width: 100%;
	min-width: 200px;
	max-width: 600px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}
.btn:active {
	transform: scale(0.95);
	box-shadow: none;
}
.btn:hover {
	translate: 0px -5px;
}

.ghost-btn {
	background: transparent;
	color: #c05670;
	transition: all 0.3s ease;
}
.ghost-btn:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 100vh;
	background: #c05670;
	transform: translate(0%, -50%);
	transition: width 0.6s ease;
	z-index: -1;
}
.ghost-btn:hover:after {
	width: 100%;
	pointer-events: none;
}
.ghost-btn:hover {
	translate: 0px;
	color: #fff;
}
.ghost-btn:active {
	transform: scale(0.95);
	box-shadow: none;
}

section {
	text-align: center;
	padding: 1rem;
}

.card {
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(59, 59, 59, 0.3);
	background: #c05670;
	backdrop-filter: blur(10px);
	overflow: hidden;
}
.card .card-content {
	padding: 1rem;
	gap: 10px;
	display: flex;
	flex-direction: column;
}
.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(59, 59, 59, 0.8);
}
.card:hover::before,
.card:hover::after {
	opacity: 1;
}

.two-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.two-columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

.show-up-blur {
	animation: showUpBlurAnimation 1s forwards;
}

@keyframes showUpBlurAnimation {
	0% {
		opacity: 0;
		filter: blur(15px);
		transform: translateX(-300dvw);
	}
	80% {
		opacity: 0;
	}
	to {
		opacity: 1;
		filter: blur(0px);
		transform: translateX(0dvw);
	}
}
.blur-out {
	animation: blurOut 1.5s forwards;
}

@keyframes blurOut {
	0% {
		filter: blur(10px);
	}
	to {
		filter: blur(0px);
	}
}
.fade-in {
	opacity: 0;
	transform: translateY(100px);
	transition: 0.5s;
}
.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}

@keyframes zoomUp {
	0% {
		scale: 0;
	}
	to {
		scale: 1;
	}
}
.magic-effect {
	position: relative;
}
.magic-effect::after,
.magic-effect::before {
	content: "✦";
	font-size: 2rem;
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}
.magic-effect:hover::before,
.magic-effect:active::before {
	opacity: 1;
	top: -30px;
	left: -30px;
	bottom: unset;
	right: unset;
	transform: rotate(360deg);
}
.magic-effect:hover::after,
.magic-effect:active::after {
	opacity: 1;
	top: unset;
	left: unset;
	bottom: -30px;
	right: -30px;
	transform: rotate(360deg);
}

.nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0.5rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-weight: bold;
	background: #c05670;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-icon-wrapper {
	display: flex;
	gap: 10px;
	align-items: center;
}
.nav-icon-wrapper:hover .nav-title {
	color: #fff;
}

.nav-icon {
	width: 100%;
	max-width: 40px;
	border-radius: 100vh;
}
@media screen and (min-width: 700px) {
	.nav-icon {
		max-width: 50px;
	}
}

.nav-title {
	color: #fff;
	font-size: 1.3rem;
}

.nav-links {
	display: none;
}
@media screen and (min-width: 700px) {
	.nav-links {
		display: flex;
		gap: 2rem;
		letter-spacing: 2px;
		text-transform: uppercase;
		align-items: center;
		font-size: 0.9rem;
	}
	.nav-links p {
		color: #fff;
		position: relative;
	}
	.nav-links p::after {
		content: "";
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0;
		height: 2px;
		background-color: #fff;
		transition: width 0.3s ease;
	}
	.nav-links p:hover::after {
		width: 100%;
	}
}

@media screen and (min-width: 700px) {
	.nav-link {
		padding: 0.5rem 1rem;
		display: flex;
		gap: 10px;
		border-radius: 100vh;
	}
}

.side-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(-200%);
	padding: 1rem;
	background-color: #c05670;
	z-index: -1;
	gap: 50px;
}

.side-bar-links {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	gap: 25px;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.side-bar-link {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #fff;
	font-size: 1.5rem;
}
.side-bar-link:hover {
	color: #fff;
}

.side-bar-social {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 15px;
}

.social-link {
	width: 50px;
}

.toggle-btn {
	background: none;
	display: flex;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-around;
	width: 35px;
	height: 30px;
	padding: 5px;
	border-radius: 5px;
}
@media screen and (min-width: 700px) {
	.toggle-btn {
		display: none;
	}
}
.toggle-btn .bar {
	height: 2px;
	width: 100%;
	background-color: #fff;
	border-radius: 2px;
	transition:
		transform 0.4s ease,
		opacity 0.2s ease;
}
.toggle-btn.toggled .bar:first-child {
	transform: rotate(45deg) translate(5px, 5px);
}
.toggle-btn.toggled .bar:last-child {
	transform: rotate(-45deg) translate(5px, -5px);
}
.toggle-btn.toggled .bar:nth-child(2) {
	opacity: 0;
}

.footer {
	background: #c05670;
	color: #fff;
	padding: 2rem 1rem;
	position: relative;
	text-align: center;
}
@media screen and (min-width: 700px) {
	.footer {
		padding: 3rem 5rem;
	}
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}
@media screen and (min-width: 700px) {
	.footer-content {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2rem;
	}
}

@media screen and (min-width: 700px) {
	.footer-links {
		text-align: left;
	}
}

.links-title {
	font-size: 2rem;
	margin: 0 0 1rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}
@media screen and (min-width: 700px) {
	.links-title {
		font-size: 2.5rem;
	}
}

.links-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.link-item a {
	text-decoration: none;
	font-size: 1.1rem;
	text-transform: capitalize;
}
.link-item a::before,
.link-item a::after {
	transition: all 0.3s ease;
	content: "✦";
	margin: 0.5rem;
	opacity: 0;
}
.link-item a:hover::before,
.link-item a:hover::after {
	opacity: 1;
}

.footer-images {
	display: flex;
	justify-content: center;
	gap: 1rem;
	position: relative;
}
@media screen and (min-width: 700px) {
	.footer-images {
		justify-content: center;
	}
}

.jewelry-image {
	max-width: 120px;
	border: 2px solid #fff;
	border-radius: 8px;
	transform: rotateZ(5deg);
	transition: all 0.3s ease;
}
.jewelry-image:last-child {
	transform: rotateZ(-5deg);
}
.jewelry-image:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

.footer-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}
@media screen and (min-width: 700px) {
	.footer-info {
		align-items: flex-end;
	}
}

.social-media {
	display: flex;
	gap: 1.5rem;
}

.social-icon {
	width: 50px;
	transition: transform 0.3s ease;
}
.social-icon:hover {
	transform: scale(1.2);
}

.copyright {
	margin: 0;
	font-size: 0.9rem;
}
@media screen and (min-width: 700px) {
	.copyright {
		text-align: right;
	}
}

.developer {
	text-decoration: none;
	font-weight: bold;
}
.developer:hover {
	text-decoration: underline;
}

.synth-logo {
	width: 100%;
	max-width: 50px;
}

.custom-product-container {
	max-width: 800px;
	margin: 0 auto;
}

.custom-product-form {
	border-radius: 12px;
}
.custom-product-form .card-content {
	text-align: left;
	padding: 1rem;
}
.custom-product-form .card-content:hover {
	transform: none;
	box-shadow: unset;
}
.custom-product-form h3 {
	color: #fff;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}
@media (min-width: 768px) {
	.custom-product-form h3 {
		font-size: 1.5rem;
	}
}
.custom-product-form p {
	color: #fff;
	font-size: 0.9rem;
}
@media (min-width: 768px) {
	.custom-product-form p {
		font-size: 1rem;
		line-height: 1.6;
	}
}
.custom-product-form .custom-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.custom-product-form .custom-form label {
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
}
@media (min-width: 768px) {
	.custom-product-form .custom-form label {
		font-size: 1rem;
	}
}
.custom-product-form .custom-form input,
.custom-product-form .custom-form textarea {
	padding: 0.5rem;
	background: #fff;
	border-radius: 4px;
	font-size: 0.9rem;
	color: #c05670;
	resize: vertical;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}
.custom-product-form .custom-form input:focus,
.custom-product-form .custom-form textarea:focus {
	border-color: #fff;
	box-shadow: 0 0 5px rgba(192, 86, 112, 0.3);
}
@media (min-width: 768px) {
	.custom-product-form .custom-form input,
	.custom-product-form .custom-form textarea {
		padding: 0.75rem;
		font-size: 1rem;
	}
}
.custom-product-form .custom-form .budget-input {
	padding: 0.5rem;
	background: #fff;
	border-radius: 4px;
	font-size: 0.9rem;
	color: #fff;
	-moz-appearance: textfield;
	appearance: textfield;
}
.custom-product-form .custom-form .budget-input::-webkit-inner-spin-button,
.custom-product-form .custom-form .budget-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.custom-product-form .custom-form .budget-input:focus {
	border-color: #fff;
	box-shadow: 0 0 5px rgba(192, 86, 112, 0.3);
}
@media (min-width: 768px) {
	.custom-product-form .custom-form .budget-input {
		padding: 0.75rem;
		font-size: 1rem;
	}
}
.custom-product-form .custom-form .purchase-place-select {
	padding: 0.5rem;
	border: solid 1px rgba(192, 86, 112, 0.4);
	border-radius: 4px;
	font-size: 0.9rem;
	background: #fff;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23999" d="M6 9l-4-4h8z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 12px;
}
.custom-product-form .custom-form .purchase-place-select:focus {
	border-color: #fff;
	box-shadow: 0 0 5px rgba(192, 86, 112, 0.3);
}
@media (min-width: 768px) {
	.custom-product-form .custom-form .purchase-place-select {
		padding: 0.75rem;
		font-size: 1rem;
	}
}
.custom-product-form .custom-form .checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}
.custom-product-form .custom-form .checkbox-group label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 400;
	cursor: pointer;
}
@media (min-width: 768px) {
	.custom-product-form .custom-form .checkbox-group label {
		font-size: 1rem;
	}
}
.custom-product-form .custom-form .checkbox-group .factor-checkbox {
	width: 1rem;
	height: 1rem;
	accent-color: #fff;
	cursor: pointer;
}
.custom-product-form .custom-form .btn {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	padding: 0.5rem 1.5rem;
	background-color: #fff;
	color: #3b3b3b;
}
@media (min-width: 768px) {
	.custom-product-form .custom-form .btn {
		margin-top: 1rem;
		font-size: 1rem;
		padding: 0.75rem 2rem;
	}
}

.custom-product-gallery {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.custom-product-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 768px) {
	.custom-product-list {
		gap: 1.5rem;
		grid-template-columns: repeat(2, 1fr);
	}
}

.custom-product-card {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(192, 86, 112, 0.3);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.custom-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(192, 86, 112, 0.4);
}

.custom-product-image {
	width: 100%;
	aspect-ratio: 5/3;
	object-fit: cover;
	object-position: center;
	max-height: 300px;
}

.custom-product-info {
	padding: 1rem;
	background: rgba(255, 255, 255, 0.9);
	text-align: center;
}
.custom-product-info h4 {
	font-size: 1rem;
	color: #c05670;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
	.custom-product-info h4 {
		font-size: 1.1rem;
	}
}
.custom-product-info p {
	font-size: 0.9rem;
	color: #3b3b3b;
}
@media (min-width: 768px) {
	.custom-product-info p {
		font-size: 1rem;
	}
}

/* Styles for product list */
.product-list-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	padding: 1rem;
}

.product-card {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(59, 59, 59, 0.2);
	text-decoration: none;
}
.product-card.has-discount {
	position: relative;
	padding-top: 1.2rem;
}
.product-card.has-discount::before {
	content: "rebaja";
	position: absolute;
	top: 2rem;
	right: -6rem;
	background: red;
	color: #fff;
	padding: 0.2rem 0.5rem;
	width: 100%;
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transform: rotate(45deg);
}
.product-card:hover {
	transform: scale(1.02);
	background-size: 130% 130%;
}

.preview-images-container {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.preview-images-container .preview-image {
	max-width: 70px;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 12px;
	border: inherit;
	border: solid 1px #c05670;
	box-shadow: 0 4px 15px rgba(192, 86, 112, 0.2);
}

.product-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem;
	gap: 15px;
}

.product-footer-info {
	background: #fff;
	border: solid 1px #c05670;
	width: 100%;
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
	text-align: left;
}

.price-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.product-price {
	font-size: 0.9rem;
	color: #c05670;
	font-weight: 500;
}
.product-price.original-price {
	text-decoration: line-through;
	font-size: 0.8rem;
	opacity: 0.7;
	margin-right: 0.5rem;
	display: inline-block;
}
.product-price.discount-price {
	color: #0e9d23;
	font-weight: 600;
	font-size: 1rem;
}

.product-name {
	font-size: 0.9rem;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
	color: #c05670;
}

.product-detail-page {
	text-align: center;
}

.product-detail-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.product-detail-container {
		grid-template-columns: 1fr 1fr;
	}
}

.product-detail-carousel {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	border-radius: 4px;
}
.product-detail-carousel.has-discount {
	position: relative;
	padding-top: 1.2rem;
}
.product-detail-carousel.has-discount::before {
	content: "rebaja";
	position: absolute;
	top: 2rem;
	right: -7rem;
	background: red;
	color: #fff;
	padding: 0.2rem 0.5rem;
	width: 100%;
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transform: rotate(45deg);
	z-index: 1;
}
@media screen and (min-width: 768px) {
	.product-detail-carousel.has-discount::before {
		right: -12rem;
	}
}

.product-detail-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.product-detail-image.active {
	opacity: 1;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #c05670;
	color: #fff;
	font-size: 1.5rem;
	padding: 0.5rem 1rem;
	cursor: pointer;
	border-radius: 12px;
}
.carousel-btn.prev {
	left: 10px;
}
.carousel-btn.next {
	right: 10px;
}

.product-detail-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.product-detail-price {
	color: #c05670;
	font-size: 1.8rem;
	font-weight: 600;
}
.product-detail-price .original-price {
	color: #c05670;
	text-decoration: line-through;
	font-size: 1.2rem;
	opacity: 0.7;
	margin-right: 0.5rem;
	display: inline-block;
}
.product-detail-price .discount-price {
	color: #0e9d23;
	font-weight: 600;
	font-size: 1.8rem;
}

.product-detail-texts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
	padding: 1rem;
	border-radius: 4px;
	background: #c05670;
	border: solid 1px rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.product-detail-text {
	font-size: 1rem;
	color: #fff;
	line-height: 1.6;
}

.section-title {
	color: #c05670;
	text-transform: uppercase;
	font-size: 2rem;
	margin-bottom: 2rem;
	letter-spacing: 2px;
	font-family: "DMSerifDisplay";
}

.header {
	background-image: url(../assets/header.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100dvh;
	position: relative;
}

.header-content {
	height: 80%;
	padding: 1rem;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	color: #c05670;
	justify-content: space-between;
}
@media screen and (min-width: 700px) {
	.header-content {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: auto;
		max-width: 1200px;
		padding: 2rem;
		align-items: flex-start;
	}
}

.header-title {
	font-size: 20dvw;
	line-height: 0.8;
	text-transform: uppercase;
}
.header-title p {
	font-family: "DMSerifDisplay";
}
.header-title p:last-child {
	font-family: "Poppins";
}
@media screen and (min-width: 700px) {
	.header-title {
		font-size: 10dvw;
		transform: none;
		text-align: left;
	}
	.header-title :first-child {
		font-size: 8dvw;
	}
}

.header-subtitle {
	letter-spacing: 2px;
	font-size: 4.5dvw;
	margin-top: 1.5rem;
}
@media screen and (min-width: 700px) {
	.header-subtitle {
		font-size: 2.5dvw;
	}
}

.cta-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cta-section .ghost-btn {
	backdrop-filter: blur(5px);
	color: #fff;
}
@media screen and (min-width: 700px) {
	.cta-section .ghost-btn {
		color: #c05670;
	}
	.cta-section .ghost-btn:hover {
		color: #fff;
	}
}
@media screen and (min-width: 700px) {
	.cta-section {
		position: unset;
		margin-top: 1.5rem;
		padding: 0;
		flex-direction: row;
		top: unset;
	}
}

.why-us-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
}
@media screen and (min-width: 700px) {
	.why-us-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

.reason {
	background-color: #c05670;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.reason::after {
	transition: all 0.3s;
	content: "✭";
	position: absolute;
	right: -40%;
	bottom: -60%;
	font-size: 25rem;
	color: rgb(128.2068965517, 47.7931034483, 67.5172413793);
	pointer-events: none;
	line-height: 1;
	z-index: -1;
}
.reason:hover {
	transform: scale(1.05);
}
.reason:hover::after {
	transform: rotate(90deg) scale(0.2) translate(25%, 25%);
}
.reason .reason-icon {
	width: 50px;
}
.reason h3 {
	font-size: 1.5rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-family: "DMSerifDisplay";
}
.reason p {
	margin-top: 0.8rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #fff;
}
@media screen and (min-width: 700px) {
	.reason {
		max-width: 350px;
	}
}

.products {
	max-width: 100vw;
}

.products-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	max-height: 500px;
	max-width: 900px;
	margin: 0 auto;
}
.products-container .product-type:first-child {
	grid-column: span 2;
}
.products-container .product-type:last-child {
	grid-column: span 2;
}
@media screen and (min-width: 700px) {
	.products-container {
		gap: 20px;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
	}
}

.product-type {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.product-type:hover .product-type-image {
	transform: scale(1.3);
}
.product-type:hover .product-type-overlay {
	backdrop-filter: blur(10px);
}
.product-type:hover .product-type-title {
	font-size: 1.8rem;
}

.product-type-image {
	border-radius: 4px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3/2;
}

.product-type-overlay {
	border-radius: 4px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-type-title {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.locked {
	filter: grayscale(1);
	position: relative;
	cursor: not-allowed !important;
}
.locked::after {
	position: absolute;
	content: url("../assets/icons/lock-key-fill.svg");
	bottom: 5%;
	right: 5%;
	color: #fff;
}

@media screen and (min-width: 700px) {
	.about {
		padding: 2rem;
	}
}

.about-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	position: relative;
}
@media (min-width: 700px) {
	.about-container {
		flex-direction: row;
	}
}

.photo-stack {
	width: 100%;
	max-width: 600px;
	position: relative;
	margin-top: 5rem;
}

.about-photo {
	width: 100%;
	border: 6px solid #c05670;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	aspect-ratio: 4/5;
	object-fit: cover;
	object-position: top;
	position: relative;
	max-width: 250px;
	transition: all 0.3s;
}
.about-photo:first-child {
	transform: rotateZ(-25deg) translate(-5%, 0);
	z-index: 1;
}
.about-photo:nth-child(2) {
	transform: rotateZ(5deg) translate(5%, -10%);
	z-index: 2;
}
.about-photo:last-child {
	transform: rotateZ(-10deg) translate(-12%, -25%);
	z-index: 1;
}
.about-photo:hover {
	transform: rotate(0deg) scale(1.2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
	z-index: 3;
}
@media screen and (min-width: 700px) {
	.about-photo {
		max-width: 200px;
	}
	.about-photo:first-child {
		transform: rotate(-25deg) translateX(-20%);
	}
	.about-photo:first-child:hover {
		transform: rotate(0deg) scale(1.2);
	}
}

.jeweler-info {
	max-width: 420px;
	padding: 1rem;
}
.jeweler-info h3 {
	margin-bottom: 1rem;
	position: relative;
	font-size: 3.5rem;
	line-height: 0.8;
	color: #c05670;
}
.jeweler-info h3 :first-child {
	text-align: left;
	font-family: "DMSerifDisplay";
}
.jeweler-info h3 :last-child {
	text-align: right;
	font-family: "DMSerifDisplay";
}
.jeweler-info p {
	font-size: 1rem;
	line-height: 1.6;
	text-align: justify;
	font-weight: 500;
}
