body{
	font-family: "Gotham Rounded SSm" !important;
}
#pp-star-ui span {font-size:24px;cursor:pointer;}

a.login-link, a.logout-link{
	background-color: var(--e-global-color-accent);
	color: #FFFFFF !important;
	border-style: solid;
    border-color: var(--e-global-color-accent);
	text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
}
a.login-link:hover, a.logout-link:hover{
	color: var(--e-global-color-text) !important;
	background-color: #FFFFFF;
    color: var(--e-global-color-accent) !important;
    border-color: var(--e-global-color-accent);
}

a.hfe-read-more {
	border: 1px solid #0B4962;
	padding: 10px 20px;
	text-decoration: none !important;
	width: max-content;
	color: #0B4962;
}

i.bi.bi-star-fill, i.bi.bi-star-half, i.bi.bi-star {
    margin: 0 2px;
}
i.bi.bi-star-half {
    margin-left: 2px;
}
body.rtl i.bi.bi-star-half{
	margin-right: 2px;
}
body.rtl i.bi-star-half::before{
	transform: scaleX(-1);
}

/* Login Page */
.pp-login-wrapper {
	max-width: 420px;
	margin: 30px auto;
}
.pp-login-links {
	margin-top: 15px;
	text-align: center;
}
.pp-forgot-link {
	margin-bottom: 10px;
}
.pp-login-links a {
	text-decoration: none;
	font-weight: 600;
}

/* Forgot Password */
.pp-auth-form { max-width:420px; margin:40px auto; }
.pp-auth-form label { display:block; margin-bottom:6px; }
.pp-auth-form input { width:100%; padding:8px; }
.pp-auth-form button { padding:10px 18px; cursor:pointer; }
.pp-error { color:#c00; }
.pp-success { color:#090; }

/* Product Details Page */
.pp-notes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.main-rating-details a {
	display: flex;
	gap: 5px;
}

.pp-note {
    width: 90px;
	max-width: 90px;
    text-align: center;
}
.gender-rattings > div {
	display: flex;
    gap: 5px;
	line-height: 25px;
}
.pp-note-image-wrap img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
    border: 1px solid var(--e-global-color-text);
    border-radius: 5px;
}

.pp-note-title {
    font-size: 13px;
    line-height: 1.2;
}
.pp-star-ui span {
    font-size: larger;
}
.pp-star-rating{
	display: inline;
}
.product-details-review-boxes .box{
	border: 1px solid #E2E6E9;
    background-color: #F0F2F580;
    padding: 25px 15px;
    color: #041A22;
}
.product-details-review-boxes .box.box-highlight {
    background: #0F263D;
    color: white;
}
.product-details-review-boxes .box .small{
	color: #0B4962;
}
.submitted-review-box ul {
    border: 1px solid #E2E6E9;
    padding: 10px;
    background-color: #F0F2F580;
}
.submitted-review-box .d-flex {
    border-bottom: 1px solid #0B496280;
    padding-bottom: 20px;
}
.submitted-review-box .author-icon {
	width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0F263D;
    color: white;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
	min-width: 50px;
}
body.rtl .submitted-review-box .author-icon{
	margin-left: 1rem !important;
	margin-right: 0px !important;
}
.submitted-review-box .review-author{
	color: #041A22;	
}
.submitted-review-box p.review-comment {
    color: #0B4962;
}

.pp-notes-section-toggle {
    cursor: pointer;
    position: relative;
    padding-right: 28px;
    user-select: none;
}

/* Chevron arrow */
.pp-notes-section-toggle::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(-135deg); /* UP */
    transition: transform 0.3s ease;
}

/* Closed = arrow DOWN */
.pp-notes-section-toggle.closed::after {
    transform: translateY(-50%) rotate(45deg);
}

/* All Products Page */
/* Consistent logo container height */
.pp-brand-logo-wrap,
.pp-note-logo-wrap {
    height: 120px;       /* ensures equal-height cards */
    padding: 10px;
}

.pp-brand-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Card hover */
.brand-card:hover,
.note-card:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
}

/* Search Results Page */
.pp-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.pp-search-filters {
    display: flex;
    gap: 10px;
    align-items: center;
}
.pp-search-filters button {
    display: none;
}

/* Single Brand Page */
.product-card img {
	height: 400px;
	width: auto;
	margin: 0 auto;
}

/* Member Page */
.pp-members {
	max-width: 1100px;
	margin: 40px auto;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
}
.pp-user-box {
	height: 300px;
	background: #F0F2F580;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;   /* vertical center */
	align-items: center;       /* horizontal center */

	text-align: center;
}

.pp-user-box h2 {
	margin: 0 0 10px;
}

.pp-user-box .pp-email {
	margin: 0 0 10px;
	opacity: 0.7;
}

.pp-user-box .pp-points {
	margin: 0;
	font-weight: 600;
	background: white;
	padding: 10px;
	color: #FBBC04;
}

.pp-user-box, .pp-activity-box {
	background: #F0F2F580;
	padding: 20px;
	margin-bottom: 20px;
}
.pp-email { opacity: 0.7; }
.pp-member-menu {
	list-style: none;
	background: #F0F2F580;
	padding: 0;
	margin: 0;
}
.pp-member-menu li {
	display: flex;
	gap: 15px;
	padding: 12px;
	align-items: center;
}
.pp-member-menu li.disabled{
	opacity: 0.3;
}
.pp-icon { font-size: 22px; }
.pp-member-menu small {
	display: block;
	opacity: 0.7;
}
body.rtl .pp-activity-box ul{
	padding-right: 0;
}
.pp-activity-box ul.list-unstyled li{
	border-bottom: 1px solid #0B496280;
    padding-bottom: 15px;
}
.pp-activity-box ul.list-unstyled .review-comment{
	color: #0B4962;
}
.pp-activity-box ul.list-unstyled .review-comment span.review-comment-for{
	color: black;
}
.pp-activity-box ul.list-unstyled .review-comment a.review-comment-for-link{
	text-decoration: none;
    color: black;
}