/*
Theme Name: Studiowp Factory
Theme URI: https://studiowp.com.br/
Description: A multi-brand WordPress FSE theme for creating custom landing pages with reusable blocks and brand-specific style variations. Supports Leoplan, Escola, Leomob, Leozinha, and additional brands.
Version: 1.0.2
Author: Emerson Gonçalves
Author URI: https://emersongoncalves.dev.br/
Tags: block-patterns, block-styles, custom-colors, custom-menu, editor-style, full-site-editing, one-column, rtl-language-support, template-editing, threaded-comments, translation-ready, wide-blocks
Text Domain: studiowp-factory
Requires at least: 6.3
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2.0 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Studiowp Factory is a flexible FSE theme designed for marketing and sales teams.
It features multiple brand variations, custom blocks for landing pages, and a complete
design system with consistent colors, typography, and spacing.
*/

/**
 * Button Block - Chevron Right Style
 * Creates a minimal button style with label and animated chevron icon.
 */
.wp-block-button.is-style-chevron-right .wp-block-button__link,
.wp-block-button.is-style-chevron-right > a {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.5rem !important;
	padding: 0.5rem 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	font-weight: 600 !important;
	transition: all 0.3s ease !important;
	text-decoration: none !important;
}

.wp-block-button.is-style-chevron-right .wp-block-button__link:hover,
.wp-block-button.is-style-chevron-right > a:hover {
	background: transparent !important;
	border: none !important;
	transform: none !important;
}

/* Chevron icon after text */
.wp-block-button.is-style-chevron-right .wp-block-button__link::after,
.wp-block-button.is-style-chevron-right > a::after {
	content: "" !important;
	display: inline-block !important;
	width: 24px !important;
	height: 24px !important;
	background-color: currentColor !important;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") !important;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") !important;
	-webkit-mask-repeat: no-repeat !important;
	mask-repeat: no-repeat !important;
	-webkit-mask-position: center !important;
	mask-position: center !important;
	-webkit-mask-size: contain !important;
	mask-size: contain !important;
	transition: transform 0.3s ease !important;
	flex-shrink: 0 !important;
	margin-left: 0.25rem !important;
}

/* Hover effect: move chevron to the right */
.wp-block-button.is-style-chevron-right .wp-block-button__link:hover::after,
.wp-block-button.is-style-chevron-right > a:hover::after {
	transform: translateX(4px) !important;
}
