.product__wrapper {
	display: flex;
	gap: 50px;
	margin: 35px 0;
}

.product__back-button {
	display: flex;
    flex-flow: row nowrap;
    margin: 0 0 30px -10px;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    font-size: 1.3rem;
    color: #000;
    padding-left: 0;
    background: 0 0;
    border: none;
    width: auto;
}

.breadcrumbs {
	display: flex;
	column-gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.breadcrumb {
	font-size: 14px;
}

.breadcrumbs__divider {
	font-size: .7rem;
	padding-top: 4px;
	margin-left: 10px;
}

.product__back-button i {
	width: 34px;
    height: 34px;
    align-items: center;
    margin-right: 0;
    font-size: 34px;
}

.product__back-button:hover {
	color: #000;
    background: 0 0;
}

.product__images .main-image img {
	max-width: 350px;
	width: 100%;
	max-height: 350px;
	object-fit: contain;
}

.product__images .main-image li {
    display: flex;
    justify-content: center;
}

.product__images {
	width: 43%;
}

.product__images .thumb img {
	height: 50px;
    width: 50px;
    object-fit: contain;
}

.product__info {
	width: 57%;
}

.product__price {
	margin-top: 15px;
	font-weight: 600;
}

.product__price-prefix {
	font-weight: 400;
	font-size: .8rem;
}

.product__price-new {
	color: red;
}

.product__price-new ~ .product__price-old {
	text-decoration: line-through;
	margin-left: 5px;
}

.product__additional-info,
.product__stock,
.product__files {
	margin-top: 15px;
	max-width: 350px;
}

.product__stock-label,
.product__additional-label,
.product__files-label {
	display: block;
	width: 100%;
	text-align: left;
	padding: 5px 0 5px 5px;
	font-size: 14px;
	line-height: 1.2;
	color: #000;
	text-transform: uppercase;
	border-bottom: 1px solid #000;
}

.product__stock-content,
.product__additional-content,
.product__files-content {
	padding: 15px 5px;
	font-size: 13px;
	line-height: 1.1;
}

.product__files-content li {
	list-style: none;
	display: flex;
	justify-content: space-between;
	max-width: 100%;
	margin-bottom: 10px;
}

.product__files-content li a {
	text-decoration: underline;
}

.product__form {
	display: flex;
    margin: 20px 0;
    width: fit-content;
    gap: 15px;
}

.input--tocart {
	padding: 10px;
	font-size: 1rem;
	border-radius: 3px;
	text-align: center;
	width: 70px;
}

.product__info dl {
	display: grid;
	grid-template-columns: 250px auto;
	gap: 10px;
	align-content: center;
	justify-content: space-between;
	align-items: start;
	justify-items: start;
	padding: 0;
	margin: 0;
}

.product__info dt {
	display: block;
	padding: 0;
	margin: 0;
	color: #7E7E7E;
}

.product__info dd {
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: end;
	color: #7E7E7E;
}

.product__ean {
	font-size: 1rem;
	font-weight: 400;
}

@media(max-width:768px) {
	.product__wrapper {
		flex-direction: column;
		align-items: center;
	}

	.product__images,
	.product__info {
		width: 100%;
	}

	.main-image li {
		text-align: center;
	}
}

@media(max-width:420px) {
	dl {
		grid-template-columns: 1fr 1fr;
	}
}

@media(min-width:768px) {
	.product__images .thumb img {
		height: 65px;
		width: 65px;
	}
}

@media(min-width:993px) {
	.breadcrumbs {
		padding: 0 10px;
	}
}