.product-detail-page .container {
	max-width: 100%;
	width: 100%;
	padding-left: 12px;
	padding-right: 12px;
}

.product-details {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.product-details-shell {
	align-items: flex-start;
	--bs-gutter-x: 10px;
	--bs-gutter-y: 18px;
}

@keyframes product-detail-media-loading {
	0% {
		background-position: 180% 0;
	}

	100% {
		background-position: -180% 0;
	}
}

@media (min-width: 992px) {
	.product-detail-page .product-details-shell {
		--product-detail-info-width: clamp(520px, 36vw, 680px);
		align-items: flex-start;
		overflow: visible;
	}

	.product-detail-page .product-details-shell > .product-gallery-column {
		flex: 0 0 calc(100% - var(--product-detail-info-width));
		max-width: calc(100% - var(--product-detail-info-width));
		overflow: visible;
	}

	.product-detail-page .product-details-shell > .product-details-info-column {
		flex: 0 0 var(--product-detail-info-width);
		max-width: var(--product-detail-info-width);
		position: relative;
		align-self: stretch;
		overflow: visible;
	}

	.product-detail-page .product-media-card {
		aspect-ratio: 2 / 3;
		height: auto;
	}

	.product-detail-page .product-media-card__target {
		box-sizing: border-box;
	}

	.product-detail-page .product-media-card img,
	.product-detail-page .product-media-card video {
		object-fit: cover;
		object-position: center top;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		transform: scale(0.94);
		transform-origin: center top;
		background: transparent;
		border: 0 !important;
		outline: 0 !important;
		box-shadow: none !important;
	}

	.product-detail-page .product-media-card--secondary img,
	.product-detail-page .product-media-card--secondary video,
	.product-detail-page .product-media-card--video video {
		object-fit: cover;
		object-position: center;
	}
}

.product-gallery-column .product-gallery {
	width: 100%;
}

.product-media-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.product-media-grid--quick {
	grid-template-columns: 1fr;
	max-height: 620px;
	overflow-y: auto;
	padding-right: 6px;
}

.product-media-card {
	background: #eef0f2;
	overflow: hidden;
	position: relative;
	aspect-ratio: 2 / 3;
}

.product-media-card::before,
.media-attribute-thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	pointer-events: none;
	background: linear-gradient(110deg, #eceff2 0%, #f7f8f9 42%, #e4e7ea 72%);
	background-size: 220% 100%;
	animation: product-detail-media-loading 1.35s ease-in-out infinite;
	transition: opacity 0.18s ease;
}

.product-media-card.is-media-loading::before,
.media-attribute-thumb.is-media-loading::before {
	opacity: 1;
}

.product-media-card.is-media-loaded,
.product-media-card.is-media-error {
	background: transparent;
}

.product-media-card.is-media-error::before,
.media-attribute-thumb.is-media-error::before {
	opacity: 1;
	animation: none;
	background: #eef0f2;
}

.product-media-card--video {
	background: transparent;
}

.product-media-card--video::before {
	display: none;
}

.product-media-card__target {
	display: block;
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.product-media-card img,
.product-media-card video {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-position: center;
	transition: opacity 0.18s ease;
}

.product-media-card img {
	object-fit: cover;
}

.product-media-card img.is-media-loading,
.media-attribute-thumb img.is-media-loading,
.product-media-card img.is-media-error,
.media-attribute-thumb img.is-media-error {
	opacity: 0;
}

.product-media-card img.is-media-loaded,
.media-attribute-thumb img.is-media-loaded {
	opacity: 1;
}

.product-media-card--secondary img,
.product-media-card--secondary video,
.product-media-card--video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: transparent;
}

.product-detail-page .product-media-grid,
.product-detail-page .product-media-card__target {
	background: transparent;
}

.product-detail-page .product-media-card,
.product-detail-page .product-media-card:focus,
.product-detail-page .product-media-card:focus-visible,
.product-detail-page .product-media-card__target,
.product-detail-page .product-media-card__target:focus,
.product-detail-page .product-media-card__target:focus-visible,
.product-detail-page .product-media-card img,
.product-detail-page .product-media-card video {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.product-media-card--placeholder img {
	object-fit: contain;
	padding: 1.5rem;
}

.product-details-sticky {
	position: relative;
	top: auto;
	padding-left: 14px;
	width: 100%;
}

.attribute-value-wrapper__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.attribute-value-wrapper {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.attribute-value-wrapper__options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: center;
}

.product-size-guide-link {
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0.8125rem;
	font-weight: 500;
	color: hsl(var(--heading-color));
	text-decoration: underline;
	text-underline-offset: 2px;
}

.product-extra-guides {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.product-extra-guide-btn {
	border: 1px solid hsl(var(--border));
	background: #fff;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 0.875rem;
	font-weight: 600;
	color: hsl(var(--heading-color));
	transition: 0.2s ease;
}

.product-extra-guide-btn:hover,
.product-size-guide-link:hover {
	color: hsl(var(--heading-color));
}

.media-attribute-thumb {
	display: inline-flex;
	width: 42px;
	height: 54px;
	border: 1px solid hsl(var(--border));
	background: #eef0f2;
	overflow: hidden;
	position: relative;
	line-height: 0;
}

.media-attribute-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	position: relative;
	z-index: 1;
	object-fit: cover;
	object-position: center top;
	transition: opacity 0.18s ease;
}

.media-attribute-thumb.is-media-loaded,
.media-attribute-thumb.is-media-error {
	background: #fff;
}

.attribute-value.active .media-attribute-thumb {
	border-color: hsl(var(--heading-color));
	box-shadow: inset 0 0 0 1px hsl(var(--heading-color));
}

.attribute-value-wrapper .color-attribute {
	border-radius: 0;
	width: 38px;
	height: 38px;
	border: 1px solid #d9d9de;
	outline: 0;
}

.attribute-value-wrapper .attribute-value.active .color-attribute::before {
	font-size: 0.75rem;
}

.product-guide-modal {
	position: fixed;
	inset: 0;
	z-index: 10020;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s ease;
}

.product-guide-modal.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.product-guide-modal__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(0, 0, 0, 0.54);
	padding: 0;
}

.product-guide-modal__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(100vw, 440px);
	height: 100vh;
	background: #fff;
	padding: 18px 22px 28px;
	box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.24s ease;
}

.product-guide-modal.is-open .product-guide-modal__panel {
	transform: translateX(0);
}

.product-guide-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 14px;
	margin-bottom: 18px;
	border-bottom: 1px solid hsl(var(--border));
}

.product-guide-modal .product-guide-drawer__title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.product-guide-modal .product-guide-drawer__close {
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	font-size: 1.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: hsl(var(--heading-color));
}

.product-guide-modal__body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: calc(100vh - 120px);
	overflow-y: auto;
	padding-right: 6px;
}

.product-guide-modal .product-guide-drawer__content img,
.description-item__image img {
	max-width: 100%;
	height: auto;
}

.product-guide-modal .product-guide-drawer__image img {
	display: block;
	width: 100%;
	height: auto;
}

.product-guide-modal .product-guide-drawer__image {
	background: transparent;
	padding: 0;
	border-radius: 0;
}

html.product-guide-open,
body.product-guide-open {
	overflow: hidden;
}

.product-related-section {
	margin-top: 72px;
}

.product-related-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.product-related-section__title {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.25rem);
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
}

.product-related-section__controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.product-related-section__control {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid hsl(var(--border));
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: hsl(var(--heading-color));
}

.product-related-section__control[disabled] {
	opacity: 0.45;
	pointer-events: none;
}

.product-related-section__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 14px;
	scrollbar-width: none;
}

.product-related-section__track::-webkit-scrollbar {
	display: none;
}

.product-related-section__slide {
	flex: 0 0 calc((100% - 48px) / 4);
	scroll-snap-align: start;
}

@media (max-width: 575px) {
	.product-detail-page .container {
		max-width: 100%;
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}

	.product-details {
		gap: 1rem;
	}
}

.product-details .ratings-area {
	margin-top: 3px;
}

.product-detail-price {
	margin-top: 8px;
}

.product-types {
	gap: 6px;
}

.product-details-label,
.product-share b {
	font-size: 0.875rem;
	font-weight: 600;
}

.product-types span a {
	color: hsl(var(--body-color));
}

.product-types span a:hover {
	color: hsl(var(--base));
}

.product-details .ratings {
	font-size: 1rem;
}

.product-details .product-price {
	line-height: 1;
	font-weight: 600;
	font-size: 1.1rem;
}

.product-details .product-price {
	color: hsl(var(--heading-color));
}

.product-details .product-price del {
	color: hsl(var(--heading-color) / 0.6);
}

.product-add-to-cart {
	display: flex;
	gap: 0.8rem;
}

.product-details .product-share a {
	background: hsl(var(--white));
	padding: 5px 12px;
	color: hsl(var(--white));
	border-radius: 3px;
	margin: 0 2px;
	border: 1px solid #ebebeb;
	color: #424242;
	transition: 0.3s;
}

.product-details .product-share a:hover {
	color: hsl(var(--base));
}

.product-details .add-to-wishlist-btn {
	border: 1px solid hsl(var(--border));
	padding: 8px 14px;
	font-size: 0.875rem;
	border-radius: 3px;
}

.product-details .add-to-wishlist-btn .wish-icon {
	content: "";
	font-family: "Line Awesome Free";
	font-weight: 400;
}

.product-details .add-to-wishlist-btn .wish-icon::after {
	content: "\f004";
}

.product-details .add-to-wishlist-btn.active .wish-icon,
.product-details .add-to-wishlist-btn.active .compare-icon {
	font-weight: 900;
	color: hsl(var(--base));
}

.product-details-video {
	max-width: 600px;
	height: 400px;
	width: 100%;
	border-radius: 8px;
}

.description-item__image {
	background: #f6f7fb;
	padding: 1rem;
	border-radius: 12px;
}

.product-detail-page .product-details-shell > .product-details-info-column {
	position: relative;
	align-self: stretch;
}

.product-detail-page .product-details-sticky {
	position: relative;
	top: auto;
	padding-left: clamp(16px, 2.5vw, 28px);
	width: 100%;
}

.product-detail-page .product-details {
	gap: 1.1rem;
}

.product-detail-page .product-header--page {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.product-detail-page .product-title--page {
	margin: 0;
	font-size: clamp(1.7rem, 2.4vw, 2.8rem);
	line-height: 0.92;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: -0.05em;
}

.product-detail-page .product-price-panel {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.product-detail-page .product-discount-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 5px 9px;
	border-radius: 2px;
	background: #cd2d26;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.product-detail-page .product-price-panel__values {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
}

.product-detail-page .product-price-panel__compare {
	color: #8a8a91;
	font-size: 1rem;
	text-decoration: line-through;
}

.product-detail-page .product-price-panel__current {
	color: #111827;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
}

.product-detail-page .product-installments {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.product-detail-page .product-installments__text {
	margin: 0;
	font-size: 0.92rem;
	color: #171717;
}

.product-detail-page .product-installments__text strong {
	font-weight: 800;
}

.product-detail-page .product-installments__logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.product-detail-page .product-installments__logos img {
	display: block;
	width: auto;
	height: 18px;
	object-fit: contain;
}

.product-detail-page .product-attribute--page {
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
	align-items: flex-start;
}

.product-detail-page .attribute-value-wrapper--visual {
	width: 100%;
	display: block;
	align-self: flex-start;
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}

.product-detail-page .attribute-value-wrapper--visual .attribute-value-wrapper__head,
.product-detail-page .attribute-value-wrapper--visual .attribute-value-wrapper__options {
	display: flex;
	width: 100%;
	margin-left: 0;
	margin-right: auto;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
}

.product-detail-page .attribute-value-wrapper--visual .attribute-name {
	display: block;
	width: 100%;
	text-align: left;
}

.product-detail-page .attribute-value-wrapper--visual .attribute-value-wrapper__options {
	gap: 0.65rem;
}

.product-detail-page .attribute-value-wrapper--textual .attribute-value-wrapper__options {
	gap: 0.5rem;
}

.product-detail-page .attribute-value-wrapper--textual {
	width: 100%;
	display: block;
	align-self: flex-start;
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}

.product-detail-page .attribute-value-wrapper--textual .attribute-value-wrapper__head,
.product-detail-page .attribute-value-wrapper--textual .attribute-value-wrapper__options {
	width: 100%;
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}

.product-detail-page .attribute-value-wrapper--textual .attribute-value-wrapper__head {
	align-items: flex-end;
	margin-top: 0.35rem;
}

.product-detail-page .attribute-value-wrapper--textual .attribute-name {
	display: block;
	text-align: left;
}

.product-detail-page .attribute-value-wrapper--textual .product-size-guide-link {
	margin-left: auto;
}

.product-detail-page .attribute-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: #161616;
}

.product-detail-page .product-attribute-current {
	font-weight: 500;
	color: #5a5a60;
}

.product-detail-page .product-variant-option {
	position: relative;
	border: 0;
	padding: 0;
	background: transparent;
	transition: opacity 0.2s ease;
}

.product-detail-page .product-variant-option--visual .media-attribute-thumb,
.product-detail-page .product-variant-option--visual .color-attribute {
	display: block;
	width: 54px;
	height: 70px;
	border: 1px solid #d5d5da;
	background: #fff;
	border-radius: 0;
	overflow: hidden;
}

.product-detail-page .product-variant-option--visual .media-attribute-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-detail-page .product-variant-option--visual .color-attribute {
	outline: 0;
}

.product-detail-page .product-variant-option--visual.active .media-attribute-thumb,
.product-detail-page .product-variant-option--visual.active .color-attribute {
	border-color: #111827;
	box-shadow: inset 0 0 0 1px #111827;
}

.product-detail-page .product-variant-option--box .text-attribute {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid #d5d5da;
	border-radius: 0;
	background: #fff;
	color: #111827;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.product-detail-page .product-variant-option--box.active .text-attribute {
	background: #111111;
	border-color: #111111;
	color: #fff;
}

.product-detail-page .product-variant-option.is-unavailable {
	opacity: 0.52;
	cursor: pointer;
}

.product-detail-page .product-variant-option:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.product-detail-page .product-variant-option.is-unavailable::before,
.product-detail-page .product-variant-option.is-unavailable::after {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	top: 50%;
	height: 1.5px;
	background: #b9bac0;
	transform-origin: center;
	pointer-events: none;
}

.product-detail-page .product-variant-option.is-unavailable::before {
	transform: rotate(42deg);
}

.product-detail-page .product-variant-option.is-unavailable::after {
	transform: rotate(-42deg);
}

.product-detail-page .product-add-to-cart--page {
	margin-top: 0.15rem;
}

.product-detail-page .product-extra-guides-inline {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0 0 10px;
}

.product-detail-page .product-extra-guide-link {
	padding: 0;
	border: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.2;
	color: #7d8088;
	text-decoration: none;
}

.product-detail-page .product-extra-guide-link span {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.product-detail-page .product-size-guide-link.product-extra-guide-link:hover {
	color: #7d8088;
}

.product-detail-page .product-extra-guide-link i {
	font-size: 0.8rem;
	color: inherit;
}

.product-detail-page .product-extra-guide-link:hover {
	color: #63666d;
}

.product-detail-page .product-cta-button {
	width: 100%;
	height: 54px;
	border: 0;
	border-radius: 999px;
	background: #070707;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-detail-page .product-cta-button:hover {
	opacity: 0.94;
}

.product-detail-page .product-cta-button:disabled {
	background: #b6b6b9;
	color: #fff;
	cursor: not-allowed;
}

.product-detail-page .product-detail-accordion {
	border-top: 1px solid #dfdfe4;
	border-bottom: 1px solid #dfdfe4;
}

.product-detail-page .product-detail-accordion__toggle {
	width: 100%;
	padding: 13px 0;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: #111111;
	font-size: 0.98rem;
	font-weight: 700;
	text-align: left;
}

.product-detail-page .product-detail-accordion__toggle i {
	font-size: 1.15rem;
	transition: transform 0.2s ease;
}

.product-detail-page .product-detail-accordion.is-open .product-detail-accordion__toggle i {
	transform: rotate(180deg);
}

.product-detail-page .product-detail-accordion__body {
	padding: 0 0 16px;
	color: #2e2e34;
	font-size: 0.92rem;
	line-height: 1.7;
}

.product-detail-page .product-detail-accordion__body p:last-child,
.product-detail-page .product-detail-accordion__body ul:last-child {
	margin-bottom: 0;
}

.product-detail-page .product-extra-guides--page {
	margin-top: 2px;
}

@media (max-width: 767px) {
	.product-detail-page .product-media-grid {
		display: flex;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
	}

	.product-detail-page .product-media-grid::-webkit-scrollbar {
		display: none;
	}

	.product-details-sticky {
		position: static;
		padding-left: 0;
	}

	.product-detail-page .product-title--page {
		font-size: 1.5rem;
	}

	.product-detail-page .product-price-panel__current {
		font-size: 1.32rem;
	}

	.product-detail-page .product-installments__text {
		font-size: 0.84rem;
	}

	.product-detail-page .product-installments__logos img {
		height: 16px;
	}

	.product-detail-page .product-variant-option--visual .media-attribute-thumb,
	.product-detail-page .product-variant-option--visual .color-attribute {
		width: 48px;
		height: 62px;
	}

	.product-detail-page .product-variant-option--box .text-attribute {
		min-width: 70px;
		height: 38px;
		padding: 0 12px;
		font-size: 0.82rem;
	}

	.product-detail-page .product-cta-button {
		height: 50px;
		font-size: 0.88rem;
	}

	.product-detail-page .product-extra-guides-inline {
		margin-bottom: 8px;
	}

	.product-detail-page .product-extra-guide-link {
		font-size: 0.74rem;
	}

	.product-detail-page .product-media-card {
		flex: 0 0 100%;
		aspect-ratio: 2 / 3;
		scroll-snap-align: start;
	}

	.product-detail-page .product-media-card img,
	.product-detail-page .product-media-card video {
		object-fit: cover;
		object-position: center top;
	}

	.product-media-dots {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-top: 14px;
	}

	.product-media-dot {
		width: 8px;
		height: 8px;
		border-radius: 999px;
		border: 0;
		padding: 0;
		background: rgba(18, 18, 18, 0.2);
		transition: 0.2s ease;
	}

	.product-media-dot.is-active {
		background: #121212;
	}

	.product-details-video {
		height: 320px;
	}

	.product-related-section {
		margin-top: 48px;
	}

	.product-related-section__head {
		margin-bottom: 14px;
	}

	.product-related-section__title {
		font-size: 1.35rem;
	}

	.product-related-section__control {
		width: 38px;
		height: 38px;
	}

	.product-related-section__slide {
		flex-basis: min(80vw, 320px);
	}

	.product-guide-modal__panel {
		width: 100vw;
		padding: 16px 16px 24px;
	}

	.attribute-value-wrapper__head {
		flex-wrap: wrap;
	}

	.media-attribute-thumb {
		width: 38px;
		height: 48px;
	}
}

@media (max-width: 425px) {
	.product-details-video {
		height: 200px;
	}
}
.review--image {
	display: flex;
	gap: 5px;
	margin-top: 5px;
}

.review--image a {
	display: inline-block;
	width: 90px;
	height: 90px;
	border: 1px solid #e7e7e7;
	border-radius: 3px;
	padding: 5px;
}

.review--image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
}

.review-reply-items .review-item .thumb {
	height: 45px !important;
	width: 45px !important;
	padding: 8px;
}

.review-reply-items .posted-by {
	font-size: 16px;
}

.review-reply-items .posted-by .posted-on {
	font-size: 13px;
}

.review-reply-items .review--image a {
	height: 80px;
	width: 80px;
}

.review-reply-items .review-item__reply-msg {
	font-size: 15px;
}
