.card {
    width: 100%;
    /* height: 376px;
    max-height: 376px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 8px 16px;
    aspect-ratio: 3/4;
}

.card * {
    z-index: 3;
}

.card::after {
    content: '';
    background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, #0C0C0C 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 8px;
    opacity: .8;
    transition: var(--transition);
}

.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    z-index: 1 !important;
}

.card-name {
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

.card-price {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}

.card-order {
    padding: 10px 0;
    display: flex;
    text-align: center;
    width: 100%;
    margin: 0 0 4px;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: -0.01em;
}

.similar-items {
	display: flex;
	width: 100%;
	gap: 25px;
	flex-wrap: wrap;
}

.similar-item {
	width: 100%;
	max-width: calc(25% - 25px);
}

.card-order {
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    backdrop-filter: blur(12px);
}

@media (hover) {
	.card-order:hover {
		text-decoration: none;
		color: inherit;
	}
}

.similar-title {
	margin-bottom: 48px;
}

.similar {
	padding: 0 16px;
	margin: 0 0 160px;
}

.card-link {
    display: none;
}

@media screen and (max-width: 991px) {
	.similar {
		margin: 0 0 140px;
	}
	.similar-items {
		gap: 16px;
	}
	.similar-item {
		width: 100%;
		max-width: calc(50% - 16px);
		aspect-ratio: 1;
	}
	.card-name {
        font-size: 24px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: -0.01em;
    }
    .card-price {
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -0.01em;
    }
    .card {
        padding: 8px;
        height: 376px;
        max-height: 376px;
        aspect-ratio: unset;
    }
}

@media screen and (max-width: 480px) {
	.similar {
		padding: 0;
		margin: 0 0 120px;
	}
	.similar-title {
		margin-bottom: 36px;
	}
	.similar-items {
		gap: 12px;
	}
	.similar-item {
		width: 100%;
		max-width: calc(50% - 12px);
		aspect-ratio: 2/3;
		max-height: 250px;
	}
	.card {
		height: 100%;
	}
	.card-name {
        font-size: 20px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: -0.01em;
    }
    .card-price {
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -0.01em;
    }
}
