/* ==========================================================================
   QRvibe Public Styles
   Design System: Rubik / Rajdhani / Roboto — Cyan #00F2FF — Purple #A020F0
   ========================================================================== */

:root {
	--qrvibe-bg: #F5F5F7;
	--qrvibe-cyan: #00F2FF;
	--qrvibe-cyan-hover: #00d4e0;
	--qrvibe-purple: #A020F0;
	--qrvibe-white: #FFFFFF;
	--qrvibe-dark: #1A1A2E;
	--qrvibe-gray: #6B7280;
	--qrvibe-gray-light: #E5E7EB;
	--qrvibe-success: #10B981;
	--qrvibe-success-bg: #ECFDF5;
	--qrvibe-error: #EF4444;
	--qrvibe-error-bg: #FEF2F2;
	--qrvibe-warning: #F59E0B;
	--qrvibe-radius: 8px;
	--qrvibe-radius-sm: 6px;
	--qrvibe-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	--qrvibe-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
	--qrvibe-transition: 0.2s ease;
}

/* ==========================================================================
   Site Header — replaces Astra header on non-Canvas pages
   Three-column layout: Logo | Primary Menu | Auth Menu
   ========================================================================== */

.qrvibe-site-header {
	background: #4783e2;
	width: 100%;
	z-index: 999;
	font-family: 'Rubik', sans-serif;
}

.qrvibe-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 24px;
	gap: 24px;
}

.qrvibe-header-col {
	display: flex;
	align-items: center;
}

.qrvibe-header-col.qrvibe-header-logo {
	flex-shrink: 0;
}

.qrvibe-header-col.qrvibe-header-logo a {
	display: flex;
	align-items: center;
}

.qrvibe-header-logo-img {
	height: 45px;
	width: auto;
	display: block;
}

.qrvibe-header-col.qrvibe-header-nav {
	flex: 1;
	justify-content: center;
}

.qrvibe-header-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.qrvibe-header-menu .menu-item {
	list-style: none;
}

.qrvibe-header-menu .menu-item > a {
	font-family: 'Rubik', sans-serif;
	font-size: 22px;
	font-weight: 500;
	color: #FFFFFF;
	text-decoration: none;
	padding: 8px 16px;
	letter-spacing: 0.8px;
	position: relative;
	transition: color var(--qrvibe-transition);
	white-space: nowrap;
}

.qrvibe-header-menu .menu-item > a:hover,
.qrvibe-header-menu .menu-item.current-menu-item > a {
	color: #FFFFFF;
}

.qrvibe-header-menu .menu-item > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 16px;
	right: 16px;
	height: 2px;
	background: #FFFFFF;
	transform: scaleX(0);
	transition: transform var(--qrvibe-transition);
}

.qrvibe-header-menu .menu-item > a:hover::after,
.qrvibe-header-menu .menu-item.current-menu-item > a::after {
	transform: scaleX(1);
}

/* Right column: Auth menu (grey button style) */
.qrvibe-header-col.qrvibe-header-auth {
	flex-shrink: 0;
}

.qrvibe-header-auth-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #9ca3af;
	border-radius: var(--qrvibe-radius-sm);
	padding: 10px 20px;
}

.qrvibe-header-auth-link {
	font-family: 'Rubik', sans-serif;
	font-size: 22px;
	font-weight: 500;
	color: #FFFFFF;
	text-decoration: none;
	transition: opacity var(--qrvibe-transition);
}

.qrvibe-header-auth-link:hover {
	color: #FFFFFF;
	opacity: 0.9;
}

.qrvibe-header-auth-sep {
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	user-select: none;
}

/* Hide Astra's default header */
.ast-above-header-wrap,
.ast-main-header-wrap,
.ast-below-header-wrap,
#ast-desktop-header,
.ast-mobile-header-wrap {
	display: none !important;
}

@media (max-width: 767px) {
	.qrvibe-header-inner {
		flex-wrap: wrap;
		gap: 12px;
	}

	.qrvibe-header-col.qrvibe-header-nav {
		width: 100%;
		order: 3;
		justify-content: flex-start;
		overflow-x: auto;
	}

	.qrvibe-header-menu {
		gap: 4px;
	}

	.qrvibe-header-menu .menu-item > a {
		font-size: 16px;
		padding: 6px 10px;
	}

	.qrvibe-header-auth-link {
		font-size: 16px;
	}

	.qrvibe-header-auth-btn {
		padding: 8px 14px;
	}
}

/* Layout
   ========================================================================== */

.qrvibe-auth-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 40px 16px;
	font-family: 'Rubik', sans-serif;
	color: var(--qrvibe-dark);
}

.qrvibe-auth-card {
	width: 100%;
	max-width: 460px;
	background: var(--qrvibe-white);
	border-radius: var(--qrvibe-radius);
	box-shadow: var(--qrvibe-shadow);
	padding: 40px 36px;
	margin-bottom: 24px;
}

.qrvibe-account-wrap .qrvibe-auth-card {
	max-width: 540px;
}

/* Header
   ========================================================================== */

.qrvibe-auth-header {
	text-align: center;
	margin-bottom: 28px;
}

.qrvibe-auth-header h2,
.qrvibe-auth-header h3 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	color: var(--qrvibe-dark);
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.qrvibe-auth-header h2 {
	font-size: 28px;
}

.qrvibe-auth-header h3 {
	font-size: 22px;
}

.qrvibe-auth-subtitle {
	font-size: 15px;
	color: var(--qrvibe-gray);
	margin: 0;
	line-height: 1.5;
}

/* Alerts
   ========================================================================== */

.qrvibe-alert {
	padding: 14px 18px;
	border-radius: var(--qrvibe-radius-sm);
	margin-bottom: 24px;
	font-size: 14px;
	line-height: 1.5;
}

.qrvibe-alert p {
	margin: 0;
}

.qrvibe-alert p + p {
	margin-top: 6px;
}

.qrvibe-alert-success {
	background: var(--qrvibe-success-bg);
	color: #065F46;
	border-left: 4px solid var(--qrvibe-success);
}

.qrvibe-alert-error {
	background: var(--qrvibe-error-bg);
	color: #991B1B;
	border-left: 4px solid var(--qrvibe-error);
}

/* Form elements
   ========================================================================== */

.qrvibe-auth-form {
	width: 100%;
}

.qrvibe-form-group {
	margin-bottom: 20px;
}

.qrvibe-form-group label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--qrvibe-dark);
	margin-bottom: 6px;
	font-family: 'Roboto', sans-serif;
}

.qrvibe-input {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	font-family: 'Rubik', sans-serif;
	color: var(--qrvibe-dark);
	background: var(--qrvibe-bg);
	border: 2px solid transparent;
	border-radius: var(--qrvibe-radius-sm);
	outline: none;
	transition: border-color var(--qrvibe-transition), box-shadow var(--qrvibe-transition);
	box-sizing: border-box;
}

.qrvibe-input:focus {
	border-color: var(--qrvibe-cyan);
	box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.15);
}

.qrvibe-input::placeholder {
	color: #9CA3AF;
}

/* Password field with toggle */

.qrvibe-password-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.qrvibe-password-wrap .qrvibe-input {
	padding-right: 48px;
}

.qrvibe-toggle-password {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--qrvibe-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color var(--qrvibe-transition);
}

.qrvibe-toggle-password:hover {
	color: var(--qrvibe-dark);
}

.qrvibe-eye-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

.qrvibe-toggle-password.active .qrvibe-eye-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'/%3E%3Cline x1='1' y1='1' x2='23' y2='23'/%3E%3C/svg%3E");
}

/* Password strength indicator */

.qrvibe-password-strength {
	margin-top: 8px;
}

.qrvibe-strength-bar {
	height: 4px;
	border-radius: 2px;
	background: var(--qrvibe-gray-light);
	overflow: hidden;
	margin-bottom: 4px;
}

.qrvibe-strength-fill {
	height: 100%;
	border-radius: 2px;
	transition: width 0.3s ease, background-color 0.3s ease;
	width: 0;
}

.qrvibe-strength-fill[data-strength="weak"] {
	width: 33%;
	background-color: var(--qrvibe-error);
}

.qrvibe-strength-fill[data-strength="medium"] {
	width: 66%;
	background-color: var(--qrvibe-warning);
}

.qrvibe-strength-fill[data-strength="strong"] {
	width: 100%;
	background-color: var(--qrvibe-success);
}

.qrvibe-strength-text {
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
	color: var(--qrvibe-gray);
}

/* Remember me row */

.qrvibe-remember-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.qrvibe-checkbox-label {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	cursor: pointer;
}

.qrvibe-checkbox-label input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: var(--qrvibe-cyan);
	cursor: pointer;
}

/* Buttons
   ========================================================================== */

.qrvibe-btn {
	display: block;
	width: 100%;
	padding: 14px 24px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Rubik', sans-serif;
	border: 2px solid transparent;
	border-radius: var(--qrvibe-radius-sm);
	cursor: pointer;
	text-align: center;
	transition: background-color var(--qrvibe-transition),
	            border-color var(--qrvibe-transition),
	            box-shadow var(--qrvibe-transition),
	            transform var(--qrvibe-transition);
	line-height: 1.4;
}

.qrvibe-btn:hover {
	transform: translateY(-1px);
}

.qrvibe-btn:active {
	transform: translateY(0);
}

.qrvibe-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.qrvibe-btn-primary {
	background: var(--qrvibe-cyan);
	color: var(--qrvibe-dark);
	border-color: var(--qrvibe-cyan);
}

.qrvibe-btn-primary:hover {
	background: var(--qrvibe-cyan-hover);
	border-color: var(--qrvibe-cyan-hover);
	box-shadow: 0 4px 16px rgba(0, 242, 255, 0.3);
}

.qrvibe-btn-danger {
	background: transparent;
	color: var(--qrvibe-error);
	border-color: var(--qrvibe-error);
}

.qrvibe-btn-danger:hover {
	background: var(--qrvibe-error);
	color: var(--qrvibe-white);
	box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* Fieldsets
   ========================================================================== */

.qrvibe-fieldset {
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: var(--qrvibe-radius-sm);
	padding: 24px 20px;
	margin: 0 0 24px 0;
}

.qrvibe-fieldset legend {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--qrvibe-dark);
	padding: 0 8px;
}

.qrvibe-field-hint {
	font-size: 13px;
	color: var(--qrvibe-gray);
	margin: 0 0 16px 0;
}

/* Danger zone */

.qrvibe-danger-zone {
	border: 2px solid var(--qrvibe-error);
}

.qrvibe-danger-zone .qrvibe-auth-header h3 {
	color: var(--qrvibe-error);
}

/* Links
   ========================================================================== */

.qrvibe-auth-links {
	text-align: center;
	max-width: 460px;
	width: 100%;
}

.qrvibe-auth-links p {
	font-size: 14px;
	color: var(--qrvibe-gray);
	margin: 0;
}

.qrvibe-link {
	color: var(--qrvibe-cyan);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--qrvibe-transition);
}

.qrvibe-link:hover {
	color: var(--qrvibe-purple);
	text-decoration: underline;
}

/* Honeypot — must be invisible */

.qrvibe-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

/* Nav items — works in both Astra header and Elementor Nav Menu widget
   ========================================================================== */

.qrvibe-nav-item:first-of-type {
	margin-left: auto !important;
}

.qrvibe-nav-item {
	display: flex !important;
	align-items: center;
}

.qrvibe-nav-item > a {
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	white-space: nowrap;
	text-decoration: none;
}

.qrvibe-nav-signup > a {
	background: var(--qrvibe-cyan) !important;
	color: var(--qrvibe-dark) !important;
	border-radius: var(--qrvibe-radius-sm);
	padding: 8px 20px !important;
	font-weight: 600;
	transition: background-color var(--qrvibe-transition), box-shadow var(--qrvibe-transition);
}

.qrvibe-nav-signup > a:hover {
	background: var(--qrvibe-cyan-hover) !important;
	box-shadow: 0 2px 12px rgba(0, 242, 255, 0.3);
}

/* Elementor Nav Menu widget context */
.elementor-nav-menu .qrvibe-nav-item > a {
	padding: 0 20px;
}

.elementor-nav-menu .qrvibe-nav-signup > a {
	margin-left: 8px;
}

/* ==========================================================================
   My Account Dashboard
   ========================================================================== */

.qrvibe-dashboard {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 20px;
	font-family: 'Rubik', sans-serif;
}

/* Sidebar + Main layout */
.qrvibe-dash-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	align-items: start;
}

/* Sidebar */
.qrvibe-dash-sidebar {
	background: var(--qrvibe-white);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: 12px;
	padding: 24px 16px;
	position: sticky;
	top: 100px;
}

.qrvibe-dash-profile {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 20px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--qrvibe-gray-light);
}

.qrvibe-dash-avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.qrvibe-dash-username {
	font-family: 'Rajdhani', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--qrvibe-dark);
	margin: 0;
	line-height: 1.2;
}

.qrvibe-dash-user-info {
	min-width: 0;
}

.qrvibe-badge--free-plan {
	background: var(--qrvibe-bg);
	color: var(--qrvibe-gray);
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 10px;
	font-weight: 600;
	display: inline-block;
	margin-top: 2px;
}

.qrvibe-badge--pro-plan {
	background: #F3E8FF;
	color: #7C3AED;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 10px;
	font-weight: 600;
	display: inline-block;
	margin-top: 2px;
}

.qrvibe-badge--business-plan {
	background: #E0FFFE;
	color: #0E7490;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 10px;
	font-weight: 600;
	display: inline-block;
	margin-top: 2px;
}

.qrvibe-badge--premium-plan {
	background: #EEF2FF;
	color: #4338CA;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 10px;
	font-weight: 600;
	display: inline-block;
	margin-top: 2px;
}

/* Sidebar nav */
.qrvibe-dash-nav {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.qrvibe-dash-nav-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--qrvibe-gray);
	text-decoration: none;
	transition: background var(--qrvibe-transition), color var(--qrvibe-transition);
}

.qrvibe-dash-nav-item:hover {
	background: var(--qrvibe-bg);
	color: var(--qrvibe-dark);
}

.qrvibe-dash-nav-item--active {
	background: rgba(0, 242, 255, 0.08);
	color: var(--qrvibe-dark);
	font-weight: 600;
}

.qrvibe-dash-nav-item--active .qrvibe-dash-nav-icon svg {
	stroke: var(--qrvibe-cyan);
}

.qrvibe-dash-nav-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.qrvibe-dash-nav-count {
	margin-left: auto;
	background: var(--qrvibe-bg);
	color: var(--qrvibe-gray);
	font-size: 12px;
	font-weight: 600;
	padding: 1px 8px;
	border-radius: 10px;
}

.qrvibe-dash-sidebar-footer {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--qrvibe-gray-light);
}

.qrvibe-dash-logout {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	font-size: 13px;
	color: var(--qrvibe-gray);
	text-decoration: none;
	border-radius: 6px;
	transition: background var(--qrvibe-transition), color var(--qrvibe-transition);
}

.qrvibe-dash-logout:hover {
	background: var(--qrvibe-error-bg);
	color: var(--qrvibe-error);
}

/* Main content */
.qrvibe-dash-main {
	min-width: 0;
}

.qrvibe-dash-page-header {
	margin-bottom: 28px;
}

.qrvibe-dash-page-header h1 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--qrvibe-dark);
	margin: 0 0 4px;
}

.qrvibe-dash-page-sub {
	font-size: 14px;
	color: var(--qrvibe-gray);
	margin: 0;
}

/* Stats grid */
.qrvibe-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 32px;
}

.qrvibe-stat-card {
	background: var(--qrvibe-white);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	transition: box-shadow var(--qrvibe-transition);
}

.qrvibe-stat-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.qrvibe-stat-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.qrvibe-stat-card--codes .qrvibe-stat-icon {
	background: rgba(0, 242, 255, 0.1);
	color: var(--qrvibe-cyan);
}
.qrvibe-stat-card--codes .qrvibe-stat-icon svg { stroke: #0891B2; }

.qrvibe-stat-card--scans .qrvibe-stat-icon {
	background: rgba(160, 32, 240, 0.08);
}
.qrvibe-stat-card--scans .qrvibe-stat-icon svg { stroke: var(--qrvibe-purple); }

.qrvibe-stat-card--unique .qrvibe-stat-icon {
	background: rgba(16, 185, 129, 0.08);
}
.qrvibe-stat-card--unique .qrvibe-stat-icon svg { stroke: var(--qrvibe-success); }

.qrvibe-stat-card--plan .qrvibe-stat-icon {
	background: rgba(245, 158, 11, 0.08);
}
.qrvibe-stat-card--plan .qrvibe-stat-icon svg { stroke: var(--qrvibe-warning); }

.qrvibe-stat-data {
	min-width: 0;
}

.qrvibe-stat-number {
	display: block;
	font-family: 'Rajdhani', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--qrvibe-dark);
	line-height: 1.1;
}

.qrvibe-stat-label {
	display: block;
	font-size: 12px;
	color: var(--qrvibe-gray);
	margin-top: 2px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

/* Dashboard sections */
.qrvibe-dash-section {
	margin-bottom: 32px;
}

.qrvibe-dash-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.qrvibe-dash-section-header h2 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--qrvibe-dark);
	margin: 0;
}

/* QR Code Cards */
.qrvibe-qr-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.qrvibe-qr-cards--full {
	grid-template-columns: 1fr;
}

.qrvibe-qr-card {
	background: var(--qrvibe-white);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: 10px;
	padding: 20px;
	transition: box-shadow var(--qrvibe-transition), border-color var(--qrvibe-transition);
}

.qrvibe-qr-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border-color: var(--qrvibe-cyan);
}

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

.qrvibe-qr-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.qrvibe-qr-card-title strong {
	font-size: 15px;
	font-weight: 600;
	color: var(--qrvibe-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.qrvibe-qr-card-date {
	font-size: 12px;
	color: var(--qrvibe-gray);
	white-space: nowrap;
	flex-shrink: 0;
}

.qrvibe-qr-card-url {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--qrvibe-gray);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 14px;
}

.qrvibe-qr-card-url svg {
	flex-shrink: 0;
}

.qrvibe-qr-card-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
}

.qrvibe-qr-card-detail {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.qrvibe-qr-card-detail-label {
	font-size: 11px;
	color: var(--qrvibe-gray);
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-weight: 600;
}

.qrvibe-qr-card-tracking-url code {
	background: var(--qrvibe-bg);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	word-break: break-all;
}

.qrvibe-qr-card-stats {
	display: flex;
	gap: 20px;
	padding: 12px 0;
	border-top: 1px solid var(--qrvibe-gray-light);
	border-bottom: 1px solid var(--qrvibe-gray-light);
	margin-bottom: 14px;
}

.qrvibe-qr-card-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.qrvibe-qr-card-stat-value {
	font-family: 'Rajdhani', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--qrvibe-dark);
	line-height: 1;
}

.qrvibe-qr-card-stat-label {
	font-size: 11px;
	color: var(--qrvibe-gray);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.qrvibe-qr-card-code {
	background: var(--qrvibe-bg);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 14px;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	color: var(--qrvibe-dark);
}

.qrvibe-qr-card-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.qrvibe-qr-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	font-size: 12px;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	color: var(--qrvibe-gray);
	background: var(--qrvibe-bg);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--qrvibe-transition), color var(--qrvibe-transition), border-color var(--qrvibe-transition);
}

.qrvibe-qr-action-btn:hover {
	background: var(--qrvibe-white);
	color: var(--qrvibe-dark);
	border-color: var(--qrvibe-cyan);
}

.qrvibe-qr-action-btn.qrvibe-copied {
	background: var(--qrvibe-success-bg);
	color: var(--qrvibe-success);
	border-color: var(--qrvibe-success);
}

/* Badges */
.qrvibe-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.qrvibe-badge--active {
	background: var(--qrvibe-success-bg);
	color: var(--qrvibe-success);
}

.qrvibe-badge--paused {
	background: #FEF3C7;
	color: var(--qrvibe-warning);
}

/* Empty state */
.qrvibe-dash-empty {
	text-align: center;
	padding: 60px 20px;
	background: var(--qrvibe-white);
	border: 2px dashed var(--qrvibe-gray-light);
	border-radius: 12px;
}

.qrvibe-dash-empty-icon {
	margin-bottom: 16px;
	color: var(--qrvibe-gray-light);
}

.qrvibe-dash-empty-icon svg {
	stroke: var(--qrvibe-gray-light);
}

.qrvibe-dash-empty h2 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 22px;
	color: var(--qrvibe-dark);
	margin: 0 0 8px;
}

.qrvibe-dash-empty p {
	color: var(--qrvibe-gray);
	margin: 0 0 24px;
}

/* Dashboard-scoped auth cards (profile tab) */
.qrvibe-dashboard .qrvibe-auth-card,
.qrvibe-dashboard-wrap .qrvibe-auth-card {
	margin-bottom: 24px;
}

/* QR card visual layout (image + meta side by side) */
.qrvibe-qr-card-visual {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 14px;
}

.qrvibe-qr-card-img {
	border-radius: 8px;
	border: 1px solid var(--qrvibe-gray-light);
	flex-shrink: 0;
	background: var(--qrvibe-white);
}

.qrvibe-qr-card-meta {
	flex: 1;
	min-width: 0;
}

/* Plan change link - matches aqr-btn / DOWNLOAD QR CODE style */
.qrvibe-plan-change-link {
	display: inline-block;
	background: #4783E2;
	border: none;
	color: #fff;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 20px;
	margin-top: 4px;
	border-radius: var(--qrvibe-radius-sm);
	transition: background var(--qrvibe-transition), box-shadow var(--qrvibe-transition), transform var(--qrvibe-transition);
}

.qrvibe-plan-change-link:hover {
	background: #3a6fc7;
	box-shadow: 0 4px 16px rgba(71, 131, 226, 0.35);
	transform: translateY(-1px);
}

/* Primary action button variant */
.qrvibe-qr-action-btn--primary {
	background: rgba(0, 242, 255, 0.08) !important;
	color: #0891B2 !important;
	border-color: rgba(0, 242, 255, 0.3) !important;
	font-weight: 600 !important;
}

.qrvibe-qr-action-btn--primary:hover {
	background: rgba(0, 242, 255, 0.15) !important;
	border-color: var(--qrvibe-cyan) !important;
}

/* Back link on scan detail page */
.qrvibe-back-link {
	display: inline-block;
	font-size: 13px;
	color: var(--qrvibe-gray);
	text-decoration: none;
	margin-bottom: 8px;
	transition: color var(--qrvibe-transition);
}

.qrvibe-back-link:hover {
	color: var(--qrvibe-dark);
}

/* Scan detail table */
.qrvibe-qr-table-wrap {
	overflow-x: auto;
}

.qrvibe-qr-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--qrvibe-white);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: var(--qrvibe-radius);
}

.qrvibe-qr-table thead {
	background: var(--qrvibe-bg);
}

.qrvibe-qr-table th {
	font-size: 12px;
	font-weight: 600;
	color: var(--qrvibe-gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--qrvibe-gray-light);
}

.qrvibe-qr-table td {
	padding: 12px 16px;
	font-size: 13px;
	color: var(--qrvibe-dark);
	border-bottom: 1px solid var(--qrvibe-gray-light);
}

.qrvibe-qr-table tbody tr:last-child td {
	border-bottom: none;
}

.qrvibe-qr-table tbody tr:hover {
	background: rgba(0, 242, 255, 0.03);
}

/* Billing card enhancements */
.qrvibe-billing-card-header {
	margin-bottom: 20px;
}

.qrvibe-billing-details {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.qrvibe-billing-detail {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.qrvibe-billing-detail-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--qrvibe-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.qrvibe-billing-detail-icon svg {
	stroke: var(--qrvibe-gray);
}

.qrvibe-billing-free-cta {
	padding: 20px 0 0;
}

.qrvibe-billing-free-cta p {
	color: var(--qrvibe-gray);
	margin: 0 0 16px;
}

/* Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.qrvibe-dash-layout {
		grid-template-columns: 1fr;
	}

	.qrvibe-dash-sidebar {
		position: static;
	}

	.qrvibe-dash-nav {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 4px;
	}

	.qrvibe-dash-nav-item {
		padding: 8px 14px;
	}

	.qrvibe-dash-sidebar-footer {
		display: none;
	}

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

@media (max-width: 767px) {
	.qrvibe-auth-card {
		padding: 28px 20px;
	}

	.qrvibe-auth-header h2 {
		font-size: 24px;
	}

	.qrvibe-remember-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.qrvibe-fieldset {
		padding: 16px 14px;
	}

	.qrvibe-stats-grid {
		grid-template-columns: 1fr;
	}

	.qrvibe-qr-cards {
		grid-template-columns: 1fr;
	}

	.qrvibe-qr-card-stats {
		flex-wrap: wrap;
	}

	.qrvibe-billing-details {
		grid-template-columns: 1fr;
	}

	.qrvibe-dash-profile {
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================================================
   Pricing Plans Popup
   ========================================================================== */

.qrvibe-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: 'Rubik', sans-serif;
}

.qrvibe-popup-overlay[hidden] {
	display: none;
}

.qrvibe-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 46, 0.7);
	backdrop-filter: blur(4px);
}

.qrvibe-popup-container {
	position: relative;
	background: var(--qrvibe-white);
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
	max-width: 920px;
	width: 100%;
	padding: 48px 40px 40px;
	max-height: 90vh;
	overflow-y: auto;
	animation: qrvibe-popup-in 0.25s ease-out;
}

@keyframes qrvibe-popup-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.qrvibe-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 28px;
	color: var(--qrvibe-gray);
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background var(--qrvibe-transition), color var(--qrvibe-transition);
	line-height: 1;
}

.qrvibe-popup-close:hover {
	background: var(--qrvibe-bg);
	color: var(--qrvibe-dark);
}

.qrvibe-popup-header {
	text-align: center;
	margin-bottom: 36px;
}

.qrvibe-popup-header h2 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 32px;
	color: var(--qrvibe-dark);
	margin: 0 0 8px;
}

.qrvibe-popup-subtitle {
	font-size: 15px;
	color: var(--qrvibe-gray);
	margin: 0;
}

/* Plans grid */
.qrvibe-plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: start;
}

.qrvibe-plans-grid--two {
	grid-template-columns: repeat(2, 1fr);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

/* Individual plan card */
.qrvibe-plan-card {
	position: relative;
	background: var(--qrvibe-white);
	border: 2px solid var(--qrvibe-gray-light);
	border-radius: 12px;
	padding: 32px 24px 28px;
	text-align: center;
	transition: border-color var(--qrvibe-transition), box-shadow var(--qrvibe-transition);
}

.qrvibe-plan-card:hover {
	border-color: var(--qrvibe-cyan);
	box-shadow: 0 8px 32px rgba(0, 242, 255, 0.1);
}

.qrvibe-plan-card--featured {
	border-color: var(--qrvibe-purple);
	box-shadow: 0 8px 40px rgba(160, 32, 240, 0.15);
	transform: scale(1.04);
}

.qrvibe-plan-card--featured:hover {
	border-color: var(--qrvibe-purple);
	box-shadow: 0 12px 48px rgba(160, 32, 240, 0.2);
}

.qrvibe-plan-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--qrvibe-purple);
	color: var(--qrvibe-white);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 16px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.qrvibe-plan-header {
	margin-bottom: 24px;
}

.qrvibe-plan-name {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: var(--qrvibe-dark);
	margin: 0 0 8px;
}

.qrvibe-plan-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

.qrvibe-price-amount {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 42px;
	color: var(--qrvibe-dark);
	line-height: 1;
}

.qrvibe-price-period {
	font-size: 15px;
	color: var(--qrvibe-gray);
}

/* Features list */
.qrvibe-plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	text-align: left;
}

.qrvibe-plan-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 14px;
	color: var(--qrvibe-dark);
	border-bottom: 1px solid var(--qrvibe-bg);
}

.qrvibe-plan-features li:last-child {
	border-bottom: none;
}

.qrvibe-feature-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}

.qrvibe-feature-included .qrvibe-feature-icon {
	background: var(--qrvibe-success-bg);
	color: var(--qrvibe-success);
}

.qrvibe-feature-excluded .qrvibe-feature-icon {
	background: var(--qrvibe-error-bg);
	color: var(--qrvibe-error);
}

.qrvibe-feature-excluded {
	color: var(--qrvibe-gray);
}

/* Plan buttons */
.qrvibe-plan-btn {
	width: 100%;
	padding: 12px 20px;
	font-family: 'Rubik', sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	border-radius: var(--qrvibe-radius-sm);
	cursor: pointer;
	transition: background var(--qrvibe-transition), box-shadow var(--qrvibe-transition), transform var(--qrvibe-transition);
}

.qrvibe-plan-btn--free {
	background: var(--qrvibe-bg);
	color: var(--qrvibe-dark);
	border: 2px solid var(--qrvibe-gray-light);
}

.qrvibe-plan-btn--free:hover {
	background: var(--qrvibe-gray-light);
	box-shadow: none;
}

.qrvibe-plan-btn--pro {
	background: var(--qrvibe-purple);
	color: var(--qrvibe-white);
	border: 2px solid var(--qrvibe-purple);
}

.qrvibe-plan-btn--pro:hover {
	box-shadow: 0 4px 20px rgba(160, 32, 240, 0.35);
}

.qrvibe-plan-btn--premium {
	background: var(--qrvibe-purple);
	color: var(--qrvibe-white);
	border: 2px solid var(--qrvibe-purple);
}

.qrvibe-plan-btn--premium:hover {
	box-shadow: 0 4px 20px rgba(160, 32, 240, 0.35);
}

.qrvibe-plan-btn--business {
	background: var(--qrvibe-bg);
	color: var(--qrvibe-dark);
	border: 2px solid var(--qrvibe-gray-light);
}

.qrvibe-plan-btn--business:hover {
	background: var(--qrvibe-gray-light);
	box-shadow: none;
}

/* Plan info banner on registration page */
.qrvibe-plan-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: var(--qrvibe-radius-sm);
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 500;
}

.qrvibe-plan-banner--pro {
	background: #F3E8FF;
	color: #6B21A8;
	border-left: 4px solid var(--qrvibe-purple);
}

.qrvibe-plan-banner--business {
	background: #E0FFFE;
	color: #0E7490;
	border-left: 4px solid var(--qrvibe-cyan);
}

.qrvibe-plan-banner strong {
	font-weight: 700;
}

/* Billing tab — plan info card */
.qrvibe-billing-card {
	background: var(--qrvibe-white);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: var(--qrvibe-radius);
	padding: 32px;
}

.qrvibe-billing-plan-name {
	font-family: 'Rajdhani', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--qrvibe-dark);
	margin: 0 0 4px;
}

.qrvibe-billing-plan-name .qrvibe-badge {
	vertical-align: middle;
	margin-left: 8px;
	font-size: 11px;
}

.qrvibe-billing-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	margin: 24px 0;
}

.qrvibe-billing-detail-label {
	font-size: 12px;
	color: var(--qrvibe-gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.qrvibe-billing-detail-value {
	font-size: 16px;
	font-weight: 600;
	color: var(--qrvibe-dark);
}

/* Sidebar upgrade CTA button - matches aqr-btn / DOWNLOAD QR CODE style */
.qrvibe-sidebar-upgrade-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #4783E2;
	color: #fff;
	border: none;
	border-radius: var(--qrvibe-radius-sm);
	padding: 10px 20px;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 6px;
	transition: background var(--qrvibe-transition), box-shadow var(--qrvibe-transition), transform var(--qrvibe-transition);
	white-space: nowrap;
}

.qrvibe-sidebar-upgrade-btn:hover {
	background: #3a6fc7;
	box-shadow: 0 4px 16px rgba(71, 131, 226, 0.35);
	transform: translateY(-1px);
}

.qrvibe-sidebar-upgrade-btn svg {
	stroke: #fff;
}

/* Kebab (three-dots) menu */
.qrvibe-qr-card-header-right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.qrvibe-kebab-wrap {
	position: relative;
}

.qrvibe-kebab-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	border-radius: 6px;
	color: var(--qrvibe-gray);
	display: flex;
	align-items: center;
	transition: background var(--qrvibe-transition), color var(--qrvibe-transition);
}

.qrvibe-kebab-btn:hover {
	background: var(--qrvibe-bg);
	color: var(--qrvibe-dark);
}

.qrvibe-kebab-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 100;
	background: var(--qrvibe-white);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	min-width: 180px;
	padding: 6px 0;
	margin-top: 4px;
}

.qrvibe-kebab-menu--open {
	display: block;
}

.qrvibe-kebab-action {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px 14px;
	background: none;
	border: none;
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	color: var(--qrvibe-dark);
	cursor: pointer;
	text-align: left;
	transition: background var(--qrvibe-transition);
}

.qrvibe-kebab-action:hover {
	background: var(--qrvibe-bg);
}

.qrvibe-kebab-action svg {
	flex-shrink: 0;
}

.qrvibe-kebab-action--delete {
	color: var(--qrvibe-error);
}

.qrvibe-kebab-action--delete:hover {
	background: var(--qrvibe-error-bg);
}

.qrvibe-kebab-action--move {
	padding-left: 24px;
	font-size: 12px;
}

.qrvibe-kebab-divider {
	height: 1px;
	background: var(--qrvibe-gray-light);
	margin: 4px 0;
}

.qrvibe-kebab-label {
	display: block;
	padding: 4px 14px 2px;
	font-size: 10px;
	font-weight: 600;
	color: var(--qrvibe-gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Folder bar */
.qrvibe-folder-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.qrvibe-folder-pills {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	flex: 1;
}

.qrvibe-folder-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 14px;
	background: var(--qrvibe-white);
	border: 1px solid var(--qrvibe-gray-light);
	border-radius: 20px;
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--qrvibe-gray);
	cursor: pointer;
	transition: background var(--qrvibe-transition), color var(--qrvibe-transition), border-color var(--qrvibe-transition);
}

.qrvibe-folder-pill:hover {
	border-color: var(--qrvibe-cyan);
	color: var(--qrvibe-dark);
}

.qrvibe-folder-pill--active {
	background: rgba(0, 242, 255, 0.08);
	border-color: var(--qrvibe-cyan);
	color: var(--qrvibe-dark);
	font-weight: 600;
}

.qrvibe-folder-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	font-size: 14px;
	line-height: 1;
	color: var(--qrvibe-gray);
	transition: background var(--qrvibe-transition), color var(--qrvibe-transition);
}

.qrvibe-folder-delete:hover {
	background: var(--qrvibe-error-bg);
	color: var(--qrvibe-error);
}

.qrvibe-folder-add-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--qrvibe-white);
	border: 1px dashed var(--qrvibe-gray-light);
	border-radius: 50%;
	color: var(--qrvibe-gray);
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color var(--qrvibe-transition), color var(--qrvibe-transition), background var(--qrvibe-transition);
}

.qrvibe-folder-add-btn:hover {
	border-color: var(--qrvibe-cyan);
	color: var(--qrvibe-cyan);
	background: rgba(0, 242, 255, 0.04);
}

/* "Download & Track" button — injected below the download button on QR pages */
button.qrvibe-track-btn {
	background: linear-gradient(135deg, #A020F0, #7C3AED) !important;
	color: #FFFFFF !important;
	box-shadow: 0 4px 15px rgba(160, 32, 240, 0.25) !important;
	margin-top: 6px !important;
}

button.qrvibe-track-btn:hover {
	background: linear-gradient(135deg, #8B1AD0, #6D28D9) !important;
	box-shadow: 0 6px 20px rgba(160, 32, 240, 0.4) !important;
	transform: translateY(-2px) !important;
}

button.qrvibe-track-btn svg {
	stroke: #FFFFFF !important;
	fill: none !important;
}

/* Responsive popup */
@media (max-width: 767px) {
	.qrvibe-popup-container {
		padding: 32px 20px 24px;
	}

	.qrvibe-popup-header h2 {
		font-size: 24px;
	}

	.qrvibe-plans-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.qrvibe-plan-card--featured {
		transform: none;
	}

	.qrvibe-price-amount {
		font-size: 36px;
	}

	.qrvibe-billing-details {
		grid-template-columns: 1fr;
	}
}
