/* =========================
   STORE SIDEBAR
========================= */

.mmpf-store-sidebar {
	margin-top: 0;
}

.mmpf-store-sidebar-inner {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.mmpf-store-sidebar-card {
	padding: 22px;
	background: linear-gradient(180deg, #17344c 0%, #0f4c6e 100%);
	border-radius: 22px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
	color: #fff;
}

.mmpf-store-sidebar-card-title {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.mmpf-store-sidebar-card-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
}

.mmpf-store-sidebar-widgets {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mmpf-store-widget {
	margin: 0 !important;
	padding: 20px;
	background: #fff;
	border: 1px solid #e7ebf0;
	border-radius: 22px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.mmpf-store-widget-heading {
	margin-bottom: 14px;
}

.mmpf-store-widget-heading .widget-title {
	margin: 0;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 800;
	color: #17344c;
}

.mmpf-store-widget input[type="text"],
.mmpf-store-widget input[type="search"],
.mmpf-store-widget input[type="email"],
.mmpf-store-widget input[type="number"],
.mmpf-store-widget select,
.mmpf-store-widget textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid #dce3ea;
	border-radius: 12px;
	background: #fff;
	color: #17344c;
	font-size: 14px;
	box-sizing: border-box;
}

.mmpf-store-widget input:focus,
.mmpf-store-widget select:focus,
.mmpf-store-widget textarea:focus {
	outline: none;
	border-color: #0f4c6e;
	box-shadow: 0 0 0 3px rgba(15, 76, 110, 0.10);
}

.mmpf-store-widget button,
.mmpf-store-widget input[type="submit"],
.mmpf-store-widget .button,
.mmpf-store-widget .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #0f4c6e;
	border: 1px solid #0f4c6e;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s ease;
	cursor: pointer;
}

.mmpf-store-widget button:hover,
.mmpf-store-widget input[type="submit"]:hover,
.mmpf-store-widget .button:hover,
.mmpf-store-widget .btn:hover {
	background: #0c3d58;
	border-color: #0c3d58;
	color: #fff;
	transform: translateY(-1px);
}

.mmpf-store-widget ul {
	margin: 0;
	padding-left: 18px;
}

.mmpf-store-widget li {
	margin-bottom: 8px;
	color: #4b5563;
}

.mmpf-store-widget a {
	color: #17344c;
	text-decoration: none;
	font-weight: 600;
}

.mmpf-store-widget a:hover {
	color: #0f4c6e;
	text-decoration: underline;
}

.mmpf-store-widget iframe {
	width: 100%;
	border: 0;
	border-radius: 16px;
	overflow: hidden;
}