/* Anchor gallery */
.woocommerce-product-gallery {
	position: relative;
}

/* Feature wrapper */
.wc-pfb-wrapper {
	position: absolute;
	top: 30%;
	left: -140px; /* adjust if needed */
	z-index: 20;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Trigger */
.wc-pfb-trigger {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	cursor: pointer;
	position: relative;
}

/* Feature image */
.wc-pfb-icon img {
	width: 42px;
	height: auto;
	margin-bottom: 6px;
}

/* Title */
.wc-pfb-title {
	font-size: 14px;
	line-height: 1.3;
	max-width: 120px;
}

/* Tooltip (hidden by default) */
.wc-pfb-tooltip {
	position: absolute;
	top: 50%;
	right: calc(100% + 14px);
	transform: translateY(-50%) translateX(10px);
	width: 350px;
	background: #fff;
	border: 1px solid #ddd;
	padding: 14px;
	font-size: 13px;
	line-height: 1.5;
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	z-index: 999;
}

/* Show tooltip on hover */
.wc-pfb-trigger:hover .wc-pfb-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
    font-size: 14px;
}
.product-main .product-gallery {
    display: flex;
}
.wc-pfb-badge{
    width: 150px;
    margin-left: 20px;
}

@media(min-width:320px) and (max-width:568px){
    .product-main .product-gallery {
        display: block;
    }
    .wc-pfb-badge {
        margin-left: 0px;
        position: absolute;
        top: 15px;
        right: -7px;
        z-index: 9;
    }

    .wc-pfb-tooltip {
        position: absolute;
        top: 50%;
        right: calc(100% + -30px);
        transform: translateY(-50%) translateX(10px);
        width: 270px;
    }

}