/**
 * Created: 		11/18/2025
 * Updated:			12/31/2025
 * ✅ Root
 * ✅ Popup
 * ✅ Google Reviews
 * ✅ Cart cross-sells
 */

/*****************
* ✅ Root
******************/
:root {
	--site_primary_color: #f26419;
	--site_secondary_color: #111111;
	--site_shade_1: #222222;
	--site_shade_2: #2e2e2e;
	--site_shade_3: #3e3e3e;
	--site_shade_4: #6e6e6e;
	--site_shade_5: #ffffff;
	--site_shade_6: #fafafa;
	--site_shade_7: #757575;
	--site_shade_8: #aaaaaa;

	--site_family_1: "rsgdx_Montserrat", sans-serif;
	--site_family_2: "Font Awesome 5 Free";
}


/*****************
* ✅ Popup
******************/
.rsgdx-flex-modal {
	position: fixed;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	min-width: 320px;
	min-height: 100vh;
	display: none;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
.rsgdx-flex-modal.rsgdx-active {
	display: flex;
}
.rsgdx-flex-modal-content {
	width: 100%;
	min-width: 320px;
	max-width: 600px;
	background: #111111;
	border-radius: 3px;
	box-shadow: 0px 0px 8px -2px #fff;
}
.rsgdx-flex-modal-heading {
	padding: 20px;
	position: relative;
}
.rsgdx-flex-modal-heading .rsgdx-flex-modal-title {
	font-size: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}
.rsgdx-flex-modal-title-icon {
	background: #fff;
	color: #000;
	border-radius: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	text-align: center;
}
.rsgdx-flex-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 15px;
	cursor: pointer;
	transition: ease .3s;
}
.rsgdx-flex-modal-body {
	padding: 20px;
	position: relative;
	font-size: 15px;
}
.rsgdx-flex-modal-footer {
	background: #000;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}
.rsgdx-flex-modal-footer button {
	border-radius: 3px;
	transition: ease .3s;
	background: #000;
	border: 1px solid #fff;
	color: #fff;
	font-size: 15px;
}

/*****************
* ✅ Popup 2
******************/
.rsgdx-pop-modal {
	border: 1px solid var(--site_primary_color);
	background: var(--site_secondary_color);
	max-width: 600px;
}
.rsgdx-pop-header, .rsgdx-pop-body, .rsgdx-pop-footer {
	background: var(--site_secondary_color);
}
#rsgdx-pop-title {
	color: #f3f4f6!important;
}
.rsgdx-pop-footer {
	border-color: #373636!important;
}


/*******************************************
 * ✅ Google Reviews
*******************************************/
.rsgdx-google-reviews {
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	gap: 30px;
}
.rsgdxgrs-company {
	min-width: 130px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}
.rsgdxgrs-company img.rsgdxgrs-logo {
	border-radius: 100%;
	width: 50px;
	height: 50px;
}
.rsgdxgrs-company span.rsgdxgrs-company-name {
	font-size: 13px;
}
.rsgdxgrs-company .rsgdxgrs-stars {
	color: #fb8e28;
	font-size: 20px;
}
.rsgdxgrs-company a.rsgdxgrs-review-btn {
	background: #1f60d3;
	color: #ffffff;
	border-radius: 30px;
	padding: 10px;
	display: inline-block;
	font-size: 12px;
}
.rsgdxgrs-slider-container {
	max-width: 90%;
	overflow: hidden;
}
.rsgdxgrs-review {
	padding: 0 5px;
}
.rsgdxgrs-review .rsgdxgrs-review-header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
}
.rsgdxgrs-review .rsgdxgrs-user-icon {
	border-radius: 100%;
	width: 40px;
	height: 40px;
}
.rsgdxgrs-review .rsgdxgrs-review-header-name {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.rsgdxgrs-review .rsgdxgrs-review-header-name strong {
	font-size: 13px;
}
.rsgdxgrs-review .rsgdxgrs-review-header-name small {
	font-size: 11px;
}
.rsgdxgrs-review .rsgdxgrs-review-stars {
	color: #fb8e28;
	font-size: 15px;
}
.rsgdxgrs-review .rsgdxgrs-review-text {
	font-size: 13px;
	max-height: 100px;
	overflow: auto;
	max-width: 90%;
}
/* For Webkit-based browsers (Chrome, Edge, Safari) */
.rsgdx-google-reviews .rsgdxgrs-review .rsgdxgrs-review-text::-webkit-scrollbar {
	width: 8px; /* Adjust width as needed */
	height: 8px; /* For horizontal scrollbars */
}

.rsgdx-google-reviews .rsgdxgrs-review .rsgdxgrs-review-text::-webkit-scrollbar-track {
	background: var(--site_secondary_color); /* Background of the scrollbar track */
}

.rsgdx-google-reviews .rsgdxgrs-review .rsgdxgrs-review-text::-webkit-scrollbar-thumb {
	background: var(--site_primary_color); /* Main scrollbar color */
	border-radius: 5px; /* Smooth rounded edges */
}

.rsgdx-google-reviews .rsgdxgrs-review .rsgdxgrs-review-text::-webkit-scrollbar-thumb:hover {
	background: rgba(var(--site_primary_color), 0.8); /* Slightly lighter on hover */
}
.rsgdx-google-reviews .rsgdxgrs-review .rsgdxgrs-review-text {
	scrollbar-width: thin; /* Options: auto, thin */
	scrollbar-color: var(--site_primary_color) #000;
}


/*****************
* ✅ Cart cross-sells
* 12/31/2025
******************/
.woocommerce .cart-collaterals .cross-sells h2 {
	font-size: 18px;
	background: var(--site_secondary_color);
	color: #fff;
}
.woocommerce .cart-collaterals .cross-sells .review-rating {
	display: none;
}
.woocommerce .cart-collaterals li.product a img {
	width: 100%;
	height: 200px!important;
	object-fit: cover;
	object-position: center;
}

/*****************
* ✅ Responsive
******************/
@media only screen and (max-width: 500px) {

	/* Google Reviews */
	.rsgdxgrs-review .rsgdxgrs-review-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

