/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/



/* === Modern Review-Style Comment Card === */

.comment-awaiting-moderation{
    display: none;;
}

/* Main comment card */
.comment-body {
  border-block-end:1px solid #efefef;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 16px 20px;
  margin-bottom: 16px;
  position: relative;
  border-left: none;
  transition: transform 0.2s, box-shadow 0.2s;
}


/* Header: Author + Avatar + Date */
.comment-meta {
  display: block !important;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.comment-author {
	margin-bottom:8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #111;
}

.comment-author .says {
  display: none;
}

.comment-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #facc15;
}

.comment-metadata time {
  font-size: 0.85rem;
  color: #888;
}
.comment-content{
	border:none !important;
}


.comment-content .comment-stars {
  display: flex;
  gap: 4px;
  font-size: 18px;
  color: #facc15;
  margin-bottom: 8px;
}
.comment-rating{
	font-size:25px;	
}

/* Comment text content */
.comment-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.comment-reply-link{
	position: absolute;
    top: 0;
    right: 0;
	padding: 9px 30px !important;
	border-radius:2px !important;
}

/* Optional visual divider between rating and text */
.comment-content {
  border-top: 1px solid #f0f0f0;
  padding-top: 8px;
}

/* Reply button styling */
.comment-body .comment-reply-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background-color: #facc15;
  color: #111;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}

.comment-body .comment-reply-link:hover {
  background-color: #eab308;
  color: #000;
}

/* Nested replies */
.children .comment-body {
  margin-left: 50px;
  border-left: 2px solid #facc15;
  padding-left: 16px;
}

/* Small subtle tags for "verified user" or "author" */
.comment-author span.tag {
  background-color: #facc15;
  color: #111;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
}

/* Navigation/pagination */
.comment-navigation,
.comments-pagination {
  margin-top: 20px;
  text-align: center;
}

.comment-navigation a,
.comments-pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  background: #facc15;
  color: #111;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.comment-navigation a:hover,
.comments-pagination a:hover {
  background: #eab308;
}

.nav-links {
  display: flex;
  justify-content: space-between;
}

/* Hide first comment-navigation block (the one above comments) */
.comments-area > .comment-navigation:first-of-type {
  display: none;
}

.rating-card.no-tabs {
  border-radius: 16px;
/*   padding: 24px; */
/*   text-align: center; */
  margin: 0 auto 30px;
}

.rating-circles {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.circle-box {
    display: flex;
	gap:10px;
    text-align: center;
    align-items: anchor-center;}

.circle-rating {
	margin:0 !important;
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 8px;
}


.circle {
  width: 100%;
  height: 100%;
  transform: rotate(0);
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle-progress {
  fill: none;
  stroke: #0073aa;
  stroke-width: 3.8;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}

.circle-rating-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
  color: #222;
}

.circle-label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
}

.rating-button {
  display: inline-block;
  margin-top: 12px;
  background: #fdef73;
  color: #000 !important;
  padding: 10px 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.rating-button:hover {
  background: #edd34c;
}
/* 🌕 Our Rating (Yellow theme) */
.circle-yellow {
  position: relative;
}

.circle-yellow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8d1 0%, #ffec8a 70%);
  z-index: 0;
}

.circle-yellow svg {
  position: relative;
  z-index: 1;
}

.circle-yellow .circle-bg {
  stroke: #fff3a3;
}

.circle-yellow .circle-progress {
  stroke: #ffcc00;
}

/* 🌿 User Rating (Green theme) */
.circle-green {
  position: relative;
}

.circle-green::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #e6f9e8 0%, #b8f0c0 70%);
  z-index: 0;
}

.circle-green svg {
  position: relative;
  z-index: 1;
}

.circle-green .circle-bg {
  stroke: #c7f5cc;
}

.circle-green .circle-progress {
  stroke: #28a745;
}

.circle-progress {
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
  stroke-dasharray: 0, 100;
  animation: fillCircle 1.2s ease forwards;
}

/* Animate using custom property from PHP */
@keyframes fillCircle {
  to {
    stroke-dasharray: var(--dash), 100;
  }
}

/* ==== Comment Form Modern Style ==== */
#respond,
.comment-respond {
  background: #fff;
  border-radius: 16px;
  margin: 40px auto;
  transition: all 0.3s ease;
}


#reply-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  border-left: 4px solid #1876bc;
  padding-left: 10px;
}

.comment-notes {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Input Fields */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: #333;
  background: #fafafa;
  transition: all 0.2s ease;
  outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #0073aa;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
  font-size: 14px;
}

/* Textarea */
.comment-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Submit Button */
#submit {
  background: #1876bc;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

#submit:hover {
  background: #005f8a;
  transform: translateY(-1px);
}

/* Remove extra paragraph spacing */
.comment-form p {
  margin-bottom: 16px;
}

/* Author, Email, and URL fields inline (desktop) */
@media (min-width: 700px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
/*     display: block; */
/*     width: calc(33.333% - 10px);
    margin-right: 10px; */
  }
  .comment-form-url {
    margin-right: 0;
  }
}

/* Cancel Reply Link */
#cancel-comment-reply-link {
  color: #888;
  font-size: 14px;
  margin-left: 10px;
}

#cancel-comment-reply-link:hover {
  color: #0073aa;
}

/* Placeholder style */
.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #aaa;
  font-style: italic;
}
.info-card-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #f8fafc;
    border: 1px solid #f1f1f1;
    padding: 0.5rem;
    margin: 2rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	margin:0;
}

.info-card-avatar {
	width: 50px;
	height:50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 0 3px #00448f !important;
}
}

.info-card-text {
    flex: 1;
    color: #1e293b;
}

.info-card-author {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-card-name {
    color: #00448f;
    font-weight: 700;
}

.info-card-date {
    font-size: 0.85rem;
    color: #475569;
	margin: 0;
}

.info-card-button {
    display: inline-block;
    margin-left: 8px;
    background: transparent;
    border: 1px solid #16a34a;
    color: #16a34a;
    font-weight: 600;
    border-radius: 2px;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.info-card-button:hover {
    background-color: #16a34a;
    color: white;
}

@media (max-width: 640px) {
    .info-card-wrapper {
		gap:0.5rem;
        flex-direction: row;
        text-align: center;
		padding: 10px;
		margin: 0 10px;
    }

	.info-card-author, .info-card-name{
		font-size:0.71rem;
		margin: 0;
	}

	.info-card-text {
		text-align:left;
		line-height: 17px;
	}
	.info-card-button{
		font-size: 12px;
		margin-left: 0;
		margin-top: 5px;
	}
	.info-card-date{
	 font-size:0.71rem;	
	}
}


.elementor-widget-text-editor p a {
  text-decoration: underline !important; 
  font-weight: 600 !important;        
}

.elementor-icon-box-content h2.elementor-icon-box-title {
  text-align: center;
}
.mobile-br {
  display: none;
}

/* Show the line break on mobile */
@media (max-width: 768px) {
	
.rating-circles {
    gap: 7px;
  }
	.circle-box {
		gap:5px;
	}
  .mobile-br {
    display: inline;
  }
	.circle-label {
	text-align:left;
		font-size:13px;
	}
}