/* ========================================
   Smartlink Section - Modern Premium Design
   ======================================== */

.section--smartlink {
	padding: var(--spacing-md) var(--spacing-lg);
	margin: var(--spacing-lg) auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
	text-align: center;
	max-width: 100%;
	background: linear-gradient(135deg, rgba(234, 18, 23, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	border: 2px solid rgba(234, 18, 23, 0.2);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(234, 18, 23, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	position: relative;
	overflow: hidden;
}

.section--smartlink::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
	z-index: 0;
}

.section--smartlink:hover {
	border-color: rgba(234, 18, 23, 0.4);
	box-shadow: 0 12px 40px rgba(234, 18, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-4px);
	background: linear-gradient(135deg, rgba(234, 18, 23, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
}

.section--smartlink:hover::before {
	left: 100%;
}

.section--smartlink .smartlink-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-sm);
	width: 100%;
}

.section--smartlink .smartlink-title {
	font-size: clamp(16px, 4vw, 20px);
	font-weight: 700;
	color: var(--color-text-primary);
	margin: 0;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section--smartlink .smartlink-subtitle {
	font-size: clamp(13px, 1.5vw, 14px);
	color: var(--color-text-secondary);
	margin: 0;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.section--smartlink .mmp-smartlink-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
	padding: 8px var(--spacing-lg);
	min-height: 36px;
	background: linear-gradient(135deg, #ea1217 0%, #b30d0f 100%);
	color: #fff;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 50px;
	font-size: clamp(14px, 1.8vw, 16px);
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
	box-shadow: 0 4px 16px rgba(234, 18, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
	white-space: nowrap;
}

.section--smartlink .mmp-smartlink-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.section--smartlink .mmp-smartlink-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 24px rgba(234, 18, 23, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.2);
	background: linear-gradient(135deg, #ff5555 0%, #ea1217 100%);
}

.section--smartlink .mmp-smartlink-btn:hover::before {
	left: 100%;
}

.section--smartlink .mmp-smartlink-btn:active {
	transform: translateY(-1px) scale(0.98);
}

/* Icon support for smartlink button */
.section--smartlink .mmp-smartlink-btn::after {
	content: '→';
	font-size: var(--font-size-h4);
	transition: transform 0.3s ease;
	margin-left: 4px;
}

.section--smartlink .mmp-smartlink-btn:hover::after {
	transform: translateX(4px);
}

/* Responsive Smartlink */
@media (max-width: 768px) {
	.section--smartlink {
		padding: var(--spacing-md) var(--spacing-md);
		margin: var(--spacing-lg) auto;
		max-width: 100%;
	}

	.section--smartlink .smartlink-title {
		font-size: 18px;
	}

	.section--smartlink .mmp-smartlink-btn {
		min-height: 44px;
		padding: var(--spacing-sm) var(--spacing-lg);
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.section--smartlink {
		padding: var(--spacing-md) var(--spacing-sm);
		gap: var(--spacing-sm);
	}

	.section--smartlink .smartlink-title {
		font-size: 16px;
	}

	.section--smartlink .smartlink-subtitle {
		font-size: 12px;
	}

	.section--smartlink .mmp-smartlink-btn {
		padding: 10px 16px;
		font-size: 13px;
		min-height: 36px;
	}
}
