/*
Theme Name: Everyday Item Shop Child
Theme URI: https://wolmart.org/
Author: D-THEMES
Author URI: https://wolmart.org/about-me/
Description: Wolmart Responsive WordPress + eCommerce Theme.
Version: 1.0
Template: wolmart
License: Commercial
License URI: http://themeforest.net/licenses/regular_extended
Tags: woocommerce, corporate, ecommerce, responsive, blue, black, green, white, light, dark, red, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
*/

/*************** ADD YOUR CUSTOM CSS HERE  ***************/

/* ---------- Phase 2B.5 / Priority 5-6: mobile CRO ---------- */
@media (max-width: 767px) {
	/* Header top bar: the welcome text collides with the icons on phones */
	.welcome-msg { display: none; }

	/* Variation swatches / size buttons: 44px touch targets */
	.product-single .product-variations > button,
	.product-single .product-variations > a {
		min-width: 44px;
		min-height: 44px;
		line-height: 42px;
	}

	/* Mobile buy bar */
	.eis-buybar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1001;
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
		background: #fff;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, .12);
		transition: transform .2s ease;
	}
	.eis-buybar[hidden] { display: none; }
	.eis-buybar.is-hidden { transform: translateY(110%); }
	.eis-buybar__price {
		flex: 1;
		min-width: 0;
		font-size: 1.6rem;
		font-weight: 600;
		line-height: 1.2;
		color: #222;
	}
	.eis-buybar__price del { font-size: 1.3rem; color: #999; }
	.eis-buybar__btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 48px;
		padding: 0 20px;
		border-radius: 4px;
		white-space: nowrap;
	}
	body.eis-has-buybar { padding-bottom: 72px; }
}
@media (min-width: 768px) {
	.eis-buybar { display: none !important; }
}
/* P5: floating quick-menu button overlaps the buy/checkout buttons on phones */
@media (max-width: 767px) {
	.single-product #floating-snap-btn-wrapper,
	.woocommerce-cart #floating-snap-btn-wrapper,
	.woocommerce-checkout #floating-snap-btn-wrapper { display: none !important; }
}