/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor. Holds the global font, custom shortcodes, header/footer helpers and all custom CSS/JS.
Author: gbds
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Custom CSS goes below this line. */

/**
 * Language switcher ([gbds_lang_switcher]).
 * Same chip shape and palette as the TH/EN control inside the Design Criteria
 * app, so a visitor meets one switcher design across the whole site.
 */
.gbds-lang {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
}

.gbds-lang__item {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border: 1px solid #dcd7cf;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1;
	color: #2b2722;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}

.gbds-lang__item.is-current {
	background: #6f675c;
	border-color: #6f675c;
	color: #efece6;
}

.gbds-lang__item:hover,
.gbds-lang__item:focus-visible {
	background: #3b362f;
	border-color: #3b362f;
	color: #f5f1e7;
}
