.single__product {
	margin-top: 30px;
}

.product__grid {
	display: grid;
	grid-template-columns: 460px 500px 1fr;
	gap: 25px 40px;
	align-items: start;
}

.product__gallery {
	grid-row: 1/4;
	grid-column: 1/2;
}

.gallery__main {
	border-radius: 10px;
	border: 1px solid #ebebeb;
	background-color: #fff;
	overflow: hidden;
}

.gallery__main img {
	display: block;
	cursor: pointer;
	width: 462px;
	height: 462px;
	object-fit: contain;
}

.gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.gallery__thumbs img {
	display: block;
	border: 1px solid #ebebeb;
	background-color: #fff;
	border-radius: 10px;
	cursor: pointer;
	width: 84px;
	height: 84px;
	object-fit: contain;
}

.gallery__thumbs img.active {
	border: 2px solid var(--blue);
}

.product__description {
	grid-column: 2/3;
	grid-row: 2/3;
}

.single__product h1 {
	line-height: 1.4;
	grid-column: 2/4;
	grid-row: 1/2;
}

.gallery__slider-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	display: none;
	align-items: center;
	z-index: 100;
}

.gallery__slider-wrap.active {
	display: grid;
}

.gallery__slider-wrap .gallery__slider {
	margin: 40px 0;
}

.gallery__slider-wrap .gallery__slider img {
	aspect-ratio: 1/1;
	object-fit: contain;
}

.gallery__close {
	background: transparent;
	border: 0;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	z-index: 5;
}

.gallery__close:hover {
	opacity: 1;
}

.gallery__slider-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.gallery__slider-grid .slider__nav-prev svg,
.gallery__slider-grid .slider__nav-next svg {
	display: block;
	width: 50px;
	cursor: pointer;
}

.product__buy {
	position: sticky;
	top: 130px;
	grid-column: 3/4;
	grid-row: 2/3;
}

.product__buy-info,
.product__buy-action {
	background-color: #fff;
	padding: 25px;
	border-radius: 10px;
	border: 1px solid #e8e8e8;
}

.product__buy-action {
	margin-top: 20px;
}

.product__description p {
	margin-bottom: 15px;
	color: #444;
}

.product__description p:last-child {
	margin-bottom: 0;
}

.order__btn {
	background: var(--blue);
	padding: 12px 20px;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	display: block;
	text-align: center;
	font-weight: 600;
	transition: background 0.3s ease;
	border: 0;
	width: 100%;
}

.order__btn:hover {
	background: var(--blue-hover);
}

.product__price-wrap {
	margin-bottom: 18px;
	display: none;
}

.product__price-wrap .product__price {
	font-size: 22px;
	font-weight: 600;
	margin-right: 5px;
}

.product__price-wrap .product__old-price {
	font-size: 14px;
	font-weight: 500;
	color: #666;
	text-decoration: line-through;
	margin-left: 5px;
}

.product-tag,
.product__cat {
	display: inline-flex;
	gap: 5px;
	line-height: 1.35;
}

.product__sku {
	margin-top: 10px;
}

.product-tag span,
.product__sku span,
.product__cat span {
	font-weight: 600;
}

.product-tag a,
.product__cat a {
	color: var(--blue);
	transition: opacity 0.3s ease;
}

.product-tag a:hover,
.product__cat a:hover {
	opacity: 0.7;
}

.dop__info {
	margin-top: 80px;
	background-color: #fff;
	padding: 45px 50px 50px;
	border-radius: 10px;
	border: 1px solid #e8e8e8;
	grid-column: 1/3;
}

.dop__info h2 {
	font-size: 30px;
	margin-bottom: 30px;
}

.dop__info-row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-top: 15px;
	z-index: 1;
}

.dop__info-row strong {
	max-width: 50%;
	width: 100%;
	font-weight: 600;
}

.dop__info-row strong span {
	background-color: #fff;
}

.dop__info-row span {
	flex: 0 0 40%;
	background-color: #fff;
}

.dop__info-row .dashed__line {
	position: absolute;
	top: 16px;
	left: 0;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #afafaf 30%, transparent 0%);
	background-position: left top;
	background-size: 10px 1px;
	background-repeat: repeat-x;
	z-index: -1;
}

.similar__products {
	margin: 80px 0 120px;
}

.similar__products h2 {
	font-size: 40px;
	margin-bottom: 30px;
}
