.gx-template-slider-widget {
	font-family: 'Inter', sans-serif;
	width: 100%;
	max-width: var(--content-width, 1140px);
	margin: 0 auto;
	box-sizing: border-box;
}

/* Header Area */
.gx-header-area {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}

.gx-header-left {
	max-width: 60%;
}

.gx-subtitle {
	color: #0066ff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.gx-title {
	color: #111827;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 15px;
}

.gx-desc {
	color: #4B5563;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.gx-header-right {
	display: flex;
	align-items: center;
	height: 100%;
	margin-top: 20px;
}

.gx-header-link {
	color: #0066ff;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.3s ease;
}

.gx-header-link:hover {
	color: #0044CC;
}

.gx-header-link svg {
	transition: transform 0.3s ease;
}

.gx-header-link:hover svg {
	transform: translateX(4px);
}

/* Grid Area */
.gx-grid-area {
	position: relative;
}

/* Category Tabs */
.gx-category-tabs {
	display: flex;
	justify-content: flex-start;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.gx-tab {
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	color: #4B5563;
	padding: 8px 24px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
}

.gx-tab:hover {
	border-color: #0066ff;
	color: #0066ff;
	background: #FFFFFF;
	box-shadow: none;
}

.gx-tab:focus,
.gx-tab:focus-visible {
	outline: none;
	box-shadow: none;
	border-color: #0066ff;
	color: #0066ff;
	background: #FFFFFF;
}

.gx-tab:active {
	outline: none;
	box-shadow: none;
	border-color: #0066ff;
	color: #0066ff;
	background: #EFF6FF;
}

.gx-tab.active {
	background: #0066ff;
	border-color: #0066ff;
	color: #FFFFFF;
	box-shadow: none;
}

.gx-tab.active:hover,
.gx-tab.active:focus,
.gx-tab.active:focus-visible,
.gx-tab.active:active {
	background: #0055DD;
	border-color: #0055DD;
	color: #FFFFFF;
	box-shadow: none;
	outline: none;
}

.gx-hidden {
	display: none !important;
}

.gx-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Card */
.gx-card {
	background: #FFFFFF;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #F3F4F6;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gx-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gx-card-image {
	width: 100%;
	height: 240px;
	overflow: hidden;
	border-bottom: 1px solid #F3F4F6;
}

.gx-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.5s ease;
}

.gx-card:hover .gx-card-image img {
	transform: scale(1.03);
}

.gx-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gx-card-badge {
	display: inline-block;
	background-color: #EFF6FF;
	color: #0066ff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 16px;
	align-self: flex-start;
}

.gx-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 10px;
}

.gx-card-desc {
	font-size: 14px;
	color: #6B7280;
	line-height: 1.5;
	margin: 0 0 24px;
	flex-grow: 1;
}

.gx-card-footer {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 15px;
	padding-top: 20px;
	border-top: 1px solid #F3F4F6;
}

.gx-card-price {
	font-size: 14px;
	color: #6B7280;
}

.gx-card-price-val {
	font-weight: 700;
	color: #0066ff;
	font-size: 16px;
}

.gx-card-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	width: 100%;
}

.gx-card-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	color: #0066ff;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	flex: 1;
	/* Makes buttons equal width */
	white-space: nowrap;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	outline: none;
}

.gx-card-btn:hover {
	border-color: #0066ff;
	background-color: #EFF6FF;
	color: #0066ff;
	box-shadow: none;
}

.gx-card-btn:focus,
.gx-card-btn:focus-visible {
	outline: none;
	box-shadow: none;
	border-color: #0066ff;
	color: #0066ff;
	background: transparent;
}

.gx-card-btn:active {
	outline: none;
	box-shadow: none;
	border-color: #0066ff;
	background-color: #EFF6FF;
	color: #0066ff;
}

.gx-add-cart-btn {
	background-color: #0066ff;
	color: #ffffff;
	border-color: #0066ff;
	outline: none;
	box-shadow: none;
}

.gx-add-cart-btn:hover {
	background-color: #0044CC;
	border-color: #0044CC;
	color: #ffffff;
	outline: none;
	box-shadow: none;
}

.gx-add-cart-btn:focus,
.gx-add-cart-btn:focus-visible {
	outline: none;
	box-shadow: none;
	background-color: #0066ff;
	border-color: #0066ff;
	color: #ffffff;
}

.gx-add-cart-btn:active {
	outline: none;
	box-shadow: none;
	background-color: #0044CC;
	border-color: #0044CC;
	color: #ffffff;
}

.gx-add-cart-btn.loading {
	opacity: 0.7;
	cursor: wait;
}

.gx-add-cart-btn.added {
	background-color: #0066ff;
	border-color: #0066ff;
	color: #ffffff;
}

.gx-add-cart-btn.added:hover,
.gx-add-cart-btn.added:focus,
.gx-add-cart-btn.added:active {
	background-color: #0044CC;
	border-color: #0044CC;
	color: #ffffff;
	outline: none;
	box-shadow: none;
}

/* Hide WooCommerce View Cart link that appears after ajax add to cart */
.gx-card-actions .added_to_cart {
	display: none !important;
}

/* Checkout button — full width */
.gx-cart-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 12px;
}

.gx-btn-checkout {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px 20px;
	background-color: #0066ff;
	border: 2px solid #0066ff;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	box-sizing: border-box;
}

.gx-btn-checkout:hover,
.gx-btn-checkout:focus {
	background-color: #0066ff;
	border-color: #0066ff;
	color: #ffffff;
	text-decoration: none;
}

/* Pagination */
.gx-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	gap: 8px;
}

.gx-pagination a,
.gx-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	border: 1px solid #E5E7EB;
	color: #4B5563;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.gx-pagination a:hover {
	border-color: #0066ff;
	color: #0066ff;
}

.gx-pagination .current {
	background-color: #0066ff;
	border-color: #0066ff;
	color: #FFFFFF;
}



/* Responsive */
@media (max-width: 768px) {
	.gx-header-area {
		flex-direction: column;
	}

	.gx-header-left {
		max-width: 100%;
		margin-bottom: 20px;
	}

	.gx-header-right {
		margin-top: 0;
	}

	.gx-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.gx-product-grid {
		grid-template-columns: 1fr;
	}
}

/* ----------------- Cart Drawer Implementation ----------------- */

/* Overlay */
.gx-cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 99998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.gx-cart-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Drawer */
.gx-cart-drawer {
	position: fixed;
	top: 0;
	right: -450px;
	width: 100%;
	max-width: 420px;
	height: 100vh;
	background: #FFFFFF;
	z-index: 99999;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
	transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	font-family: 'Inter', sans-serif;
}

.gx-cart-drawer.open {
	right: 0;
}

/* Header */
.gx-cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid #E5E7EB;
}

.gx-cart-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.gx-cart-close {
	background: transparent;
	border: none;
	cursor: pointer;
	color: #9CA3AF;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	box-shadow: none;
}

.gx-cart-close:hover {
	color: #111827;
	background: transparent;
}

.gx-cart-close:focus,
.gx-cart-close:focus-visible {
	outline: none;
	box-shadow: none;
	color: #9CA3AF;
	background: transparent;
}

.gx-cart-close:active {
	outline: none;
	box-shadow: none;
	color: #111827;
	background: transparent;
}

/* Inner Scrollable Area */
.gx-cart-drawer-inner {
	flex-grow: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Empty State */
.gx-cart-empty {
	padding: 40px 24px;
	text-align: center;
	color: #6B7280;
}

/* Cart Items */
.gx-cart-body {
	padding: 24px;
	flex-grow: 1;
	overflow-y: auto;
}

.gx-cart-items {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gx-cart-item {
	display: flex;
	align-items: flex-start;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid #F3F4F6;
	position: relative;
}

.gx-cart-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.gx-cart-item-img {
	width: 90px;
	height: 90px;
	border-radius: 4px;
	overflow: hidden;
	background: #F3F4F6;
	flex-shrink: 0;
}

.gx-cart-item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: darken;
	/* Ensures images with white bg blend into the gray container */
}

.gx-cart-item-details {
	padding-left: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gx-cart-item-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 15px;
}

.gx-cart-item-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}

.gx-cart-item-title a {
	color: #111827;
	text-decoration: none;
}

.gx-cart-item-price {
	font-size: 15px;
	font-weight: 500;
	color: #111827;
	text-align: right;
	white-space: nowrap;
}

.gx-cart-item-price del {
	display: block;
	color: #9CA3AF;
	font-size: 13px;
	font-weight: 400;
	text-decoration: line-through;
}

.gx-cart-item-meta {
	font-size: 13px;
	color: #6B7280;
}

.gx-cart-item-meta dl,
.gx-cart-item-meta p {
	margin: 0;
}

.gx-cart-item-meta dt,
.gx-cart-item-meta dd {
	display: inline;
	margin: 0;
}

.gx-cart-item-meta dt {
	font-weight: 500;
}

.gx-cart-item-meta dd {
	margin-right: 5px;
}

.gx-cart-item-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 5px;
}

.gx-qty-selector {
	display: none;
	align-items: center;
	border: 1px solid #E5E7EB;
	border-radius: 4px;
	overflow: hidden;
	height: 28px;
	width: fit-content !important;
}

.gx-qty-btn {
	background: #FFFFFF;
	border: none;
	width: 28px !important;
	max-width: 28px !important;
	min-width: 28px !important;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #111827 !important;
	font-size: 15px;
	transition: background 0.2s;
	padding: 0 !important;
	margin: 0 !important;
	-webkit-appearance: none;
	appearance: none;
	outline: none !important;
	box-shadow: none !important;
}

.gx-qty-btn:hover {
	background: #F3F4F6 !important;
	color: #111827 !important;
}

.gx-qty-btn:focus,
.gx-qty-btn:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	background: #FFFFFF !important;
	color: #111827 !important;
}

.gx-qty-btn:active {
	outline: none !important;
	box-shadow: none !important;
	background: #E5E7EB !important;
	color: #111827 !important;
}

.gx-qty-input {
	width: 32px !important;
	max-width: 32px !important;
	min-width: 32px !important;
	height: 100% !important;
	border: none !important;
	border-left: 1px solid #E5E7EB !important;
	border-right: 1px solid #E5E7EB !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	-moz-appearance: textfield;
}

.gx-qty-input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: #E5E7EB !important;
}

.gx-qty-input::-webkit-outer-spin-button,
.gx-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.gx-cart-item-remove a {
	color: #6B7280;
	font-size: 12px;
	text-decoration: none;
	position: relative;
	transition: color 0.2s;
}

.gx-cart-item-remove a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background-color: #D1D5DB;
	transition: background-color 0.2s;
}

.gx-cart-item-remove a:hover {
	color: #111827;
}

.gx-cart-item-remove a:hover::after {
	background-color: #111827;
}


/* Footer (Subtotal & Buttons) */
.gx-cart-footer {
	padding: 0 24px 24px;
}

.gx-cart-subtotal {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 20px 0;
	border-top: 1px solid #E5E7EB;
	border-bottom: 1px solid #E5E7EB;
	margin-bottom: 20px;
	font-size: 18px;
	color: #111827;
}

.gx-cart-subtotal strong {
	font-weight: 700;
}

.gx-cart-subtotal span {
	font-weight: 600;
}

.gx-cart-actions {
	display: flex;
	gap: 10px;
}

.gx-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.gx-btn-secondary {
	background: #6B7280;
	color: #FFFFFF;
}

.gx-btn-secondary:hover {
	background: #4B5563;
	color: #FFFFFF;
}

.gx-btn-primary {
	background: #0066ff;
	color: #FFFFFF;
}

.gx-btn-primary:hover {
	background: #0044CC;
	color: #FFFFFF;
}

/* Addons Section */
.gx-cart-addons {
	background: #F9FAFB;
	padding: 24px;
	border-top: 1px solid #E5E7EB;
}

.gx-cart-addons h4 {
	margin: 0 0 15px;
	font-size: 14px;
	text-transform: uppercase;
	color: #6B7280;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.gx-addons-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.gx-addon-item {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #E5E7EB;
}

.gx-addon-img {
	width: 50px;
	height: 50px;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}

.gx-addon-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gx-addon-details {
	padding: 0 15px;
	flex-grow: 1;
}

.gx-addon-title {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.gx-addon-price {
	font-size: 13px;
	color: #6B7280;
	font-weight: 500;
}

.gx-addon-action .gx-addon-add-btn {
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	background: transparent;
	color: #0066ff;
	border: 1px solid #0066ff;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-block;
}

.gx-addon-action .gx-addon-add-btn:hover {
	background: #0066ff;
	color: #FFFFFF;
}

/* Hide WooCommerce view cart after add */
.gx-addon-action .added_to_cart {
	display: none !important;
}

/* ------------------------------------- */
/* How It Works Section */
/* ------------------------------------- */
.gx-how-it-works {
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	padding: 60px 0;
}

.gx-hiw-header {
	margin-bottom: 50px;
}

.gx-hiw-subtitle {
	/* color controlled by Elementor Style tab */
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px;
}

.gx-hiw-title {
	/* color controlled by Elementor Style tab */
	font-size: 36px;
	font-weight: 800;
	margin: 0;
}

.gx-hiw-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

.gx-hiw-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ------------------------------------- */
/* Stats Counter Section */
/* ------------------------------------- */
.gx-stats-container {
	text-align: center;
	font-family: inherit;
	background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="waves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 0 50 Q 25 30 50 50 T 100 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><path d="M 0 60 Q 25 40 50 60 T 100 60" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
	background-color: #061338;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	padding: 40px;
	box-sizing: border-box;
	width: 100%;
	max-width: var(--content-width, 1140px);
	margin: 0 auto;
}

.gx-stats-top-heading {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 0;
	margin-bottom: 30px;
	color: #4080ff;
}

.gx-stats-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.gx-stat-item {
	flex: 1 1 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.gx-stat-val {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 8px;
	color: #ffffff;
}

.gx-stat-label {
	font-size: 15px;
	font-weight: 500;
	color: #cbd5e1;
}

@media (max-width: 767px) {
	.gx-stats-grid {
		gap: 24px;
	}

	.gx-stat-item {
		flex: 1 1 45%;
	}
}

@media (max-width: 480px) {
	.gx-stat-item {
		flex: 1 1 100%;
	}
}

/* ------------------------------------- */
/* Testimonials Slider Section */
/* ------------------------------------- */
.gx-testimonials-wrapper {
	width: 100%;
	max-width: var(--content-width, 1140px);
	margin: 0 auto;
	box-sizing: border-box;
}

.gx-ts-header {
	text-align: center;
	margin-bottom: 40px;
}

.gx-ts-subtitle {
	font-size: 12px;
	font-weight: 700;
	/* color controlled by Elementor Style tab */
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px 0;
}

.gx-ts-title {
	font-size: 36px;
	font-weight: 700;
	/* color controlled by Elementor Style tab */
	margin: 0;
	line-height: 1.2;
}

.gx-testimonials-slider {
	padding-bottom: 50px !important;
	/* space for dots */
	overflow: hidden;
}

.gx-ts-card {
	background-color: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	height: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.swiper-slide {
	height: auto;
	/* make cards equal height */
}

.gx-ts-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 15px;
}

.gx-ts-stars svg {
	fill: #3b82f6;
}

.gx-ts-review {
	font-size: 15px;
	/* color controlled by Elementor Style tab */
	line-height: 1.6;
	flex-grow: 1;
	margin-bottom: 25px;
}

.gx-ts-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.gx-ts-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background-color: #f1f5f9;
}

.gx-ts-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gx-ts-name {
	font-size: 15px;
	font-weight: 700;
	/* color controlled by Elementor Style tab */
	margin-bottom: 3px;
}

.gx-ts-designation {
	font-size: 12px;
	/* color controlled by Elementor Style tab */
}

/* Swiper Pagination overrides */
.gx-testimonials-slider .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #cbd5e1;
	opacity: 1;
	margin: 0 4px;
	transition: all 0.3s;
}

.gx-testimonials-slider .swiper-pagination-bullet-active {
	background: #3b82f6;
	width: 8px;
	border-radius: 4px;
}

@media (max-width: 767px) {
	.gx-ts-title {
		font-size: 28px;
	}
}

/* Dotted Connectors */
.gx-hiw-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 40px;
	/* Half of icon height (80px) */
	right: -50%;
	width: 100%;
	height: 1px;
	border-top: 2px dotted #D1D5DB;
	/* Gray dots */
	z-index: 1;
}

/* Arrow at the end of the dotted line */
.gx-hiw-step:not(:last-child)::before {
	content: '>';
	position: absolute;
	top: 32px;
	/* Adjust to center vertically on the line */
	right: -50%;
	/* Position at the end of the line */
	transform: translateX(50%);
	color: #9CA3AF;
	/* Light gray arrow */
	font-size: 14px;
	font-weight: 700;
	z-index: 2;
	background: #FFFFFF;
	line-height: 1;
}

.gx-hiw-icon-wrap {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	position: relative;
	z-index: 5;
	background: #FFFFFF;
	/* Ensure it covers the dotted line */
}

.gx-hiw-icon-wrap svg {
	width: 32px;
	height: 32px;
}

/* Icon Colors (Background Tint & Foreground) */
.gx-hiw-icon-wrap.gx-color-blue {
	background-color: #EFF6FF;
	color: #3B82F6;
}

.gx-hiw-icon-wrap.gx-color-purple {
	background-color: #F5F3FF;
	color: #8B5CF6;
}

.gx-hiw-icon-wrap.gx-color-green {
	background-color: #ECFDF5;
	color: #10B981;
}

.gx-hiw-icon-wrap.gx-color-orange {
	background-color: #FFF7ED;
	color: #F97316;
}

.gx-hiw-step-title {
	/* color controlled by Elementor Style tab */
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
}

.gx-hiw-step-desc {
	/* color controlled by Elementor Style tab */
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	max-width: 220px;
}

/* Responsive */
@media (max-width: 991px) {
	.gx-hiw-steps {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 40px 20px;
	}

	/* Hide connectors on tablet */
	.gx-hiw-step::after,
	.gx-hiw-step::before {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.gx-hiw-steps {
		grid-template-columns: 1fr !important;
	}

	.gx-hiw-title {
		font-size: 28px;
	}
}

/* ------------------------------------- */
/* Testimonials Slider Section           */
/* ------------------------------------- */
.gx-testimonials-wrapper {
	width: 100%;
	box-sizing: border-box;
	padding-bottom: 48px;
	/* space for swiper pagination dots */
}

.gx-ts-header {
	text-align: center;
	margin-bottom: 40px;
}

.gx-ts-subtitle {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #3b82f6;
	margin: 0 0 12px;
}

.gx-ts-title {
	font-size: 36px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	line-height: 1.2;
}

.gx-ts-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	box-sizing: border-box;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gx-ts-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
}

.gx-ts-stars {
	display: flex;
	gap: 3px;
	align-items: center;
}

.gx-star-filled {
	color: #3b82f6;
	display: block;
	flex-shrink: 0;
}

.gx-star-empty {
	color: #3b82f6;
	display: block;
	flex-shrink: 0;
}

.gx-ts-review {
	font-size: 15px;
	line-height: 1.7;
	color: #64748b;
	flex-grow: 1;
}

.gx-ts-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
}

.gx-ts-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #e2e8f0;
}

.gx-ts-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gx-ts-author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gx-ts-name {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
}

.gx-ts-designation {
	font-size: 13px;
	color: #94a3b8;
}

.gx-testimonials-slider.swiper {
	overflow: hidden;
	/* keep slides inside bounds — prevents editor panel clipping */
	padding-bottom: 0;
}

.gx-testimonials-slider .swiper-slide {
	height: auto;
	display: flex;
	align-items: stretch;
}

/* Pagination sits below the slider, inside the wrapper's padding-bottom */
.gx-testimonials-slider .swiper-pagination {
	bottom: -40px;
}

.gx-testimonials-slider .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #cbd5e1;
	opacity: 1;
	transition: background 0.2s, transform 0.2s;
}

.gx-testimonials-slider .swiper-pagination-bullet-active {
	background: #3b82f6;
	transform: scale(1.3);
}

@media (max-width: 767px) {
	.gx-ts-title {
		font-size: 26px;
	}

	.gx-ts-header {
		margin-bottom: 28px;
	}
}

/* ------------------------------------- */
/* WooCommerce Custom Checkout           */
/* ------------------------------------- */

.woocommerce-checkout {
	font-family: inherit;
}

/* 2-Column Layout on Desktop */
@media (min-width: 992px) {
	.woocommerce-checkout form.checkout {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		align-items: flex-start;
	}

	.woocommerce-checkout #customer_details {
		width: calc(60% - 20px);
		float: none;
	}

	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review {
		width: calc(40% - 20px);
		float: none;
	}

	/* Sticky Order Summary */
	.woocommerce-checkout #order_review {
		position: sticky;
		top: 100px;
	}
}

/* Soft UI Form Fields */
.woocommerce-checkout form.checkout .form-row input.input-text,
.woocommerce-checkout form.checkout .form-row select,
.woocommerce-checkout form.checkout .form-row textarea {
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 14px 16px;
	font-size: 15px;
	color: #334155;
	transition: all 0.3s ease;
	width: 100%;
	box-sizing: border-box;
	box-shadow: none;
}

.woocommerce-checkout form.checkout .form-row input.input-text:focus,
.woocommerce-checkout form.checkout .form-row select:focus,
.woocommerce-checkout form.checkout .form-row textarea:focus {
	border-color: #3b82f6;
	/* Brand Primary Blue */
	background-color: #ffffff;
	outline: none;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.woocommerce-checkout form.checkout .form-row label {
	font-weight: 600;
	color: #475569;
	font-size: 14px;
	margin-bottom: 8px;
	display: block;
}

.woocommerce-checkout form.checkout .form-row label .required {
	color: #ef4444;
	text-decoration: none;
}

/* Section Headings */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f1f5f9;
}

/* Elevated Order Summary Card */
.woocommerce-checkout #order_review {
	background: #ffffff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
}

/* Modernized Order Table */
.woocommerce-checkout table.shop_table {
	border: none;
	border-radius: 0;
	margin-bottom: 24px;
	width: 100%;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	border-top: none;
	border-bottom: 1px solid #f1f5f9;
	padding: 16px 0;
	background: transparent;
}

.woocommerce-checkout table.shop_table th {
	font-weight: 600;
	color: #334155;
}

.woocommerce-checkout table.shop_table td.product-name {
	color: #0f172a;
	font-weight: 500;
}

.woocommerce-checkout table.shop_table td.product-total {
	font-weight: 700;
	color: #0f172a;
	text-align: right;
}

.woocommerce-checkout table.shop_table tfoot th,
.woocommerce-checkout table.shop_table tfoot td {
	border-bottom: 1px solid #f1f5f9;
}

.woocommerce-checkout table.shop_table tr.order-total th,
.woocommerce-checkout table.shop_table tr.order-total td {
	border-bottom: none;
	font-size: 18px;
	padding-top: 24px;
}

.woocommerce-checkout table.shop_table tr.order-total td {
	color: #3b82f6;
	/* Emphasize total with primary blue */
}

/* Payment Gateway Styling */
.woocommerce-checkout #payment {
	background: transparent;
	border-radius: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
	padding: 0;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 24px;
}

.woocommerce-checkout #payment ul.payment_methods li {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	list-style: none;
	transition: border-color 0.3s;
}

.woocommerce-checkout #payment ul.payment_methods li:focus-within {
	border-color: #3b82f6;
}

.woocommerce-checkout #payment div.payment_box {
	background: #ffffff;
	box-shadow: none;
	border-radius: 8px;
	padding: 16px;
	margin-top: 12px;
	color: #64748b;
	font-size: 14px;
	border: 1px solid #e2e8f0;
}

.woocommerce-checkout #payment div.payment_box::before {
	display: none;
	/* Hide default woo triangle */
}

/* Place Order Button */
.woocommerce-checkout #payment .place-order {
	padding: 0;
	margin-top: 0;
}

.woocommerce-checkout #payment #place_order {
	background-color: #3b82f6;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	border-radius: 12px;
	padding: 20px;
	width: 100%;
	border: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.woocommerce-checkout #payment #place_order:hover {
	background-color: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

/* Adjust coupon toggle */
.woocommerce-form-coupon-toggle .woocommerce-info {
	background: #f8fafc;
	border-top-color: #3b82f6;
	color: #334155;
	border-radius: 8px;
}

.woocommerce-form-coupon-toggle .woocommerce-info a {
	color: #3b82f6;
	font-weight: 700;
}

/* ------------------------------------- */
/* Elementor Cart Drawer Customization   */
/* ------------------------------------- */

/* Hide the quantity field in the cart drawer (Broad selectors to catch different plugins/versions) */
.elementor-menu-cart__product-quantity,
.elementor-menu-cart__main .quantity,
.elementor-menu-cart__product-details .quantity,
.woocommerce-mini-cart-item .quantity,
.woocommerce-mini-cart-item .qib-container,
.elementor-menu-cart__item-quantity,
.elementor-menu-cart__product .qty {
	display: none !important;
}

/* Hide the "View Cart" button */
.elementor-menu-cart__footer-buttons .elementor-button--view-cart,
.woocommerce-mini-cart__buttons .button:not(.checkout) {
	display: none !important;
}

/* Make the "Checkout" button full width and blue */
.elementor-menu-cart__footer-buttons .elementor-button--checkout,
.woocommerce-mini-cart__buttons .checkout {
	width: 100% !important;
	border-radius: 8px !important;
	padding: 16px !important;
	font-weight: 700 !important;
	background-color: #0066ff !important;
	color: #ffffff !important;
	text-align: center !important;
	display: block !important;
}

/* ------------------------------------- */
/* WooCommerce Order Received Page       */
/* ------------------------------------- */

/* Page Title Styling */
body.woocommerce-order-received .page-title,
body.woocommerce-order-received h1.entry-title,
body.woocommerce-order-received h1 {
	text-align: center !important;
	font-size: 42px !important;
	font-weight: 800 !important;
	color: #0f172a !important;
	margin-top: 40px !important;
	margin-bottom: 10px !important;
	letter-spacing: -0.5px;
}

.woocommerce-order {
	max-width: 900px;
	margin: 0px auto 60px;
	/* Reduced top margin since title has bottom margin */
	font-family: inherit;
}

/* Success Message */
.woocommerce-order>p.woocommerce-notice--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
	padding: 20px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 32px;
}

/* Top Overview List (CSS Grid for perfect alignment) */
.woocommerce-order ul.order_details {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 16px;
	padding: 0 !important;
	margin: 0 0 40px 0 !important;
	list-style: none;
	width: 100% !important;
}

/* Hide WooCommerce default clearfix pseudo-elements which break CSS Grid */
.woocommerce-order ul.order_details::before,
.woocommerce-order ul.order_details::after {
	display: none !important;
}

@media (min-width: 768px) {
	.woocommerce-order ul.order_details {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.woocommerce-order ul.order_details {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Make the 5th item (Payment Method) span the remaining space to align perfectly */
	.woocommerce-order ul.order_details li:last-child {
		grid-column: span 2;
	}
}

.woocommerce-order ul.order_details li {
	box-sizing: border-box !important;
	background: #f8fafc;
	border: 1px solid #e2e8f0 !important;
	border-radius: 12px;
	padding: 20px 24px !important;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	color: #64748b;
	float: none !important;
	margin: 0 !important;
	width: 100% !important;
}

.woocommerce-order ul.order_details li strong {
	display: block;
	margin-top: 8px;
	font-size: 16px;
	color: #0f172a;
	text-transform: none;
}

/* Order Details Heading */
.woocommerce-order h2 {
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 24px;
}

/* Elevated Order Details Table */
.woocommerce-order section.woocommerce-order-details {
	background: #ffffff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
	margin-bottom: 40px;
}

.woocommerce-order table.woocommerce-table--order-details {
	border: none !important;
	width: 100% !important;
	margin-bottom: 0 !important;
	border-collapse: collapse !important;
}

.woocommerce-order table.woocommerce-table--order-details th,
.woocommerce-order table.woocommerce-table--order-details td {
	border: none !important;
	/* Strip all theme borders */
	border-bottom: 1px solid #f1f5f9 !important;
	padding: 16px 8px !important;
	background: transparent !important;
}

.woocommerce-order table.woocommerce-table--order-details thead th {
	font-weight: 700;
	color: #475569;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #e2e8f0 !important;
}

.woocommerce-order table.woocommerce-table--order-details td.woocommerce-table__product-name {
	font-weight: 500;
	color: #0f172a;
}

.woocommerce-order table.woocommerce-table--order-details td.woocommerce-table__product-name a {
	color: #0f172a;
	text-decoration: none;
	font-weight: 600;
}

.woocommerce-order table.woocommerce-table--order-details td.woocommerce-table__product-name strong.product-quantity {
	color: #64748b;
	font-weight: 500;
}

.woocommerce-order table.woocommerce-table--order-details tfoot th,
.woocommerce-order table.woocommerce-table--order-details tfoot td {
	border-bottom: 1px solid #f1f5f9 !important;
	color: #334155;
	font-weight: 600;
}

.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child td {
	border-bottom: none !important;
	font-size: 18px;
	font-weight: 800;
	padding-top: 24px !important;
}

.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child td {
	color: #3b82f6 !important;
	/* Emphasize final total */
}

/* Customer Details (Billing/Shipping) */
.woocommerce-order section.woocommerce-customer-details {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.woocommerce-order section.woocommerce-customer-details>section {
	flex: 1 1 calc(50% - 12px);
	background: #f8fafc;
	border-radius: 12px;
	padding: 24px;
	border: 1px solid #e2e8f0;
}

@media (max-width: 767px) {
	.woocommerce-order section.woocommerce-customer-details>section {
		flex: 1 1 100%;
	}
}

.woocommerce-order section.woocommerce-customer-details h2 {
	font-size: 18px;
	margin-bottom: 16px;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 12px;
	margin-top: 0;
}

.woocommerce-order address {
	border: none !important;
	padding: 0 !important;
	font-style: normal;
	line-height: 1.8;
	color: #475569;
	background: transparent !important;
}

/* ------------------------------------- */
/* WooCommerce My Account Page Styling   */
/* ------------------------------------- */

/* Page Title Alignment */
.woocommerce-account .page-title,
.woocommerce-account h1.entry-title,
.woocommerce-account .elementor-heading-title {
	text-align: center;
	margin-bottom: 30px;
}

.woocommerce-account .woocommerce {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 15px;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none !important;
}

/* Sidebar Navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
	flex: 0 0 280px;
	max-width: 280px;
	width: 100%;
	box-sizing: border-box;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	padding: 20px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f1f5f9;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 15px 25px;
	color: #475569;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	color: #3b82f6;
	background-color: #f8fafc;
	padding-left: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
	color: #3b82f6;
	background-color: #eff6ff;
	font-weight: 600;
	border-left: 4px solid #3b82f6;
	padding-left: 21px;
	/* Adjust for border to keep text aligned */
}

/* Main Content Area */
.woocommerce-account .woocommerce-MyAccount-content {
	flex: 1;
	min-width: 0;
	box-sizing: border-box;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	padding: 30px;
}

/* Typography & Headings */
.woocommerce-account .woocommerce-MyAccount-content h2 {
	font-size: 24px;
	font-weight: 600;
	color: #1e293b;
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e2e8f0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
	color: #475569;
	line-height: 1.6;
}

.woocommerce-account .woocommerce-MyAccount-content a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
	text-decoration: underline;
}

/* Tables (Orders, Downloads) */
.woocommerce-account table.shop_table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.woocommerce-account table.shop_table thead {
	background-color: #f8fafc;
}

.woocommerce-account table.shop_table th {
	padding: 15px;
	text-align: left;
	font-weight: 600;
	color: #1e293b;
	border-bottom: 1px solid #e2e8f0;
}

.woocommerce-account table.shop_table td {
	padding: 15px;
	vertical-align: middle;
	border-bottom: 1px solid #e2e8f0;
	color: #475569;
}

.woocommerce-account table.shop_table tbody tr:last-child td {
	border-bottom: none;
}

.woocommerce-account table.shop_table tbody tr:hover {
	background-color: #f8fafc;
}

.woocommerce-account table.shop_table .button {
	background-color: #eff6ff;
	color: #3b82f6;
	border: 1px solid #bfdbfe;
	padding: 8px 16px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.woocommerce-account table.shop_table .button:hover {
	background-color: #3b82f6;
	color: #ffffff;
	border-color: #3b82f6;
	text-decoration: none;
}

/* Forms (Addresses, Account Details) */
.woocommerce-account .woocommerce-MyAccount-content form {
	margin-top: 20px;
}

.woocommerce-account .form-row {
	margin-bottom: 20px;
}

.woocommerce-account .form-row label {
	display: block;
	font-weight: 500;
	color: #1e293b;
	margin-bottom: 8px;
}

.woocommerce-account .form-row input[type="text"],
.woocommerce-account .form-row input[type="email"],
.woocommerce-account .form-row input[type="password"],
.woocommerce-account .form-row input[type="tel"],
.woocommerce-account .form-row select,
.woocommerce-account .form-row textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background-color: #ffffff;
	color: #0f172a;
	font-size: 15px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-account .form-row input:focus,
.woocommerce-account .form-row select:focus,
.woocommerce-account .form-row textarea:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.woocommerce-account fieldset {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
	background-color: #f8fafc;
}

.woocommerce-account fieldset legend {
	font-weight: 600;
	color: #1e293b;
	padding: 0 10px;
	font-size: 16px;
}

/* Submit Buttons */
.woocommerce-account .button[type="submit"],
.woocommerce-account .woocommerce-Button {
	background-color: #3b82f6;
	color: #ffffff;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.1s ease;
}

.woocommerce-account .button[type="submit"]:hover,
.woocommerce-account .woocommerce-Button:hover {
	background-color: #2563eb;
}

.woocommerce-account .button[type="submit"]:active,
.woocommerce-account .woocommerce-Button:active {
	transform: translateY(1px);
}

/* Addresses specific */
.woocommerce-account .u-columns.woocommerce-Addresses {
	display: flex;
	gap: 30px;
	margin-top: 20px;
}

.woocommerce-account .u-column1.col-1,
.woocommerce-account .u-column2.col-2 {
	flex: 1;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 25px;
}

.woocommerce-account .woocommerce-Address-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.woocommerce-account .woocommerce-Address-title h3 {
	margin: 0;
	font-size: 18px;
}

.woocommerce-account .woocommerce-Address-title .edit {
	font-size: 14px;
	background: #eff6ff;
	padding: 6px 12px;
	border-radius: 6px;
}

.woocommerce-account address {
	font-style: normal;
	line-height: 1.7;
	color: #475569;
}

/* Notices / Alerts */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-top: 4px solid #3b82f6;
	color: #1e293b;
	list-style: none;
}

.woocommerce-account .woocommerce-error {
	border-top-color: #ef4444;
}

.woocommerce-account .woocommerce-info {
	border-top-color: #0ea5e9;
}

/* Responsive Design */
@media (max-width: 768px) {
	.woocommerce-account .woocommerce {
		flex-direction: column;
		padding: 20px 15px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.woocommerce-account .u-columns.woocommerce-Addresses {
		flex-direction: column;
	}
}

/* ------------------------------------- */
/* Checkout Redesign V2: Minimalist UI   */
/* ------------------------------------- */

/* Checkout Page Background */
body.woocommerce-checkout {
	background-color: #f8fafc !important;
	font-family: 'Inter', sans-serif !important;
}

/* Block Checkout Container */
.wc-block-checkout {
	display: flex !important;
	flex-wrap: wrap !important;
	flex-direction: row-reverse !important;
	/* FLIP COLUMNS: Sidebar left, Main right */
	justify-content: space-between !important;
	gap: 30px !important;
	max-width: 1140px !important;
	margin: 0px auto !important;
	padding: 0 20px !important;
	align-items: flex-start !important;
	position: relative !important;
}

/* Right Side (Main Form) */
.wc-block-checkout__main {
	flex: 1 1 50% !important;
	max-width: 700px !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

/* Custom Ordering for Checkout Form Steps */
.wc-block-checkout__form {
	display: flex !important;
	flex-direction: column !important;
}

.wc-block-checkout__form>* {
	order: 10 !important;
	/* Default order for anything else */
}

.wc-block-components-checkout-step[data-step="payment"] {
	order: 1 !important;
	/* Move Payment to the very top */
}

.wc-block-components-checkout-step[data-step="contact-information"] {
	order: 2 !important;
}

.wc-block-components-checkout-step[data-step="shipping-address"] {
	order: 3 !important;
}

.wc-block-components-checkout-step[data-step="billing-address"] {
	order: 4 !important;
}

/* Hide the real Place Order button since we'll use a proxy */
.wc-block-components-checkout-place-order-button {
	display: none !important;
}

/* Style for our Proxy Button */
button.gx-custom-place-order {
	display: block !important;
}

/* Checkout Step Sections (Contact, Billing, etc.) */
.wc-block-components-checkout-step {
	background: #ffffff !important;
	border-radius: 12px !important;
	padding: 30px !important;
	margin-bottom: 24px !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
	border: 1px solid #e2e8f0 !important;
	transition: box-shadow 0.3s ease !important;
}

.wc-block-components-checkout-step:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02) !important;
}

/* Hide empty blocks causing blank space (Fallback for text-nodes/nbsp) */
.wp-block-woocommerce-checkout-shipping-method-block,
.wp-block-woocommerce-checkout-shipping-address-block {
	font-size: 0 !important;
	line-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}

/* Restore styles if the block actually contains elements */
.wp-block-woocommerce-checkout-shipping-method-block *,
.wp-block-woocommerce-checkout-shipping-address-block * {
	font-size: 15px;
	line-height: 1.5;
}

/* Ensure the inner step still has its bottom margin if it exists */
.wp-block-woocommerce-checkout-shipping-method-block>.wc-block-components-checkout-step,
.wp-block-woocommerce-checkout-shipping-address-block>.wc-block-components-checkout-step {
	margin-bottom: 24px !important;
}

/* Section Headings */
.wc-block-components-title {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #0f172a !important;
	margin-bottom: 24px !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
}

.wc-block-components-title::before {
	content: '';
	display: block;
	width: 4px;
	height: 18px;
	background: #0066ff;
	border-radius: 4px;
}

/* Input Fields (Modern Minimalist) */
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-text-input textarea {
	border-radius: 8px !important;
	border: 1px solid transparent !important;
	background-color: #f1f5f9 !important;
	color: #1e293b !important;
	padding: 22px 16px 8px !important;
	font-size: 15px !important;
	box-shadow: none !important;
	transition: all 0.2s ease !important;
}

/* Input Floating Labels */
.wc-block-components-text-input label,
.wc-block-components-combobox label {
	color: #64748b !important;
	font-weight: 500 !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-text-input textarea:focus {
	background-color: #ffffff !important;
	border-color: #0066ff !important;
	box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15) !important;
	outline: none !important;
}

/* Payment Methods Cards */
.wc-block-components-checkout-payment-method {
	background-color: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 8px !important;
	padding: 16px 20px !important;
	margin-bottom: 12px !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
	transition: all 0.2s ease !important;
}

.wc-block-components-checkout-payment-method:hover {
	border-color: #cbd5e1 !important;
	background-color: #f8fafc !important;
}

/* Selected Payment Method State */
.wc-block-components-radio-control input[type="radio"]:checked+label {
	font-weight: 600 !important;
	color: #0f172a !important;
}

.wc-block-components-checkout-payment-method:has(input[type="radio"]:checked) {
	border-color: #0066ff !important;
	background-color: #f0f6ff !important;
	box-shadow: 0 2px 8px rgba(0, 102, 255, 0.08) !important;
}

/* Left Side (Order Summary Unified Card) */
.wc-block-components-sidebar {
	flex: 1 1 45% !important;
	max-width: 500px !important;
	background: #ffffff !important;
	color: #1e293b !important;
	border-radius: 12px !important;
	padding: 30px !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
	border: 1px solid #e2e8f0 !important;
	margin-left: 0 !important;
	margin-bottom: 24px !important;
}

/* Payment Step positioned via JS */
.wc-block-components-checkout-step[data-step="payment"] {
	transition: top 0.3s ease;
}

/* Strip inner double borders for sidebar */
.wc-block-components-sidebar-layout,
.wc-block-components-totals-wrapper,
.wc-block-components-order-summary,
.wc-block-components-panel,
.wc-block-components-panel__content,
.wc-block-components-panel__button,
.wp-block-woocommerce-checkout-order-summary-block {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
}

.wc-block-components-sidebar-layout {
	padding: 0 !important;
	margin: 0 !important;
}

/* Order Item Rows */
.wc-block-components-order-summary-item {
	border-bottom: 1px solid #f1f5f9 !important;
	padding: 15px 0 !important;
}

.wc-block-components-order-summary-item__name,
.wc-block-components-order-summary-item__quantity {
	color: #475569 !important;
}

.wc-block-components-order-summary-item__total-price {
	color: #0f172a !important;
	font-weight: 600 !important;
}

/* Totals Items */
.wc-block-components-totals-item {
	padding: 12px 0 !important;
	border-bottom: 1px solid #f1f5f9 !important;
	color: #64748b !important;
	font-size: 15px !important;
}

.wc-block-components-totals-item__value {
	color: #0f172a !important;
	font-weight: 500 !important;
}

.wc-block-components-totals-item--total {
	color: #0f172a !important;
	font-weight: 700 !important;
	font-size: 22px !important;
	border-bottom: none !important;
	padding-top: 24px !important;
	margin-top: 10px !important;
	border-top: 2px dashed #e2e8f0 !important;
}

/* Coupon Apply Button */
.wc-block-components-totals-coupon__button {
	background: #f1f5f9 !important;
	color: #0066ff !important;
	font-weight: 600 !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 8px !important;
	transition: all 0.2s ease !important;
}

.wc-block-components-totals-coupon__button:hover {
	background: #e2e8f0 !important;
	color: #0055dd !important;
}

/* Place Order Button (Solid Premium Blue) */
.wc-block-components-checkout-place-order-button {
	background: #0066ff !important;
	color: #ffffff !important;
	border-radius: 8px !important;
	padding: 18px 24px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	letter-spacing: 0.5px !important;
	text-transform: none !important;
	width: 100% !important;
	transition: all 0.2s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2) !important;
}

.wc-block-components-checkout-place-order-button:hover {
	background: #005ce6 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3) !important;
}

/* Responsive */
@media (max-width: 991px) {
	.wc-block-checkout {
		flex-direction: column-reverse !important;
		/* Stack Sidebar above Main */
		gap: 24px !important;
	}

	.wc-block-components-sidebar {
		margin-left: 0 !important;
		max-width: 100% !important;
		width: 100% !important;
	}
}

/* Center align checkout page title */
body.woocommerce-checkout h1.entry-title,
body.woocommerce-checkout h1.page-title,
body.woocommerce-checkout .page-title,
body.woocommerce-checkout .elementor-heading-title,
body.woocommerce-checkout .elementor-widget-heading h1,
body.woocommerce-checkout .elementor-widget-heading h2 {
	text-align: center !important;
	width: 100% !important;
}

/* =========================================================
   Testimonials Slider Widget
   ========================================================= */

.gx-testimonials-wrapper {
	font-family: 'Inter', sans-serif;
	width: 100%;
	padding: 20px 0 40px;
	box-sizing: border-box;
}

/* Header */
.gx-ts-header {
	text-align: center;
	margin-bottom: 40px;
}

.gx-ts-subtitle {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #3b82f6;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}

.gx-ts-title {
	font-size: 36px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	line-height: 1.2;
}

/* Swiper slider */
.gx-testimonials-slider {
	width: 100%;
	overflow: hidden;
	padding-bottom: 40px !important;
}

.gx-testimonials-slider .swiper-wrapper {
	align-items: stretch;
}

.gx-testimonials-slider .swiper-slide {
	height: auto;
	display: flex;
}

/* Card */
.gx-ts-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gx-ts-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Stars */
.gx-ts-stars {
	display: flex;
	gap: 4px;
}

.gx-star-filled {
	fill: #3b82f6;
	color: #3b82f6;
}

.gx-star-empty {
	fill: none;
	stroke: #3b82f6;
	color: #3b82f6;
}

/* Review text */
.gx-ts-review {
	font-size: 15px;
	color: #64748b;
	line-height: 1.65;
	flex-grow: 1;
	margin: 0;
}

/* Author row */
.gx-ts-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
}

.gx-ts-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #e2e8f0;
}

.gx-ts-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gx-ts-author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gx-ts-name {
	font-size: 15px;
	font-weight: 600;
	color: #0f172a;
}

.gx-ts-designation {
	font-size: 13px;
	color: #94a3b8;
}

/* Swiper Pagination Dots */
.gx-testimonials-slider .swiper-pagination {
	bottom: 0;
}

.gx-testimonials-slider .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #cbd5e1;
	opacity: 1;
	transition: all 0.3s ease;
}

.gx-testimonials-slider .swiper-pagination-bullet-active {
	background: #3b82f6;
	width: 24px;
	border-radius: 4px;
}

/* Editor preview grid (no Swiper) */
.gx-ts-editor-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gx-ts-editor-card {
	display: flex;
}

@media (max-width: 768px) {
	.gx-ts-editor-grid {
		grid-template-columns: 1fr;
	}

	.gx-ts-title {
		font-size: 28px;
	}
}

/* =========================================================
   CTA Banner Widget
   ========================================================= */

.gx-cta-banner {
	--gx-cta-bg-start: #1e2f97;
	--gx-cta-bg-end: #0d1066;
	background: linear-gradient(135deg, var(--gx-cta-bg-start) 0%, var(--gx-cta-bg-end) 100%);
	border-radius: 16px;
	padding: 50px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

/* Left content */
.gx-cta-left {
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 2;
}

.gx-cta-title {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px 0;
	line-height: 1.25;
}

.gx-cta-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.65;
	margin: 0;
	max-width: 420px;
}

/* Right button */
.gx-cta-right {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.gx-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #ffffff;
	color: #1e2f97;
	font-size: 15px;
	font-weight: 600;
	padding: 18px 32px;
	border-radius: 10px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gx-cta-btn:hover {
	background-color: #f0f4ff;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	color: #1e2f97;
}

.gx-cta-arrow {
	font-size: 18px;
	transition: transform 0.2s ease;
}

.gx-cta-btn:hover .gx-cta-arrow {
	transform: translateX(4px);
}

/* Decorative dots grid */
.gx-cta-dots {
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
	pointer-events: none;
	opacity: 0.3;
	z-index: 1;
}

.gx-cta-dot {
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: block;
}

/* Responsive */
@media (max-width: 768px) {
	.gx-cta-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 36px 28px;
		gap: 28px;
	}

	.gx-cta-title {
		font-size: 22px;
	}

	.gx-cta-right {
		width: 100%;
	}

	.gx-cta-btn {
		width: 100%;
		justify-content: center;
	}

	.gx-cta-dots {
		display: none;
	}
}