/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
body:not(.elementor-editor-active) .my-header {
    background-color: transparent !important;
}
a, span.accent { color: #ff9900; }

/* Universal Gallery Slider Styling */
.universal-gallery-wrapper {
	max-width: 700px;
	margin: 0 auto;
}

/* Main (featured) image styling */
.universal-gallery-wrapper .swiper-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 0px;
	display: block;
}

/* Thumbnail wrapper styling */
.universal-gallery-wrapper [class*="thumbs-swiper-"] {
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
}

/* Swiper wrapper cleanup */
.universal-gallery-wrapper [class*="thumbs-swiper-"] .swiper-wrapper {
	display: flex;
	justify-content: left;
	gap: 4px; /* reduced gap */
	height: auto !important;
}

/* Each thumbnail */
.universal-gallery-wrapper [class*="thumbs-swiper-"] .swiper-slide {
	width: 77px !important;
	height: 74px !important;
	flex-shrink: 0;
	opacity: 0.7;
	transition: opacity 0.3s ease, border-color 0.3s ease;
	border-radius: 0px;
	overflow: hidden;
	cursor: pointer;
}

/* Active thumbnail */
.universal-gallery-wrapper [class*="thumbs-swiper-"] .swiper-slide-thumb-active {
	border: 2px solid #ff9900;
	opacity: 1;
}

/* Thumbnail images */
.universal-gallery-wrapper [class*="thumbs-swiper-"] .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0px;
	display: block;
}

