/**
 * WooCommerce Product Reviews Pro — Account menu shortcode
 *
 * @since 1.18.2
 */

.wc-product-reviews-pro-account-menu {
	position: relative;
	display: inline-block;
	direction: rtl;
	font-family: inherit;
	line-height: 1;
}

.wc-product-reviews-pro-account-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 38px;
	background: rgba(8, 123, 87, .07) !important;
	border: 1px solid rgba(8, 123, 87, .13) !important;
	border-radius: 999px !important;
	cursor: pointer;
	font-family: inherit !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: #175540 !important;
	padding: 5px 11px 5px 8px;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(5, 91, 62, .07);
	transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.wc-product-reviews-pro-account-trigger:hover,
.wc-product-reviews-pro-account-menu.is-open .wc-product-reviews-pro-account-trigger {
	background: #e4f4ec !important;
	border-color: rgba(8, 123, 87, .3) !important;
	color: #07563d !important;
	box-shadow: 0 6px 16px rgba(5, 91, 62, .13);
	transform: translateY(-1px);
}

.wc-product-reviews-pro-account-trigger:focus-visible {
	outline: 3px solid rgba(8, 123, 87, .22);
	outline-offset: 2px;
}

.wc-product-reviews-pro-account-trigger img.avatar {
	border-radius: 50%;
	width: 28px;
	height: 28px;
	object-fit: cover;
	border: 1px solid rgba(8, 123, 87, .2);
}

.wc-product-reviews-pro-account-icon {
	font-size: 20px;
	width: 20px;
	height: 20px;
	color: #087b57;
}

.wc-product-reviews-pro-account-arrow {
	font-size: 11px;
	color: #477260;
	transition: transform .15s ease;
}

.wc-product-reviews-pro-account-menu.is-open .wc-product-reviews-pro-account-arrow {
	transform: rotate(180deg);
}

.wc-product-reviews-pro-account-submenu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 188px;
	margin: 10px 0 0;
	padding: 7px;
	list-style: none;
	background: #fff;
	border: 1px solid #dce9e2;
	border-radius: 13px;
	box-shadow: 0 14px 32px rgba(12, 68, 47, .16);
	z-index: 99999;
	pointer-events: auto;
}

.wc-product-reviews-pro-account-menu.is-open .wc-product-reviews-pro-account-submenu {
	display: block;
}

.wc-product-reviews-pro-account-submenu li + li {
	margin-top: 2px;
}

.wc-product-reviews-pro-account-submenu a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	color: #304a3e !important;
	font-family: inherit !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.wc-product-reviews-pro-account-submenu a:hover {
	background: #edf7f1;
	color: #087b57 !important;
}

/* on mobile, show only the avatar/icon - no name/label text, so the
   trigger takes minimal space in a theme's mobile header */
@media (max-width: 480px) {
	.wc-product-reviews-pro-account-trigger {
		gap: 0;
		min-width: 38px;
		padding: 4px;
	}

	.wc-product-reviews-pro-account-label,
	.wc-product-reviews-pro-account-arrow {
		display: none;
	}

	.wc-product-reviews-pro-account-icon {
		font-size: 26px;
		width: 26px;
		height: 26px;
	}

	.wc-product-reviews-pro-account-trigger img.avatar {
		width: 30px;
		height: 30px;
	}
}
