/*
 Theme Name:   Storefront Custom Child
 Description:  Custom theme based on Storefront for the new marketing design.
 Author:       Your Name
 Template:     storefront
 Version:      1.0.1
*/

.condition-description {
	position: relative;
	cursor: help;
	display: inline-block;

	img {
		display: none;
		position: absolute;
		bottom: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 350px;
		max-width: none;
		background: #fff;
		padding: 5px;
		border: 1px solid #ddd;
		border-radius: 8px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
		z-index: 99999;
		margin-bottom: 10px;
		pointer-events: none;
	}

	&:hover {
		img {
			display: block;
		}
	}
}
