.product .img-container {
	padding: 4pt;
}

.product .preview-container {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: zoom-in;
}

.product .preview-container.round img,
.product .preview-container.round .img-magnifier-glass,
.product img.thumbnail.round{
	border-radius: var(--card-round);
}
.product .preview-container.sharp img,
.product .preview-container.sharp .img-magnifier-glass,
.product img.thumbnail.sharp{
	border-radius: var(--card-sharp);
}

@media(min-width: 768px) {
	.product .preview-container {
		max-height: 700pt;
	}
}

.product img.preview {
	max-width: 100%;
}

.product img.thumbnail {
	max-width: 15%;
	margin: 4pt;
	cursor: pointer;
}

.img-magnifier-glass {
	position: absolute;
	pointer-events: none;
}

.product .price {
	font-family: 'DM Sans', "Droid Arabic Kufi";
	font-weight: 500;
	color: var(--red);
	white-space: nowrap;
}

.description p {
	margin-bottom: 1rem;
}

.description ul {
	margin: 12pt 0 12pt;
}

.description img {
	width: 100%;
}

.option-groups {
	margin-bottom: 16pt;
}

.flex-row {
	display: flex;
	flex-direction: column;
}

.space-between {
	justify-content: space-between;
}

.add-to-cart {
	margin: 12pt 0 12pt;
	padding: 12pt;
	width: 100%;
	border: none;
	color: white;
	cursor: pointer;
	background: var(--button-background);
	outline: none !important;
	transition-property: *;
	transition-duration: 0.2s;
	user-select: none;
	border-radius: 4pt;
}

.add-to-cart:hover {
	background: var(--button-hover);
}

.add-to-cart.disabled {
	pointer-events: none;
	background: var(--disabled-primary-background);
	color: var(--disabled-primary-color);
	border: solid 1pt var(--disabled);
}

.option {
	width: 36pt;
	height: 36pt;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--secondary);
	cursor: pointer;
	transition-property: background color transform;
	transition-duration: 0.2s;
	transform: translateY(0);
	width: auto;
	min-width: 32pt;
	padding: 8pt;
	margin-bottom: 8pt;
	border: solid 1px var(--seperator);
}

.option:hover {
	background: var(--secondary-dark);
	border-color: var(--seperator);
}

.option:active {
	transform: translateY(4pt);
}

.option.selected {
	background: var(--button-background);
	border-color: var(--button-background);
	color: white;
}

.option.disabled {
	background: var(--disabled-primary-background);
	border: solid 1px var(--disabled-border-color);
	color: var(--disabled-primary-color);
}

.option.disabled:hover {
	background: var(--disabled-background-hover);
}

.customize-label {
	display: flex;
	justify-content: center;
	text-transform: uppercase;
	color: #cfd8dc;
	font-size: 1rem;
}

.customize-label:lang(en) {
	letter-spacing: 0.25rem;
}
.custom-label{
	font-size: 18px;
	font-weight: 400;
}

.share-copy-link-icon{
	width: 60px;
	height: 60px;
	cursor: pointer;
	background-color:var(--share-copy-link-icon-background);
	border-radius: 100%;
	text-align: center;
	margin: 8px auto;
	color: var(--share-copy-link-icon-color);
}

.share-product{
	cursor: pointer;
}

.product .quantity .pushable:active {
	top: 2pt;
}

.product .quantity .adjust-quantity-btn:active {
	background: var(--primary);
	color: var(--primary-font-color);
}

.product .quantity .adjust-quantity-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12pt;
	height: 32pt;
	margin: 0;
	width: 32pt;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	border-radius: 4pt;
	transition-duration: 0.2s;
	color: var(--font-color);
	background: var(--secondary);
	transition-property: background;
	outline: none !important;
}

.product .quantity .adjust-quantity-btn.disabled {
	pointer-events: none;
	background: var(--disabled-secondary-background);
	color: var(--disabled-secondary-color);
	border: solid 1pt var(--disabled);
}

.product .quantity .adjust-quantity-btn.disabled:hover {
	background: var(--disabled-background-hover);
}

.product .quantity > .label {
    font-weight: 500;
    font-size: 16px;
    color: var(--font-color);
}

.product .quantity .quantity-selector .label {
    display: flex;
    min-width: 64px;
    justify-content: center;
    font-size: 14px;
    color: var(--font-color);
}

.reviews-section {
	max-width: 760pt;
}

.product-rating {
	gap: 0.5rem;
	align-items: center;
}

.product-rating .avg-rating {
	font-weight: bold;
	font-size: 1.5rem;
}

#reviews {
	/* Leave a margin for the header (approximately 134px), and some extra space for legibility of text  */
	scroll-margin: 150px;
}

.disabled-option {
	background: var(--disabled-primary-background);
    border: solid 1px var(--disabled-border-color);
    color: var(--disabled-primary-color);
}

@media(hover: hover) {
	.product .quantity .adjust-quantity-btn:hover {
		background: var(--button-background);
		color: var(--primary-font-color);
	}
	.product .quantity .primary:hover {
		background: var(--primary-dark);
	}
}
