/* ============================================================
   Configurator – Frontend Styles
   ============================================================ */

.momc-configurator {
	padding-bottom: 80px;
}

/* Intro */
.momc-intro {
	padding: 30px 0 40px;
}
.momc-intro h1,
.momc-intro h2 {
	margin-bottom: 15px;
	font-weight: 600;
	color: #101010;
}
@media screen and (min-width: 992px) {
	.momc-intro {
		padding: 60px 0 40px;
	}
}
/* ---------------------------------------------------------------
   Category Tabs
   --------------------------------------------------------------- */
.momc-category-tabs {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.momc-cat-tab {
	background: #fff;
	border: 2px solid #b51132;
	color: #b51132;
	font-size: 16px;
	font-weight: 600;
	padding: 20px 40px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	min-width: 180px;
}
.momc-cat-tab:hover,
.momc-cat-tab.active {
	background: #b51132;
	color: #fff;
}
.momc-cat-icon {
	width: 48px;
	height: 48px;
	display: block;
	fill: #b51132;
	transition: fill 0.3s;
}
.momc-cat-tab:hover .momc-cat-icon,
.momc-cat-tab.active .momc-cat-icon {
	fill: #fff;
}
/* For SVGs using stroke instead of fill */
.momc-cat-icon path,
.momc-cat-icon circle,
.momc-cat-icon rect,
.momc-cat-icon polygon {
	stroke: inherit;
	transition: stroke 0.3s, fill 0.3s;
	fill: #b51132;
}
.momc-cat-tab:hover .momc-cat-icon path,
.momc-cat-tab:hover .momc-cat-icon circle,
.momc-cat-tab:hover .momc-cat-icon rect,
.momc-cat-tab:hover .momc-cat-icon polygon,
.momc-cat-tab.active .momc-cat-icon path,
.momc-cat-tab.active .momc-cat-icon circle,
.momc-cat-tab.active .momc-cat-icon rect,
.momc-cat-tab.active .momc-cat-icon polygon {
	fill: #fff;
	stroke: #fff;
}

/* ---------------------------------------------------------------
   Equipment List
   --------------------------------------------------------------- */
.momc-equipment-list {
	max-width: 900px;
	margin: 0 auto;
}

.momc-equip-group {
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 15px;
}
.momc-equip-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.momc-equip-subtitle {
	font-size: 14px;
	color: #777;
	margin: -10px 0 15px 0;
}

/* Equipment body: image + options side by side */
.momc-equip-body {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.momc-equip-thumb {
	flex: 0 0 160px;
}
.momc-equip-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}
.momc-equip-options {
	flex: 1;
	min-width: 0;
}
.momc-equip-thumb + .momc-equip-options {
	padding-left: 10px;
}
@media screen and (min-width: 1280px) {
	.momc-equip-thumb + .momc-equip-options {
		padding-left: 20px;
	}
}

.momc-equip-desc {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 10px;
}
.momc-equip-desc p:last-child {
	margin-bottom: 0;
}

/* Single option row: input | content */
.momc-opt-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 6px 0;
}
.momc-opt-input {
	flex: 0 0 auto;
	padding-top: 2px;
}
.momc-opt-content {
	flex: 1;
	min-width: 0;
}
.momc-opt-name {
	display: block;
}
.momc-opt-price {
	color: #888;
	font-size: 13px;
}

/* Options – select dropdown */
.momc-equip-options select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	appearance: auto;
}

/* Options – radio / checkbox labels */
.momc-radio-label,
.momc-checkbox-label {
	font-size: 15px;
	cursor: pointer;
	transition: color 0.15s, opacity 0.2s;
}
.momc-radio-label:hover,
.momc-checkbox-label:hover {
	color: #b51132;
}

/* Disabled options (not available in selected category) */
.momc-opt-disabled {
	display: none;
	opacity: 0.35;
	pointer-events: none;
	text-decoration: line-through;
}

/* Quantity inputs — hidden until option is selected */
.momc-qty-wrap {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #eee;
	display: none;
}
.momc-qty-wrap.is-visible {
	display: block;
}
.momc-qty-label {
	font-size: 14px;
	font-weight: 600;
}
.momc-qty-input {
	width: 65px;
	padding: 6px 8px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	text-align: center;
}
.momc-qty-inline {
	width: 55px;
	padding: 4px 6px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 13px;
	text-align: center;
	margin-top: 4px;
	display: none;
}
.momc-qty-inline.is-visible {
	display: block;
}

/* ---------------------------------------------------------------
   Price Bar
   --------------------------------------------------------------- */
.momc-price-bar {
	background: #575757;
	color: #fff;
	padding: 14px 22px;
	position: sticky;
	bottom: 50px;
	z-index: 999;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	float: right;
	clear: both;
	margin-top: 20px;
}

@media screen and (min-width: 1440px) {
	.momc-price-bar {
		margin-right: -50px;
	}
}

@media screen and (min-width: 1920px) {
	.momc-price-bar {
		margin-right: -150px;
	}
}
.momc-remaining {
	display: block;
	font-size: 11px;
	opacity: 0.8;
	border-top: 1px solid rgba(255,255,255,0.3);
	padding-top: 6px;
	margin-top: 6px;
}
.momc-price-label {
	font-size: 12px;
	opacity: 0.85;
	display: block;
}
.momc-price-value {
	font-size: 22px;
	font-weight: 700;
}

/* ---------------------------------------------------------------
   Quote Form
   --------------------------------------------------------------- */
.momc-quote-section {
	max-width: 900px;
	margin: 50px auto 0 auto;
	padding: 40px;
	border: 1px solid #eee;
	border-radius: 20px;
}
.momc-quote-section h3 {
	margin-bottom: 25px;
}
.momc-form-row {
	margin-bottom: 15px;
}
.momc-quote-form input[type="text"],
.momc-quote-form input[type="email"] {
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-bottom: 1px solid #ccc;
	font-size: 15px;
	font-family: inherit;
	background: transparent;
	outline: none;
	transition: border-color 0.2s;
}
.momc-quote-form input[type="text"]:focus,
.momc-quote-form input[type="email"]:focus {
	border-bottom-color: #b51132;
}

/* reCAPTCHA */
.momc-recaptcha-row {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.momc-form-actions {
	margin-top: 20px;
	text-align: center;
}
.momc-submit-btn {
	background: #b51132;
	color: #fff;
	border: 2px solid #b51132;
	padding: 15px 50px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.3s;
}
.momc-submit-btn:hover {
	background: #fff;
	color: #b51132;
}
.momc-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Messages */
.momc-success {
	color: #198754;
	padding: 12px 15px;
	border: 1px solid #198754;
	border-radius: 8px;
	margin-top: 15px;
}
.momc-error {
	color: #b51132;
	padding: 12px 15px;
	border: 1px solid #b51132;
	border-radius: 8px;
	margin-top: 15px;
}

/* Placeholders */
.momc-placeholder {
	color: #999;
	text-align: center;
	padding: 40px 20px;
	font-size: 15px;
}

/* ---------------------------------------------------------------
   Responsive
   --------------------------------------------------------------- */
@media (max-width: 1279.98px) {
	.momc-cat-tab {
		flex-direction: row;
		justify-content: center;
		padding: 15px 20px;
		min-width: auto;
	}
	.momc-cat-icon {
		width: 32px;
		height: 32px;
	}
	.momc-price-bar {
		float: none;
		bottom: 0;
		border-radius: 0;
		justify-content: center;
		gap: 5px;
		margin: 20px -15px 0;
		width: calc(100% + 30px);
	}
	.momc-equip-body {
		flex-direction: column;
	}
	.momc-equip-thumb {
		flex: 0 0 auto;
	}
	.momc-quote-section {
		padding: 25px 20px;
	}
}

@media (max-width: 767.98px) {
	.momc-category-tabs {
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 579.98px) {
	.momc-cat-tab {
		padding: 10px 10px;
	}
	.momc-cat-tab span {
		text-align: left;
	}
}
