.romar-product {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2em;
	width: 100%;
}

.romar-product__gallery {
	position: relative;
	display: inline-block;
}

.romar-product__preview-box {
	aspect-ratio: 16 / 10;
	width: 100%;
	height: auto;
	border: 3px solid #dbc19c;
	border-radius: 20px;
	background-color: #fff;
	overflow: hidden;
}

.romar-product__content {
	position: relative;
	display: inline-block;
}

.romar-product__thumbnails-box {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5em;
	margin-top: 1em;
}

.romar-product__thumb {
	aspect-ratio: 16 / 10;
	width: 150px;
	height: auto;
	border: 3px solid #dbc19c;
	border-radius: 10px;
	cursor: pointer;
	transition: border 0.2s ease-in-out;
}

.romar-product__thumb:hover {
	border: 3px solid #d85852;
}

.romar-product__thumb.selected {
	border: 3px solid #ad7111;
}

.romar-product__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.romar-product__info-box {
	position: relative;
	display: grid;
	margin-top: 2em;
}
.romar-product__info-item {
	position: relative;
	display: flex;
	width: 100%;
	height: 65px;
	border-radius: 20px;
	border: 3px solid #dbc19c;
	background-color: #fff;
}
.romar-product__info-item:not(:first-child) {
	margin-top: 0.5em;
}
.romar-product__info-icon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: 100%;
	border-right: 3px solid #dbc19c;
}
.romar-product__info-data {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.romar-product__info-desc {
	position: absolute;
	top: 5px;
	left: 0.5em;
	text-transform: uppercase;
	color: #dbc19c;
	font-size: 0.9rem;
	font-weight: bold;
    z-index: 0;
}
.romar-product__info-info {
	margin-top: 1em;
    z-index: 10;
}

@media screen and (min-width: 768px){
    .romar-product {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 992px){
    .romar-product {
        grid-template-columns: 3fr 2fr;
    }
}