.grc-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 15px 0 45px 0;
}

.grc-card-item {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	height: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

/* Glassmorphism Prefix Selector */
.grc-glass-yes .grc-card-item {
	background: rgba(255, 255, 255, 0.6) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* Hover Lift Classes */
.grc-hover-lift-yes .grc-card-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.grc-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 12px;
}

.grc-reviewer-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.grc-profile-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.grc-avatar-fallback {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #e3f2fd;
	color: #1a73e8;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.grc-reviewer-meta-wrap {
	display: flex;
	flex-direction: column;
}

.grc-reviewer-title-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.grc-reviewer-name {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.2;
}

.grc-verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	background: #e8f0fe;
	color: #1a73e8;
	padding: 2px 6px;
	border-radius: 12px;
	font-size: 10px;
	font-weight: 600;
}

.grc-verified-icon {
	width: 10px;
	height: 10px;
	fill: currentColor;
}

.grc-reviewer-meta {
	font-size: 12px;
	color: #70757a;
	margin-top: 2px;
}

.grc-review-date {
	font-size: 11px;
	color: #9aa0a6;
	margin-top: 1px;
}

.grc-google-brand-logo {
	flex-shrink: 0;
}

.grc-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 12px;
}

.grc-star svg {
	width: 16px;
	height: 16px;
	transition: fill 0.2s ease;
}

.grc-star.filled svg {
	fill: #fabb05;
}

.grc-star.empty svg {
	fill: #e0e0e0;
}

.grc-review-body {
	flex-grow: 1;
	font-size: 14px;
	line-height: 1.5;
	color: #3c4043;
}

.grc-review-content {
	white-space: pre-wrap;
	word-break: break-word;
	transition: max-height 0.3s ease;
}

.grc-read-more-btn {
	background: none;
	border: none;
	color: #1a73e8;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	font-size: 13px;
	margin-top: 6px;
	display: inline-block;
}

.grc-business-reply {
	background: #f8f9fa;
	border-left: 3px solid #dadce0;
	padding: 10px 12px;
	border-radius: 0 8px 8px 0;
	margin-top: 14px;
	font-size: 13px;
}

.grc-reply-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: #5f6368;
	margin-bottom: 4px;
}

.grc-reply-text {
	color: #202124;
	line-height: 1.4;
}

.grc-card-footer {
	margin-top: 16px;
}

.grc-google-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1a73e8;
	color: #ffffff;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.2s ease;
}

.grc-google-btn:hover {
	background: #1557b0;
	color: #ffffff;
}

/* Nav & Pagination Custom UI Styles */
.grc-nav-btn {
	color: #1a73e8 !important;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 40px !important;
	height: 40px !important;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.grc-nav-btn::after {
	font-size: 16px !important;
	font-weight: bold;
}

.grc-nav-btn:hover {
	background: #1a73e8;
	color: #ffffff !important;
}

.grc-pagination .swiper-pagination-bullet-active {
	background: #1a73e8 !important;
	width: 18px;
	border-radius: 4px;
	transition: all 0.2s ease;
}

/* Empty State Styling */
.grc-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: #f8f9fa;
	border: 1px dashed #dadce0;
	border-radius: 8px;
	text-align: center;
}

.grc-empty-icon {
	color: #d93025;
	margin-bottom: 12px;
}

.grc-empty-icon svg {
	width: 48px;
	height: 48px;
}

.grc-empty-text {
	font-size: 16px;
	color: #202124;
	font-weight: 500;
}
