#shop .cd-grid{
	width: 100%;
	display: flex;
  	flex-direction: row;
  	flex-wrap: wrap;
  	justify-content: space-around;
}
#shop .cd-box{
	position: relative;
  	background-color: #fff;
  	border-radius: 22px;
  	box-shadow: 0px 3px 10px #959595;
  	padding: 2rem;
	width: 48%;
	margin-bottom: 2rem;
}
@media (max-width: 960px) {
  #shop .cd-box {
    width: 100%;
  }
}

#shop .gallery {
    margin-bottom: 1rem;
	display: flex;
	justify-content: space-between;
}
#shop .main-image {
    width: calc(100% - 120px - 1rem);
    max-height: 350px;
    object-fit: contain;
	border: solid 1px #1F1A17;
	background-color: #1F1A17;
}


#shop .thumbnails {
    display: flex;
	flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
#shop .thumbnails img {
    width: 120px;
    height: 106px;
    object-fit: cover;
    cursor: pointer;
}
#shop .thumbnails img.active, #shop .thumbnails img:hover{
	box-shadow: 0px 3px 10px #959595;
  	border: solid 1px #C3A25A;
}

@media (max-width: 960px) {
	#shop .main-image {
		width: calc(100% - 70px - 1rem);
	}
	#shop .thumbnails img {
		width: 77px;
		height: 70px;
	}
}
/*#shop .quantity-box {
    margin-top: 1rem;
}*/
#shop .selection-row{
	display: flex;
  	flex-direction: row;
  	justify-content: space-between;
  	align-items: center;
	margin-top: 1.5rem;
}
#shop .selection-row .checkLabel, #shop .selection-row .quantity-box{
	display: flex;
  	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	height: 75px;
}
#shop .selection-row .quantity-box input{
	width: 100px;
  	margin-left: 1rem;
}
#shop .selection-row .cd-checkbox{
	width: 25px;
	height: 25px;
	margin-right: 1rem;
}