/* ---------- Round Category Icons ---------- */
.mm-category-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
	padding: 32px 20px;
}
.mm-category-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	width: 90px;
}
.mm-category-icon-img {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	border: 2px solid #E7E1DC;
	margin-bottom: 8px;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.mm-category-icon:hover .mm-category-icon-img {
	border-color: #880000;
	transform: translateY(-3px);
}
.mm-category-icon-label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1F1F1F;
	text-align: center;
}

/* ---------- Trust Section ---------- */
.mm-trust-section {
	background: #880000;
	color: #fff;
	padding: 48px 20px;
	text-align: center;
}
.mm-trust-section h2 {
	font-family: 'Fraunces', serif;
	color: #fff;
	margin-bottom: 32px;
	font-size: 28px;
}
.mm-trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}
.mm-trust-badge {
	width: 200px;
}
.mm-trust-icon {
	font-size: 36px;
	margin-bottom: 10px;
}
.mm-trust-title {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 4px;
}
.mm-trust-desc {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	opacity: 0.85;
}

/* ---------- Testimonials ---------- */
.mm-testimonials {
	padding: 48px 20px;
	text-align: center;
	background: #FBEBEB;
}
.mm-testimonials h2 {
	font-family: 'Fraunces', serif;
	font-size: 28px;
	margin-bottom: 32px;
	color: #1F1F1F;
}
.mm-testimonial-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.mm-testimonial-card {
	background: #fff;
	border-radius: 10px;
	padding: 22px 20px;
	width: 280px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	text-align: left;
}
.mm-testimonial-stars {
	color: #880000;
	font-size: 16px;
	margin-bottom: 10px;
}
.mm-testimonial-quote {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #1F1F1F;
	line-height: 1.6;
	margin-bottom: 12px;
}
.mm-testimonial-name {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #6B6660;
	margin: 0;
}

/* ---------- Product Grid Sections (titles only — grid layout now handled globally in site-design.css) ---------- */
.mm-product-grid-section {
	padding: 32px 20px;
	text-align: center;
}
.mm-product-grid-title {
	font-family: 'Fraunces', serif;
	font-size: 26px;
	color: #1F1F1F;
	margin-bottom: 24px;
}
@media (max-width: 600px) {
	.mm-product-grid-title {
		font-size: 22px;
	}
}

@media (max-width: 600px) {
	.mm-category-icons {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		gap: 18px;
		padding: 20px 16px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.mm-category-icons::-webkit-scrollbar {
		display: none;
	}
	.mm-category-icon {
		flex: 0 0 auto;
		width: 76px;
	}
	.mm-category-icon-img { width: 64px; height: 64px; }
}

/* ---------- Video Gallery (Reels-style, autoplay, horizontal scroll) ---------- */
.mm-video-gallery {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 20px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.mm-video-item {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 220px;
}
.mm-video-card {
	position: relative;
	width: 220px;
	height: 390px;
	border-radius: 14px;
	overflow: hidden;
	display: block;
	background: #000;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.mm-video-shop-btn {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}
.mm-video-mute-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0,0,0,0.55);
	border: none;
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.mm-video-mute-btn svg {
	display: block;
}
.mm-video-card-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mm-video-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 55%;
	background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
	pointer-events: none;
}
.mm-video-card-caption {
	position: absolute;
	bottom: 14px;
	left: 14px;
	right: 14px;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.35;
}

@media (max-width: 600px) {
	.mm-video-item {
		width: 160px;
	}
	.mm-video-card {
		width: 160px;
		height: 280px;
	}
}

/* ---------- Product Slider (horizontal scroll, single row) ---------- */
body .cgt-product-slider ul.products,
body .cgt-product-slider ul.products.columns-4 {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto;
	gap: 18px;
	padding-bottom: 12px;
	-webkit-overflow-scrolling: touch;
}
/* Card width matches what a real grid with this many columns would produce,
   so a slider section and a grid section look the same size — it just scrolls
   sideways for anything beyond what fits on screen. */
body .cgt-product-slider ul.products li.product {
	flex: 0 0 calc((100% - (var(--cgt-slider-cols, 4) - 1) * 18px) / var(--cgt-slider-cols, 4)) !important;
	width: auto !important;
	max-width: none !important;
}
@media (max-width: 900px) {
	body .cgt-product-slider ul.products li.product {
		flex: 0 0 calc((100% - 2 * 14px) / 3) !important;
	}
}
@media (max-width: 600px) {
	body .cgt-product-slider ul.products {
		gap: 14px !important;
	}
	body .cgt-product-slider ul.products li.product {
		flex: 0 0 calc((100% - 14px) / 2) !important;
	}
}

/* ---------- Explore category button ---------- */
.mm-explore-button-wrap {
	text-align: center;
	margin: 20px 0 32px;
}
.mm-explore-button {
	display: inline-block;
	background: #fff !important;
	color: #880000 !important;
	border: 2px solid #880000 !important;
	padding: 12px 32px !important;
	border-radius: 6px;
	font-weight: 700;
}
.mm-explore-button:hover {
	background: #880000 !important;
	color: #fff !important;
}

/* ---------- Category icons: dark theme (for maroon/dark backgrounds) ---------- */
.mm-category-icons.mm-theme-dark {
	--mm-icon-size: 168px;
	--mm-icon-size-mobile: 90px;
}
.mm-category-icons.mm-theme-dark .mm-category-icon {
	width: calc(var(--mm-icon-size) + 32px);
}
.mm-category-icons.mm-theme-dark .mm-category-icon-img {
	width: var(--mm-icon-size);
	height: var(--mm-icon-size);
	border-width: 3px;
	border-color: rgba(255,255,255,0.6);
}
.mm-category-icons.mm-theme-dark .mm-category-icon:hover .mm-category-icon-img {
	border-color: #fff;
}
.mm-category-icons.mm-theme-dark .mm-category-icon-label {
	color: #fff;
	font-size: 15px;
}
@media (max-width: 600px) {
	.mm-category-icons.mm-theme-dark .mm-category-icon {
		width: calc(var(--mm-icon-size-mobile) + 20px);
	}
	.mm-category-icons.mm-theme-dark .mm-category-icon-img {
		width: var(--mm-icon-size-mobile);
		height: var(--mm-icon-size-mobile);
	}
}

/* ---------- Shop by Occasion section wrapper ---------- */
.mm-occasion-section {
	background: #880000;
	padding: var(--mm-occasion-padding, 40px) 20px;
	text-align: center;
}
.mm-occasion-section h2 {
	color: #fff;
	font-family: 'Fraunces', serif;
	font-size: 28px;
	margin-bottom: 8px;
}

/* ---------- Category icons: rectangle shape (product-box style, instead of round) ---------- */
.mm-category-icons.mm-shape-rectangle {
	--mm-icon-size: 160px;
	--mm-icon-size-mobile: 130px;
}
.mm-category-icons.mm-shape-rectangle .mm-category-icon {
	width: var(--mm-icon-size);
}
.mm-category-icons.mm-shape-rectangle .mm-category-icon-img {
	width: 100%;
	height: calc(var(--mm-icon-size) * 1.2);
	border-radius: 12px;
	border-width: 0;
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.mm-category-icons.mm-shape-rectangle .mm-category-icon:hover .mm-category-icon-img {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}
@media (max-width: 600px) {
	.mm-category-icons.mm-shape-rectangle .mm-category-icon {
		width: var(--mm-icon-size-mobile);
	}
	.mm-category-icons.mm-shape-rectangle .mm-category-icon-img {
		height: calc(var(--mm-icon-size-mobile) * 1.2);
	}
}
