:root{
	/* Project palette: dark blue + orange */
	--primary: #0B1F5E;
	--primary-hover: #071846;
	--primary-dark: #04102f;
	--primary-light: rgba(11, 31, 94, 0.12);
	--primary-light-2: rgba(11, 31, 94, 0.22);
	--secondary: #FF7A00;
	--secondary-light: rgba(255, 122, 0, 0.25);
	--bs-primary: #0B1F5E;
	--bs-primary-rgb: 11, 31, 94;
	--bs-secondary: #FF7A00;
	--bs-secondary-rgb: 255, 122, 0;
}

/* Global refinements */
body{
	background: #f8f9fa;
	color: #333;
	font-family: 'DM Sans', sans-serif;
}

.mm-navbar{
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 1050;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mm-page-header{
	position: relative;
	padding: 60px 0;
	border-bottom: 0;
	color: #fff;
	background: #0B1F5E;
	overflow: hidden;
}

.mm-page-header::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(11,31,94,1) 0%, rgba(11,31,94,0.8) 100%);
	z-index: 0;
}

.mm-page-header::after{
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,122,0,0.15) 0%, rgba(255,122,0,0) 70%);
	z-index: 1;
	transform: rotate(-15deg);
}

.mm-page-header .container{
	position: relative;
	z-index: 2;
}

.mm-page-title{
	font-weight: 800;
	font-size: 2.5rem;
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.mm-page-subtitle{
	font-size: 1.1rem;
	color: #ffffff;
	font-weight: 400;
}

.mm-page-header .breadcrumb-item,
.mm-page-header .breadcrumb-item a,
.mm-page-header .breadcrumb-item.active{
	color: #ffffff !important;
	opacity: 1 !important;
}

.mm-page-header .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255,255,255,0.5);
}

/* Shop Cards */
.shop-card{
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0,0,0,0.05);
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	display: flex;
	flex-direction: column;
}

.shop-card:hover{
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	border-color: rgba(11,31,94,0.1);
}

.shop-card .dz-media{
	position: relative;
	padding-top: 100%; /* 1:1 Aspect Ratio */
	overflow: hidden;
	background: #f4f6fb;
}

.shop-card .dz-media img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.shop-card:hover .dz-media img{
	transform: scale(1.08);
}

.shop-card .dz-content{
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.shop-card .title{
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.4;
}

.shop-card .title a{
	color: #0B1F5E;
	text-decoration: none;
}

.shop-card .brand-tag{
	display: inline-block;
	padding: 4px 12px;
	background: rgba(11,31,94,0.05);
	color: #0B1F5E;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
	width: fit-content;
}

.shop-card .price{
	font-size: 1.25rem;
	font-weight: 800;
	color: #0B1F5E;
	margin-top: auto;
}

.shop-card .price del{
	font-size: 0.9rem;
	color: #adb5bd;
	font-weight: 400;
	margin-left: 8px;
}

.shop-card .badge{
	font-size: 10px;
	padding: 5px 10px;
	border-radius: 6px;
	font-weight: 700;
}

/* Category Cards */
.dz-category-card{
	position: relative;
	height: 300px;
	border-radius: 24px;
	overflow: hidden;
	background: #0B1F5E;
	color: #fff;
	transition: all 0.4s ease;
	border: 0;
}

.dz-category-card:hover{
	transform: scale(1.02);
}

.dz-category-card .category-image{
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.6;
	transition: transform 0.6s ease;
}

.dz-category-card:hover .category-image{
	transform: scale(1.1);
	opacity: 0.4;
}

.dz-category-card .category-content{
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	background: linear-gradient(180deg, rgba(11,31,94,0) 0%, rgba(11,31,94,0.8) 100%);
}

.dz-category-card .title{
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 5px;
	color: #fff;
}

.dz-category-card p{
	font-size: 1rem;
	opacity: 0.8;
	margin-bottom: 20px;
}

.dz-category-card.mm-small{
	height: 220px;
	border-radius: 18px;
}

.dz-category-card.mm-small .category-content{
	padding: 20px;
}

.dz-category-card.mm-small .title{
	font-size: 1.35rem;
}

.dz-category-card.mm-small p{
	font-size: 0.95rem;
	margin-bottom: 14px;
}

/* Cart & Forms */
.cart-box{
	background: #fff;
	border-radius: 20px;
	padding: 15px;
	margin-bottom: 15px;
	display: flex;
	gap: 20px;
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.cart-box:hover{
	border-color: rgba(11,31,94,0.1);
	box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.cart-box .dz-media{
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	border-radius: 16px;
	overflow: hidden;
}

.cart-box .dz-media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-box .cart-content{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cart-box .title{
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 4px;
}

.cart-box .title a{
	color: #0B1F5E;
	text-decoration: none;
}

.cart-box .brand-tag{
	font-size: 12px;
	color: #6c757d;
	margin-bottom: 10px;
}

.cart-box .cart-footer{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cart-box .price{
	font-weight: 800;
	color: #0B1F5E;
	font-size: 1.1rem;
}

.cart-box .price del{
	font-size: 0.85rem;
	color: #adb5bd;
	margin-left: 8px;
	font-weight: 400;
}

/* Stepper refinement */
.dz-stepper{
	display: flex;
	align-items: center;
	background: #f4f6fb;
	border-radius: 10px;
	padding: 2px;
}

.dz-stepper input{
	width: 40px;
	border: 0;
	background: transparent;
	text-align: center;
	font-weight: 700;
	color: #0B1F5E;
}

/* Buttons refinement */
.btn-primary{
	background-color: #0B1F5E;
	border-color: #0B1F5E;
	padding: 10px 24px;
	border-radius: 12px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.btn-primary:hover{
	background-color: #FF7A00;
	border-color: #FF7A00;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255,122,0,0.3);
}

.btn-outline-secondary{
	border-radius: 12px;
	padding: 10px 24px;
	font-weight: 600;
	border-color: rgba(0,0,0,0.1);
	color: #495057;
}

.btn-outline-secondary:hover{
	background-color: #f8f9fa;
	border-color: rgba(0,0,0,0.2);
	color: #0B1F5E;
}

/* Section Title */
.mm-section-title{
	margin-bottom: 30px;
}

.mm-section-title h2{
	font-weight: 800;
	color: #0B1F5E;
	font-size: 1.75rem;
	margin: 0;
	position: relative;
	padding-bottom: 10px;
}

.mm-section-title h2::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: #FF7A00;
	border-radius: 2px;
}

/* Product Detail refinements */
.brand-tag{
	display: inline-block;
	padding: 4px 12px;
	background: rgba(255,122,0,0.1);
	color: #FF7A00;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.dz-product-detail .price{
	font-size: 2rem;
	font-weight: 900;
	color: #0B1F5E;
}

.product-size .btn-check:checked + .btn{
	background-color: #0B1F5E;
	color: #fff;
	border-color: #0B1F5E;
}

.product-size .btn{
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 700;
	border: 2px solid #f4f6fb;
	background: #f4f6fb;
	margin-right: 8px;
}

.dz-product-preview .swiper{
	border-radius: 24px;
	overflow: hidden;
}

.dz-product-preview .product-detail-swiper .swiper-slide{
	cursor: pointer;
	border-radius: 12px;
	overflow: hidden;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.dz-product-preview .product-detail-swiper .swiper-slide-thumb-active{
	opacity: 1;
	border: 2px solid #0B1F5E;
}

/* Footer styling */
.mm-footer{
	background: #0B1F5E;
	color: rgba(255, 255, 255, 0.8);
	padding-top: 60px;
	position: relative;
	overflow: hidden;
}

.mm-footer::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 100% 100%, rgba(255, 122, 0, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.mm-footer-top{
	background: #fff;
	border-radius: 24px;
	margin-bottom: 50px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	position: relative;
	z-index: 2;
}

.mm-footer-top h4{
	color: #0B1F5E;
	font-weight: 800;
}

.mm-footer-title{
	color: #fff;
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 1.1rem;
	position: relative;
}

.mm-footer-text{
	line-height: 1.8;
	font-size: 0.95rem;
}

.mm-footer-links{
	list-style: none;
	padding: 0;
	margin: 0;
}

.mm-footer-links li{
	margin-bottom: 12px;
}

.mm-footer-links a{
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.mm-footer-links a:hover{
	color: #FF7A00;
	padding-left: 5px;
}

.mm-footer-label{
	color: #fff;
	font-weight: 600;
	margin-right: 5px;
}

.mm-footer-hr{
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 40px 0 25px;
	opacity: 1;
}

.mm-footer-inline-link{
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.mm-footer-inline-link:hover{
	color: #fff;
}

.mm-page-header .text-muted{
	color: rgba(255, 255, 255, 0.5) !important;
}

/* Hero Section Refinements */
.mm-hero {
	position: relative;
	background: #0B1F5E;
	overflow: hidden;
	color: #fff;
}

.mm-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0B1F5E 0%, #04102f 100%);
	z-index: 0;
}

.mm-hero::after {
	content: "";
	position: absolute;
	top: -20%;
	right: -10%;
	width: 70%;
	height: 140%;
	background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
	z-index: 1;
	transform: rotate(-15deg);
	pointer-events: none;
}

.mm-hero .container {
	position: relative;
	z-index: 10;
}

.mm-hero-badge {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 16px;
	border-radius: 50px;
	color: #fff;
	backdrop-filter: blur(5px);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: #FF7A00;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 rgba(255, 122, 0, 0.4);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7); }
	70% { box-shadow: 0 0 0 10px rgba(255, 122, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

.ls-1 { letter-spacing: 0.1em; }
.ls-2 { letter-spacing: 0.2em; }

.mm-hero-title {
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.mm-hero-visual {
	position: relative;
}

.mm-hero-card {
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3);
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform 0.5s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-hero-visual:hover .mm-hero-card {
	transform: perspective(1000px) rotateY(0deg);
}

.mm-hero-stats {
	position: absolute;
	bottom: -30px;
	left: 10%;
	background: #fff;
	padding: 20px 40px;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
	z-index: 20;
	gap: 40px;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-value {
	color: #0B1F5E;
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 1;
}

.stat-label {
	color: #6c757d;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mm-hero-swiper .swiper-slide {
	height: 500px;
	position: relative;
}

.mm-hero-swiper .banner-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.mm-hero-swiper .banner-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
	background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 70%);
	color: #fff;
	z-index: 2;
}

.mm-hero-swiper .banner-content.content-right {
	background: linear-gradient(-90deg, rgba(0,0,0,0.7) 0%, transparent 70%);
	text-align: right;
	align-items: flex-end;
}

.mm-hero-swiper .offer {
	color: #FF7A00;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* About Page */
.mm-about .mm-page-main{
	background:
		radial-gradient(circle at top left, rgba(255,122,0,0.08), transparent 28%),
		linear-gradient(180deg, #f8f9fa 0%, #eef3ff 100%);
}

.mm-about-badge{
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.18);
	padding: 6px 16px;
	border-radius: 999px;
	color: #fff;
	backdrop-filter: blur(6px);
}

.mm-about-hero{
	background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,249,255,0.95));
	border: 1px solid rgba(11,31,94,0.06);
}

.mm-about-title{
	font-size: clamp(1.8rem, 2.5vw, 2.7rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.mm-about-showcase{
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 28px;
	background: linear-gradient(135deg, #eef3ff 0%, #fff7ef 100%);
	overflow: hidden;
}

.mm-about-panel{
	position: relative;
	z-index: 2;
	max-width: 360px;
	padding: 32px;
	background: rgba(255,255,255,0.84);
	border: 1px solid rgba(255,255,255,0.55);
	backdrop-filter: blur(12px);
	border-radius: 28px;
	box-shadow: 0 25px 60px rgba(11,31,94,0.12);
}

.mm-about-orb{
	position: absolute;
	border-radius: 999px;
	filter: blur(0);
	opacity: 0.9;
}

.mm-about-orb-one{
	width: 190px;
	height: 190px;
	top: 28px;
	right: 40px;
	background: radial-gradient(circle, rgba(11,31,94,0.2) 0%, rgba(11,31,94,0.04) 70%, transparent 100%);
}

.mm-about-orb-two{
	width: 150px;
	height: 150px;
	bottom: 28px;
	left: 36px;
	background: radial-gradient(circle, rgba(255,122,0,0.28) 0%, rgba(255,122,0,0.05) 70%, transparent 100%);
}

.mm-about-chip{
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(11,31,94,0.08);
	color: #0B1F5E;
	font-size: 0.85rem;
	font-weight: 700;
}

.mm-mini-stat{
	background: #fff;
	border: 1px solid rgba(11,31,94,0.08);
	border-radius: 18px;
	padding: 18px 20px;
	box-shadow: 0 10px 30px rgba(11,31,94,0.05);
}

.mm-mini-stat-value{
	font-size: 1.15rem;
	font-weight: 800;
	color: #0B1F5E;
	line-height: 1.1;
}

.mm-mini-stat-label{
	font-size: 0.9rem;
	color: #6c757d;
	margin-top: 4px;
}

.mm-surface{
	background: rgba(255,255,255,0.88);
	border: 1px solid rgba(11,31,94,0.06);
	backdrop-filter: blur(6px);
}

.mm-about-pill{
	border-radius: 24px;
}

.mm-hover-lift{
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mm-hover-lift:hover{
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(11,31,94,0.1) !important;
	border-color: rgba(11,31,94,0.12);
}

.mm-icon-badge{
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(11,31,94,1), rgba(11,31,94,0.82));
	color: #fff;
	box-shadow: 0 15px 30px rgba(11,31,94,0.18);
	font-size: 1.2rem;
	flex-shrink: 0;
}

.mm-icon-badge--soft{
	background: rgba(11,31,94,0.08);
	color: #0B1F5E;
	box-shadow: none;
}

.mm-kicker{
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mm-preline{
	white-space: pre-line;
}

.mm-about-cta{
	position: relative;
	background: linear-gradient(135deg, #0B1F5E 0%, #04102f 100%);
}

.mm-about-cta::after{
	content: "";
	position: absolute;
	inset: auto -10% -30% auto;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255,122,0,0.25) 0%, rgba(255,122,0,0) 70%);
	pointer-events: none;
}

.mm-about-cta .card-body{
	position: relative;
	z-index: 2;
}

@media (max-width: 991.98px){
	.mm-about-showcase{
		min-height: 300px;
	}

	.mm-about-panel{
		max-width: 100%;
		padding: 24px;
	}
}

@media (max-width: 575.98px){
	.mm-about-hero,
	.mm-about-cta,
	.mm-about-pill,
	.mm-about-showcase,
	.mm-about-panel{
		border-radius: 20px !important;
	}

	.mm-icon-badge{
		width: 48px;
		height: 48px;
		border-radius: 14px;
	}
}

/* Blog */
.mm-blog .mm-page-main{
	background:
		radial-gradient(circle at top right, rgba(11,31,94,0.07), transparent 24%),
		linear-gradient(180deg, #f8f9fa 0%, #eef3ff 100%);
}

.mm-blog-badge{
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.18);
	padding: 6px 16px;
	border-radius: 999px;
	color: #fff;
	backdrop-filter: blur(6px);
}

.mm-blog-feature{
	background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,249,255,0.96));
	border: 1px solid rgba(11,31,94,0.06);
}

.mm-blog-feature-media{
	position: relative;
	height: 100%;
	min-height: 320px;
	overflow: hidden;
}

.mm-blog-feature-media::after{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11,31,94,0.02), rgba(11,31,94,0.15));
}

.mm-blog-feature-title{
	font-size: clamp(1.8rem, 2.6vw, 2.6rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.mm-blog-card{
	background: rgba(255,255,255,0.9);
	border: 1px solid rgba(11,31,94,0.06);
}

.mm-blog-card-media{
	overflow: hidden;
}

.mm-blog-card img,
.mm-blog-feature img{
	transition: transform 0.45s ease;
}

.mm-blog-card:hover img,
.mm-blog-feature:hover img{
	transform: scale(1.04);
}

.mm-blog-article{
	background: rgba(255,255,255,0.94);
	border: 1px solid rgba(11,31,94,0.06);
}

.mm-blog-prose{
	font-size: 1.05rem;
	line-height: 1.95;
	color: #4d5968;
}

.mm-blog-prose p{
	margin-bottom: 1.4rem;
}

.mm-blog-sidecard{
	background: rgba(255,255,255,0.92);
	border: 1px solid rgba(11,31,94,0.06);
}

.mm-blog-support-card{
	background: linear-gradient(135deg, #0B1F5E 0%, #04102f 100%);
	color: #fff;
	border: 0;
	position: relative;
	overflow: hidden;
}

.mm-blog-support-card::after{
	content: "";
	position: absolute;
	right: -60px;
	bottom: -80px;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(255,122,0,0.28) 0%, rgba(255,122,0,0) 70%);
}

.mm-blog-support-card .card-body{
	position: relative;
	z-index: 2;
}

.mm-blog-support-card h5{
	color: #fff !important;
}

@media (max-width: 991.98px){
	.mm-blog-feature-media{
		min-height: 260px;
	}
}
