/**
 * Calculator Style Variations
 */

/* Style 1: Modern Blue */
.va7-calculator-wrapper.va7-style-modern-blue {
	--va7-primary: #2271b1;
	--va7-primary-hover: #135e96;
	--va7-bg: #ffffff;
	--va7-bg-light: #f0f6fc;
	--va7-border: #c3d4e6;
	--va7-text: #1d2327;
	--va7-text-muted: #646970;
	--va7-shadow: 0 4px 12px rgba(34, 113, 177, 0.15);
	--va7-shadow-lg: 0 8px 24px rgba(34, 113, 177, 0.2);
}

.va7-style-modern-blue .va7-calculator-header {
	background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
}

.va7-style-modern-blue .va7-service-item:hover {
	border-color: #2271b1;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.2);
}

.va7-style-modern-blue .va7-summary-card {
	border-color: #2271b1;
	background: linear-gradient(135deg, #f0f6fc 0%, #ffffff 100%);
}

/* Style 2: Bold Red */
.va7-calculator-wrapper.va7-style-bold-red {
	--va7-primary: #d63638;
	--va7-primary-hover: #b32d2e;
	--va7-bg: #ffffff;
	--va7-bg-light: #fff5f5;
	--va7-border: #f5c2c7;
	--va7-text: #1d2327;
	--va7-text-muted: #646970;
	--va7-shadow: 0 4px 12px rgba(214, 54, 56, 0.15);
	--va7-shadow-lg: 0 8px 24px rgba(214, 54, 56, 0.2);
}

.va7-style-bold-red .va7-calculator-header {
	background: linear-gradient(135deg, #d63638 0%, #b32d2e 100%);
	box-shadow: 0 4px 12px rgba(214, 54, 56, 0.3);
}

.va7-style-bold-red .va7-service-item {
	border-width: 2px;
	border-radius: 12px;
}

.va7-style-bold-red .va7-service-item:hover {
	border-color: #d63638;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(214, 54, 56, 0.25);
}

.va7-style-bold-red .va7-service-item.va7-selected {
	border-color: #d63638;
	background: #fff5f5;
	box-shadow: 0 0 0 4px rgba(214, 54, 56, 0.1);
}

.va7-style-bold-red .va7-summary-card {
	border-width: 3px;
	border-color: #d63638;
	background: #fff5f5;
	box-shadow: 0 4px 16px rgba(214, 54, 56, 0.2);
}

.va7-style-bold-red .va7-service-name {
	font-weight: 700;
	font-size: 17px;
}

.va7-style-bold-red .va7-summary-title {
	font-size: 22px;
	font-weight: 700;
}

/* Style 3: Green Nature */
.va7-calculator-wrapper.va7-style-green-nature {
	--va7-primary: #00a32a;
	--va7-primary-hover: #007a20;
	--va7-bg: #ffffff;
	--va7-bg-light: #f0f9f2;
	--va7-border: #c3e6cb;
	--va7-text: #1d2327;
	--va7-text-muted: #646970;
	--va7-shadow: 0 4px 12px rgba(0, 163, 42, 0.15);
	--va7-shadow-lg: 0 8px 24px rgba(0, 163, 42, 0.2);
}

.va7-style-green-nature .va7-calculator-header {
	background: linear-gradient(135deg, #00a32a 0%, #007a20 100%);
}

.va7-style-green-nature .va7-service-item {
	border-radius: 16px;
	background: #ffffff;
	overflow: hidden;
	position: relative;
}

.va7-style-green-nature .va7-service-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #00a32a;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.va7-style-green-nature .va7-service-item:hover::before,
.va7-style-green-nature .va7-service-item.va7-selected::before {
	opacity: 1;
}

.va7-style-green-nature .va7-service-item.va7-selected {
	background: #f0f9f2;
	border-color: #00a32a;
}

.va7-style-green-nature .va7-summary-card {
	border-color: #00a32a;
	background: linear-gradient(135deg, #f0f9f2 0%, #ffffff 100%);
	border-radius: 16px;
}

.va7-style-green-nature .va7-category-title {
	border-bottom-color: #00a32a;
}

/* Style 4: Purple Elegant */
.va7-calculator-wrapper.va7-style-purple-elegant {
	--va7-primary: #7b1fa2;
	--va7-primary-hover: #6a1b9a;
	--va7-bg: #ffffff;
	--va7-bg-light: #f3e5f5;
	--va7-border: #e1bee7;
	--va7-text: #1d2327;
	--va7-text-muted: #646970;
	--va7-shadow: 0 4px 12px rgba(123, 31, 162, 0.15);
	--va7-shadow-lg: 0 8px 24px rgba(123, 31, 162, 0.2);
}

.va7-style-purple-elegant .va7-calculator-header {
	background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
	position: relative;
	overflow: hidden;
}

.va7-style-purple-elegant .va7-calculator-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.1); opacity: 0.8; }
}

.va7-style-purple-elegant .va7-service-item {
	border-radius: 12px;
	background: #ffffff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.va7-style-purple-elegant .va7-service-item:hover {
	border-color: #7b1fa2;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(123, 31, 162, 0.25);
}

.va7-style-purple-elegant .va7-service-item.va7-selected {
	background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
	border-color: #7b1fa2;
	box-shadow: 0 4px 16px rgba(123, 31, 162, 0.2);
}

.va7-style-purple-elegant .va7-summary-card {
	border-color: #7b1fa2;
	background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
	box-shadow: 0 6px 24px rgba(123, 31, 162, 0.2);
}

.va7-style-purple-elegant .va7-service-price {
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Style 5: Orange Energy */
.va7-calculator-wrapper.va7-style-orange-energy {
	--va7-primary: #f57c00;
	--va7-primary-hover: #e65100;
	--va7-bg: #ffffff;
	--va7-bg-light: #fff3e0;
	--va7-border: #ffcc80;
	--va7-text: #1d2327;
	--va7-text-muted: #646970;
	--va7-shadow: 0 4px 12px rgba(245, 124, 0, 0.15);
	--va7-shadow-lg: 0 8px 24px rgba(245, 124, 0, 0.2);
}

.va7-style-orange-energy .va7-calculator-header {
	background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
	box-shadow: 0 6px 20px rgba(245, 124, 0, 0.3);
}

.va7-style-orange-energy .va7-service-item {
	border-radius: 8px;
	border-width: 2px;
	background: #ffffff;
	transition: all 0.2s ease;
}

.va7-style-orange-energy .va7-service-item:hover {
	border-color: #f57c00;
	background: #fff3e0;
	transform: scale(1.02);
	box-shadow: 0 4px 16px rgba(245, 124, 0, 0.25);
}

.va7-style-orange-energy .va7-service-item.va7-selected {
	border-color: #f57c00;
	background: #fff3e0;
	box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.2);
}

.va7-style-orange-energy .va7-summary-card {
	border-width: 3px;
	border-color: #f57c00;
	background: #fff3e0;
	box-shadow: 0 6px 20px rgba(245, 124, 0, 0.25);
}

.va7-style-orange-energy .va7-service-name {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 15px;
}

.va7-style-orange-energy .va7-summary-title {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
}

.va7-style-orange-energy .va7-category-title {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	border-bottom-width: 3px;
}

/* Admin Styles Page */
.va7-styles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 32px;
	margin-top: 24px;
}

.va7-style-card {
	background: var(--va7-bg);
	border: 2px solid var(--va7-border);
	border-radius: var(--va7-radius-lg);
	overflow: hidden;
	box-shadow: var(--va7-shadow);
	transition: all 0.3s ease-in-out;
}

.va7-style-card:hover {
	box-shadow: var(--va7-shadow-lg);
	transform: translateY(-4px);
}

.va7-style-preview {
	min-height: 300px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.va7-style-preview-content {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 20px;
	width: 100%;
	max-width: 350px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.va7-preview-header {
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.va7-preview-header h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--va7-text);
}

.va7-preview-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

.va7-preview-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: var(--va7-bg-light);
	border-radius: 8px;
}

.va7-preview-checkbox {
	width: 18px;
	height: 18px;
	border: 2px solid var(--va7-border);
	border-radius: 4px;
	background: var(--va7-bg);
	flex-shrink: 0;
}

.va7-preview-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.va7-preview-line {
	height: 8px;
	background: var(--va7-border);
	border-radius: 4px;
}

.va7-preview-line-1 {
	width: 80%;
}

.va7-preview-line-2 {
	width: 60%;
}

.va7-preview-price {
	width: 60px;
	height: 20px;
	background: var(--va7-primary);
	border-radius: 4px;
	flex-shrink: 0;
}

.va7-preview-summary {
	padding-top: 16px;
	border-top: 2px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.va7-preview-summary-line {
	height: 10px;
	background: var(--va7-border);
	border-radius: 4px;
}

.va7-preview-summary-line.va7-preview-summary-total {
	width: 70%;
	height: 14px;
	background: var(--va7-primary);
	align-self: flex-end;
}

.va7-style-info {
	padding: 24px;
	background: var(--va7-bg);
}

.va7-style-name {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 600;
	color: var(--va7-text);
}

.va7-style-description {
	margin: 0 0 20px;
	color: var(--va7-text-muted);
	font-size: 14px;
	line-height: 1.6;
}

.va7-style-shortcode label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 13px;
	color: var(--va7-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.va7-intro-text {
	margin: 0 0 24px;
	color: var(--va7-text-muted);
	font-size: 15px;
	line-height: 1.7;
}

@media (max-width: 1200px) {
	.va7-styles-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.va7-style-preview {
		min-height: 250px;
		padding: 16px;
	}

	.va7-style-preview-content {
		padding: 16px;
	}

	.va7-style-info {
		padding: 20px;
	}
}

