/* MT Budget Tracker - Frontend CSS - FULLY RESPONSIVE */

* {
	box-sizing: border-box;
}

.mt-budget-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
	background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
	min-height: 100vh;
}

/* ===== NAVIGATION ===== */
.mt-budget-nav {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
	border-bottom: none;
	padding-bottom: 0;
	flex-wrap: wrap;
}

.mt-budget-nav-item {
	padding: 12px 24px;
	background: #fff;
	border: 2px solid #e8e8e8;
	border-radius: 10px;
	text-decoration: none;
	color: #7A6A5A;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 600;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.mt-budget-nav-item:hover {
	background: #f9f9f9;
	border-color: #B8976A;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(184, 151, 106, 0.15);
}

.mt-budget-nav-item.active {
	background: linear-gradient(135deg, #5C3D2E 0%, #4a2f22 100%);
	color: #fff;
	border-color: #5C3D2E;
	box-shadow: 0 8px 20px rgba(92, 61, 46, 0.2);
}

/* ===== CONTENT ===== */
.mt-budget-content {
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mt-budget-content h1 {
	font-size: 32px;
	color: #3B2E22;
	margin: 0 0 30px 0;
	font-weight: 700;
	letter-spacing: -0.5px;
}

/* ===== KPI CARDS (Dashboard) ===== */
.mt-budget-kpis {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.kpi-card {
	background: linear-gradient(135deg, #F9F4EE 0%, #F9F5F0 100%);
	padding: 28px;
	border-radius: 12px;
	border: 1px solid #E8DFD3;
	transition: all 0.3s ease;
	border-left: 4px solid #B8976A;
	box-shadow: 0 2px 8px rgba(184, 151, 106, 0.08);
}

.kpi-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(184, 151, 106, 0.15);
	background: linear-gradient(135deg, #fff9f5 0%, #fffbf8 100%);
}

.kpi-label {
	font-size: 12px;
	color: #7A6A5A;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 12px;
}

.kpi-value {
	font-size: 32px;
	font-weight: 700;
	color: #5C3D2E;
	margin-bottom: 8px;
}

.kpi-subtitle {
	font-size: 16px;
	color: #B8976A;
	font-weight: 600;
}

.mt-budget-alerts {
	margin-bottom: 30px;
}

.mt-budget-alert {
	padding: 16px 20px;
	border-radius: 8px;
	border-left: 4px solid #0073aa;
	background: #e3f2fd;
	color: #003d66;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.6;
}

/* ===== PROJECTIONS / SIMULATOR ===== */

.projections-hero {
	text-align: center;
	margin-bottom: 50px;
	padding: 50px 30px;
	background: linear-gradient(135deg, #5C3D2E 0%, #4a2f22 100%);
	border-radius: 16px;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.projections-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: rgba(184, 151, 106, 0.1);
	border-radius: 50%;
	z-index: 0;
}

.projections-hero > * {
	position: relative;
	z-index: 1;
}

.projections-hero h1 {
	font-size: 40px;
	color: #fff;
	margin: 0 0 15px 0;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.projections-subtitle {
	font-size: 18px;
	color: rgba(255,255,255,0.85);
	margin: 0;
	font-weight: 400;
}

.simulator-info {
	background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
	padding: 32px;
	border-radius: 16px;
	border: 1px solid #b3d9e8;
	border-left: 4px solid #0073aa;
	margin-bottom: 50px;
	box-shadow: 0 4px 16px rgba(0, 115, 170, 0.08);
}

.simulator-info h3 {
	color: #003d66;
	margin: 0 0 25px 0;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.products-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.product-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	padding: 16px 20px;
	border-radius: 12px;
	border: 1px solid #ddd;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.product-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-item.fixed-costs {
	background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
	border: 1px solid #ffe8b3;
}

.product-type {
	font-size: 20px;
	min-width: 28px;
}

.product-name {
	color: #333;
	font-weight: 600;
	flex: 1;
}

.product-price {
	color: #5C3D2E;
	font-weight: 700;
	font-size: 15px;
	white-space: nowrap;
}

/* ===== SIMULATOR GRID ===== */
.mt-budget-projections-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 28px;
	margin-bottom: 50px;
}

.projection-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	border-top: 5px solid #FFC85C;
	position: relative;
}

.projection-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 200, 92, 0.02) 100%);
	pointer-events: none;
}

.projection-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(92, 61, 46, 0.12);
}

.projection-header {
	padding: 28px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	background: linear-gradient(135deg, #ffc85c10 0%, #ffc85c05 100%);
	border-bottom: 1px solid #ffc85c20;
	position: relative;
	z-index: 1;
}

.projection-icon {
	font-size: 40px;
	line-height: 1;
	animation: float 3s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-8px); }
}

.projection-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #3B2E22;
}

/* ===== BASKET COMPOSITION ===== */

.panier-composition {
	padding: 20px 24px;
	background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
	border-bottom: 1px solid #eee;
	min-height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.basket-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	flex-wrap: wrap;
}

.item-icon {
	font-size: 16px;
	line-height: 1;
}

.item-label {
	color: #555;
	font-weight: 500;
}

.basket-item .item-icon:nth-child(n+2) {
	margin-left: -4px;
}

.panier-info {
	padding: 20px 24px;
	background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
	border-bottom: 1px solid #eee;
	position: relative;
	z-index: 1;
}

.panier-info p {
	margin: 0;
	font-size: 14px;
	color: #555;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.panier-price {
	color: #5C3D2E;
	font-weight: 700;
	font-size: 18px;
}

.simulator-input {
	padding: 24px;
	position: relative;
	z-index: 1;
}

.simulator-input label {
	display: block;
	font-size: 12px;
	color: #7A6A5A;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.simulator-input input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #E8DFD3;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	color: #5C3D2E;
	box-sizing: border-box;
	transition: all 0.3s ease;
	background: #fafafa;
}

.simulator-input input:focus {
	outline: none;
	border-color: #B8976A;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(184, 151, 106, 0.1);
}

.projection-results {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
	position: relative;
	z-index: 1;
}

.result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	background: #f9f9f9;
	border-radius: 10px;
	font-size: 14px;
	border: 1px solid #f0f0f0;
	transition: all 0.2s ease;
}

.result-item:hover {
	background: #fff;
	border-color: #E8DFD3;
}

.result-item.highlight {
	background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
	border: 2px solid #c8e6c9;
	padding: 16px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(40, 167, 69, 0.08);
}

.result-item.objective {
	background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
	border: 2px solid #b3e5fc;
	padding: 16px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(0, 115, 170, 0.08);
}

.result-label {
	color: #7A6A5A;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.result-value {
	font-weight: 700;
	color: #5C3D2E;
	font-size: 16px;
}

.result-item.highlight .result-value {
	color: #28a745;
	font-size: 18px;
}

.result-item.objective .result-value {
	font-size: 16px;
}

/* ===== INSIGHT SECTION ===== */
.projections-insight {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 2px solid #E8DFD3;
}

.insight-card {
	background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
	border: 2px solid #ffe8b3;
	border-radius: 16px;
	padding: 32px;
	border-left: 4px solid #B8976A;
	box-shadow: 0 4px 16px rgba(184, 151, 106, 0.08);
	transition: all 0.3s ease;
}

.insight-card:hover {
	box-shadow: 0 8px 24px rgba(184, 151, 106, 0.12);
	transform: translateY(-2px);
}

.insight-card h3 {
	color: #8B6914;
	margin: 0 0 16px 0;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
}

.insight-card p {
	color: #555;
	margin: 0;
	line-height: 1.8;
	font-size: 15px;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
	.mt-budget-wrapper {
		padding: 16px;
	}

	.mt-budget-content {
		padding: 30px;
		border-radius: 14px;
	}

	.projections-hero {
		padding: 40px 25px;
		margin-bottom: 40px;
		border-radius: 14px;
	}

	.projections-hero h1 {
		font-size: 32px;
	}

	.projections-hero::before {
		width: 300px;
		height: 300px;
	}

	.mt-budget-projections-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 20px;
		margin-bottom: 40px;
	}

	.projection-header {
		padding: 24px 20px;
	}

	.projection-icon {
		font-size: 36px;
	}

	.projection-header h3 {
		font-size: 18px;
	}

	.simulator-info {
		padding: 25px;
	}

	.products-list {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 14px;
	}

	.result-item {
		padding: 12px 14px;
		font-size: 13px;
	}

	.result-value {
		font-size: 15px;
	}
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
	.mt-budget-wrapper {
		padding: 10px;
		min-height: auto;
	}

	.mt-budget-nav {
		gap: 8px;
		margin-bottom: 30px;
	}

	.mt-budget-nav-item {
		padding: 10px 16px;
		font-size: 12px;
		border-radius: 8px;
		gap: 6px;
	}

	.mt-budget-content {
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	}

	.mt-budget-content h1 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.mt-budget-kpis {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 20px;
	}

	.kpi-card {
		padding: 20px;
		border-radius: 10px;
	}

	.kpi-value {
		font-size: 26px;
	}

	.kpi-label {
		font-size: 11px;
		margin-bottom: 10px;
	}

	.projections-hero {
		padding: 30px 20px;
		margin-bottom: 30px;
		border-radius: 12px;
	}

	.projections-hero h1 {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.projections-subtitle {
		font-size: 14px;
	}

	.projections-hero::before {
		width: 250px;
		height: 250px;
		right: -5%;
	}

	.simulator-info {
		padding: 20px;
		border-radius: 12px;
		margin-bottom: 30px;
	}

	.simulator-info h3 {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.products-list {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.product-item {
		padding: 12px 16px;
		font-size: 13px;
		gap: 12px;
	}

	.product-type {
		font-size: 18px;
		min-width: 24px;
	}

	.product-name {
		font-size: 13px;
	}

	.product-price {
		font-size: 13px;
	}

	.mt-budget-projections-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 30px;
	}

	.projection-card {
		border-radius: 12px;
		border-top: 4px solid #FFC85C;
	}

	.projection-header {
		padding: 20px;
		gap: 12px;
	}

	.projection-icon {
		font-size: 32px;
	}

	.projection-header h3 {
		font-size: 16px;
		margin: 0;
	}

	.panier-composition {
		padding: 16px 20px;
		gap: 10px;
		min-height: 70px;
	}

	.basket-item {
		font-size: 13px;
		gap: 6px;
	}

	.item-icon {
		font-size: 14px;
	}

	.panier-info {
		padding: 16px 20px;
	}

	.panier-info p {
		font-size: 13px;
	}

	.panier-price {
		font-size: 16px;
	}

	.simulator-input {
		padding: 20px;
	}

	.simulator-input label {
		font-size: 11px;
		margin-bottom: 10px;
	}

	.simulator-input input {
		padding: 12px 14px;
		font-size: 16px;
		border-radius: 8px;
	}

	.projection-results {
		padding: 20px;
		gap: 12px;
	}

	.result-item {
		padding: 12px 14px;
		font-size: 12px;
		border-radius: 8px;
		gap: 8px;
		flex-direction: column;
		align-items: flex-start;
	}

	.result-label {
		font-size: 11px;
		width: 100%;
	}

	.result-value {
		font-size: 14px;
		width: 100%;
		text-align: right;
	}

	.result-item.highlight,
	.result-item.objective {
		padding: 14px;
	}

	.result-item.highlight .result-value {
		font-size: 16px;
	}

	.projections-insight {
		margin-top: 30px;
		padding-top: 30px;
	}

	.insight-card {
		padding: 20px;
		border-radius: 12px;
		margin: 0;
	}

	.insight-card h3 {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.insight-card p {
		font-size: 13px;
		line-height: 1.6;
	}
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
	.mt-budget-wrapper {
		padding: 8px;
	}

	.mt-budget-nav {
		gap: 6px;
		margin-bottom: 20px;
	}

	.mt-budget-nav-item {
		padding: 8px 12px;
		font-size: 11px;
		border-radius: 6px;
	}

	.mt-budget-content {
		padding: 16px;
		border-radius: 10px;
	}

	.mt-budget-content h1 {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.projections-hero h1 {
		font-size: 18px;
		margin-bottom: 8px;
	}

	.projections-subtitle {
		font-size: 12px;
	}

	.simulator-info h3 {
		font-size: 14px;
	}

	.projection-icon {
		font-size: 28px;
	}

	.projection-header h3 {
		font-size: 14px;
	}

	.panier-composition {
		padding: 12px 16px;
	}

	.basket-item {
		font-size: 12px;
	}

	.result-item {
		padding: 10px 12px;
		font-size: 11px;
	}

	.result-value {
		font-size: 13px;
	}

	.kpi-value {
		font-size: 22px;
	}

	.projections-hero::before {
		width: 200px;
		height: 200px;
	}
}

/* ===== PRICING CALCULATOR ===== */

.pricing-hero {
	text-align: center;
	margin-bottom: 50px;
	padding: 50px 30px;
	background: linear-gradient(135deg, #5C3D2E 0%, #4a2f22 100%);
	border-radius: 16px;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.pricing-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: rgba(184, 151, 106, 0.1);
	border-radius: 50%;
	z-index: 0;
}

.pricing-hero > * {
	position: relative;
	z-index: 1;
}

.pricing-hero h1 {
	font-size: 40px;
	color: #fff;
	margin: 0 0 15px 0;
	font-weight: 700;
}

.pricing-subtitle {
	font-size: 18px;
	color: rgba(255,255,255,0.85);
	margin: 0;
}

.pricing-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 50px;
}

.pricing-left,
.pricing-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pricing-left h2,
.pricing-right h2 {
	font-size: 24px;
	color: #3B2E22;
	margin: 0;
	font-weight: 700;
}

.products-pricing-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.product-pricing-card {
	background: linear-gradient(135deg, #f9f4ee 0%, #f5f3f0 100%);
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #E8DFD3;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-pricing-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-pricing-card h3 {
	margin: 0 0 12px 0;
	font-size: 16px;
	color: #5C3D2E;
	font-weight: 600;
}

.cost-info p {
	margin: 8px 0;
	font-size: 13px;
	color: #555;
}

.price-suggestions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 12px;
}

.suggestion {
	background: #fff;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid #ddd;
	text-align: center;
	transition: all 0.2s ease;
}

.suggestion:hover {
	background: #fffbf8;
	border-color: #B8976A;
}

.margin-label {
	display: block;
	font-size: 11px;
	color: #7A6A5A;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.price-value {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #28a745;
}

.calculator-card {
	background: #fff;
	border: 1px solid #E8DFD3;
	border-radius: 12px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.pricing-calculator {
	padding: 0;
}

.calc-section {
	padding: 24px;
	border-bottom: 1px solid #E8DFD3;
}

.calc-section:last-child {
	border-bottom: none;
}

.calc-section h3 {
	margin: 0 0 20px 0;
	font-size: 16px;
	color: #3B2E22;
	font-weight: 700;
}

.calc-field {
	margin-bottom: 16px;
}

.calc-field:last-child {
	margin-bottom: 0;
}

.calc-field label {
	display: block;
	font-size: 13px;
	color: #7A6A5A;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.calc-input {
	width: 100%;
	padding: 12px;
	border: 2px solid #E8DFD3;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #5C3D2E;
	transition: all 0.3s ease;
}

.calc-input:focus {
	outline: none;
	border-color: #B8976A;
	background: #fffbf8;
	box-shadow: 0 0 0 4px rgba(184, 151, 106, 0.1);
}

.calc-result {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
	border: 2px solid #c8e6c9;
	border-radius: 8px;
	margin-top: 16px;
	font-weight: 600;
}

.calc-result span {
	font-size: 20px;
	color: #28a745;
}

.margin-selector {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.margin-option {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	color: #555;
	font-weight: 500;
}

.margin-option input {
	cursor: pointer;
}

.calc-section.results {
	background: linear-gradient(135deg, #f9f4ee 0%, #f5f3f0 100%);
	border-top: 2px solid #B8976A;
}

.result-breakdown {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.breakdown-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #E8DFD3;
	font-size: 14px;
	font-weight: 600;
	color: #555;
}

.breakdown-row span:last-child {
	color: #5C3D2E;
	font-weight: 700;
}

.breakdown-row.highlight {
	background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
	border: 2px solid #c8e6c9;
	padding: 16px;
}

.price-rounding {
	padding-top: 24px;
	border-top: 1px solid #E8DFD3;
}

.price-rounding > label {
	display: block;
	font-size: 13px;
	color: #7A6A5A;
	font-weight: 600;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rounding-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}

.rounding-options label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 13px;
	color: #555;
	font-weight: 500;
	text-transform: none;
	letter-spacing: normal;
	margin-bottom: 0;
}

.rounding-options input {
	cursor: pointer;
}

.rounded-price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
	border: 2px solid #ffe8b3;
	border-radius: 8px;
	font-weight: 600;
}

.rounded-price strong {
	color: #8B6914;
}

/* ===== RESPONSIVE PRICING ===== */

@media (max-width: 1024px) {
	.pricing-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.pricing-left,
	.pricing-right {
		order: 1;
	}

	.pricing-right {
		order: 2;
	}

	.price-suggestions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.pricing-hero {
		padding: 30px 20px;
		margin-bottom: 30px;
	}

	.pricing-hero h1 {
		font-size: 24px;
	}

	.pricing-subtitle {
		font-size: 14px;
	}

	.pricing-left h2,
	.pricing-right h2 {
		font-size: 20px;
	}

	.product-pricing-card {
		padding: 16px;
	}

	.price-suggestions {
		gap: 8px;
	}

	.suggestion {
		padding: 10px;
	}

	.price-value {
		font-size: 16px;
	}

	.calc-section {
		padding: 20px;
	}

	.breakdown-row {
		padding: 12px 14px;
		font-size: 13px;
	}

	.rounding-options {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.pricing-hero h1 {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.pricing-container {
		gap: 20px;
	}

	.calc-section {
		padding: 16px;
	}

	.calc-section h3 {
		font-size: 14px;
		margin-bottom: 16px;
	}

	.calc-field label {
		font-size: 12px;
		margin-bottom: 6px;
	}

	.calc-input {
		padding: 10px;
		font-size: 14px;
	}

	.breakdown-row {
		padding: 10px 12px;
		font-size: 12px;
	}

	.price-value {
		font-size: 14px;
	}

	.margin-selector {
		flex-direction: column;
		gap: 12px;
	}
}


/* ===== SELECT STYLING ===== */

.calc-select {
	width: 100%;
	padding: 12px;
	border: 2px solid #E8DFD3;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #5C3D2E;
	background: #fafafa;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 8px;
}

.calc-select:hover {
	border-color: #B8976A;
	background: #fff;
}

.calc-select:focus {
	outline: none;
	border-color: #B8976A;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(184, 151, 106, 0.1);
}

.calc-select option {
	color: #333;
	background: #fff;
	padding: 8px;
}

.calc-select option:disabled {
	color: #999;
	background: #f5f5f5;
}

