.dc-hong-product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 32px;
}

.dc-hong-product * {
	box-sizing: border-box;
}

.dc-hong-product__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 420px;
	background: #fff;
	overflow: hidden;
}

.dc-hong-product__main-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	opacity: 1;
	transition: opacity .15s ease;
}

.dc-hong-product__main-image.is-loading {
	opacity: .35;
}

.dc-hong-product__content {
	min-width: 0;
	text-align: start;
}

.dc-hong-product__title {
	margin: 0 0 12px;
	color: #16863c;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.dc-hong-product__variations {
	margin-bottom: 10px;
}

.dc-hong-product__variation-group {
	margin-bottom: 10px;
}

.dc-hong-product__attribute-name {
	margin-bottom: 7px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
}

.dc-hong-product__options {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dc-hong-product__option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	margin: 0 !important;
	padding: 4px 8px;
	background: #fff;
	border: 1px solid #f39a00;
	border-radius: 5px;
	color: #333;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	box-shadow: none;
	cursor: pointer;
	transition:
		background .2s ease,
		border-color .2s ease,
		color .2s ease;
}

.dc-hong-product__option:hover {
	background: #fff5e5;
}

.dc-hong-product__option.is-active {
	background: #f6a000;
	border-color: #f6a000;
	color: #fff;
}

.dc-hong-product__price {
	margin: 2px 0 10px;
	color: #e58d00;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.3;
}

.dc-hong-product__price .amount {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.dc-hong-product__price del {
	margin-right: 7px;
	opacity: .5;
	font-size: 16px;
}

.dc-hong-product__price ins {
	text-decoration: none;
}

.dc-hong-product__desc p {
	margin: 0 0 8px;
}

.dc-hong-product__desc ul {
	margin: 10px 0 10px 20px;
	padding: 0;
}

.dc-hong-product__desc li {
	margin-bottom: 6px;
}

.dc-hong-product__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-top: 18px;
}

.dc-hong-product__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 20px;
	border-radius: 99px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: .2s ease;
}


/* DETAIL */

.dc-hong-product__detail {
	background: #fff;

	border: 2px solid #f39a00;
	color: #f39a00;
}

.dc-hong-product__detail:hover {
	background: #f39a00;
	color: #fff;
}


/* ORDER */

.dc-hong-product__order {
	background: #228e45;
	border: 2px solid #228e45;
	color: #fff;
}

.dc-hong-product__order:hover {
	background: #18783a;

	border-color: #18783a;

	color: #fff;
}

@media (max-width: 849px) {

	.dc-hong-product {
		gap: 25px;
	}

	.dc-hong-product__image {
		height: 340px;
	}

	.dc-hong-product__title {
		font-size: 19px;
	}

	.dc-hong-product__desc {
		font-size: 14px;
	}

}

@media (max-width: 549px) {

	.dc-hong-product {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.dc-hong-product__image {
		height: 300px;
	}

	.dc-hong-product__price {
		font-size: 21px;
	}

	.dc-hong-product__options {
		gap: 8px;
	}

	.dc-hong-product__option {
		padding: 4px 8px;
		font-size: 11px;
	}

	.dc-hong-product__actions {
		gap: 10px;
	}

	.dc-hong-product__actions a {
		height: 32px;
		padding: 0 15px;
		font-size: 13px;
	}
}