.e-n-accordion > .e-n-accordion-item[open] > .e-n-accordion-item-title{
	border-radius: 16px 16px 0px 0px !important;
}

@media (max-width: 1024px) {
  .product-banner {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(7, minmax(25%, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .product-banner {
    grid-template-columns: repeat(7, minmax(45%, 1fr));
  }
}

.product-banner::-webkit-scrollbar {
  display: none;
}
.product-banner {
  scrollbar-width: none;
}

.FeedGridLayout__cell{
	border: 8px solid #fff;
}




.bv-reviews {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "obvia";
}

.bv-summary {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.bv-summary__stars {
	display: inline-flex;
	gap: 4px;
	align-items: center;
}

.bv-star {
	font-size: 2em;
	color: #fff;
	line-height: 1;
}

.bv-star--empty {
	opacity: 0.25;
}

.bv-star--half {
	opacity: 0.5;
}

.bv-summary__bottom {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.bv-summary__score {
	font-size: 1.3em;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.bv-summary__divider {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.25);
}

.bv-summary__count {
	font-size: 0.8em;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(255, 255, 255, 0.25);
	line-height: 1;
}

.bv-summary:hover .bv-summary__count {
	color: rgba(255, 255, 255, 0.85);
}

.bv-summary--empty {
	cursor: default;
}

.bv-summary--empty .bv-star {
	opacity: 0.2;
}

.bv-summary__count--no-reviews {
	text-decoration: none;
}

.bv-empty {
	font-size: 0.85em;
	color: rgba(255, 255, 255, 0.4);
}

/* Modal */

.bv-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.bv-modal-overlay.is-open {
	display: flex;
}

.bv-modal {
	background: #fff;
	border-radius: 10px;
	width: 100%;
	max-width: 560px;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.bv-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.4em;
	color: #bbb;
	line-height: 1;
	padding: 0;
	z-index: 1;
}

.bv-modal__close:hover {
	color: #333;
}

.bv-modal__body {
	overflow-y: auto;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
}

.bv-modal__review {
	padding: 16px 0;
	border-bottom: 1px solid #f0f0f0;
}

.bv-modal__review:last-child {
	border-bottom: none;
}

.bv-modal__review-stars {
	display: inline-flex;
	gap: 2px;
	margin-bottom: 6px;
}

.bv-modal__review-stars .bv-star {
	font-size: 1.5em;
	color: #111;
}

.bv-modal__review-stars .bv-star--empty {
	opacity: 0.2;
}

.bv-modal__review-stars .bv-star--half {
	opacity: 0.5;
}

.bv-modal__review-title {
	font-size: 0.9em;
	font-weight: 700;
	color: #111;
	margin: 0 0 5px;
}

.bv-modal__review-text {
	font-size: 0.88em;
	color: #444;
	line-height: 1.6;
	margin: 0 0 8px;
}

.bv-modal__review-meta {
	font-size: 0.78em;
	color: #bbb;
	display: flex;
	gap: 10px;
}

.bv-modal__review-author {
	font-weight: 600;
	color: #999;
}