/*
Theme Name: Alukas Child
Theme URI: https://alukas.presslayouts.com/
Author: PressLayouts
Description: This is a child theme for Alukas
Version: 1.1
Author URI: https://www.presslayouts.com/
Template: alukas
Text Domain: pls-theme-child
*/

/*
 * Fix: parent theme's pre-slick-init CSS never reveals the first gallery
 * image for the "product-gallery-right" layout (only left/bottom/horizontal/
 * none are handled in assets/css/theme.css). Until slick.js finishes
 * initializing, every gallery image stacks full-width on the page instead of
 * only the first one showing - this is the "image area takes over the page"
 * bug on single-product pages using the right-hand gallery layout.
 */
.product-gallery-right .single-product-gallery:not(.slick-initialized) > *:nth-of-type(1) {
	display: block !important;
}

/*
 * Remove the "Product Tag: Morocco" line from the single-product meta block.
 * .product_meta .tagged_as is WooCommerce core's own wrapper for this line
 * (templates/single-product/meta.php) - not overridden by the theme - so
 * hiding it here doesn't touch the underlying product_tag taxonomy data.
 */
.product_meta .tagged_as {
	display: none;
}