/**
 * MyCreaTools - Header Quick Actions Widget Styles
 */

.mct-quick-actions-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}

.mct-quick-actions-wrapper * {
	box-sizing: border-box;
}

.mct-qa-item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #0f172a;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 8px;
}

.mct-qa-item:hover,
.mct-qa-item:focus {
	text-decoration: none;
	outline: none;
}

.mct-qa-icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #0f172a;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.mct-qa-item:hover .mct-qa-icon-wrap {
	transform: translateY(-2px);
	color: #e50914;
}

.mct-qa-icon-wrap svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mct-qa-icon-wrap i.dashicons,
.mct-qa-icon-wrap i.fa,
.mct-qa-icon-wrap i.fas,
.mct-qa-icon-wrap i.far {
	font-size: 24px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	color: currentColor;
}

.mct-qa-icon-wrap img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Badge Indicator */
.mct-qa-badge {
	position: absolute;
	top: -4px;
	right: -8px;
	background-color: #e50914;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(229, 9, 20, 0.3);
	z-index: 2;
}

.mct-qa-badge.is-dot {
	min-width: 10px;
	width: 10px;
	height: 10px;
	padding: 0;
	top: -2px;
	right: -4px;
}

/* Item Label */
.mct-qa-label {
	font-size: 13px;
	font-weight: 500;
	color: #0f172a;
	margin-top: 4px;
	white-space: nowrap;
	transition: color 0.2s ease;
	text-align: center;
}

.mct-qa-item:hover .mct-qa-label {
	color: #e50914;
}

/* Alignment Variations */
.mct-quick-actions-wrapper.align-center {
	justify-content: center;
}

.mct-quick-actions-wrapper.align-right,
.mct-quick-actions-wrapper.align-flex-end {
	justify-content: flex-end;
}

.mct-quick-actions-wrapper.align-space-between {
	justify-content: space-between;
}

.mct-quick-actions-wrapper.align-space-around {
	justify-content: space-around;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.mct-quick-actions-wrapper {
		gap: 16px;
	}

	.mct-qa-icon-wrap {
		width: 28px;
		height: 28px;
	}

	.mct-qa-label {
		font-size: 12px;
	}
}
