/* FSE Global Listener - WordPress renk seçimlerini eklentiye aktarır */
[class*="rv-"],
[class*="rv-"] *,
[class*="rv-"] *::before,
[class*="rv-"] *::after {
	box-sizing: border-box;
	--mhm-primary: var(--wp--style--color--link, var(--wp--preset--color--primary, #2563eb));
	--mhm-text-primary: var(--wp--style--color--text, var(--wp--preset--color--text, #1f2937));
}

.rv-vehicle-comparison {
	font-family: var(--mhm-font-primary);
	margin: var(--mhm-space-phi-3, 1.3125rem) auto;
	/* Centered */
	background: var(--mhm-white);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.rv-vehicle-comparison {
		padding-right: 20px;
		/* Breathing room on desktop */
	}
}

/* ===== HEADER ===== */
.rv-comparison-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px;
	background: var(--mhm-btn-bg);
	color: var(--mhm-btn-color);
}

.rv-comparison-title {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
}

.rv-comparison-count {
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
}

/* ===== ARAÇ EKLEME BÖLÜMÜ ===== */
.rv-add-vehicle-section {
	padding: 20px 25px;
	background: var(--mhm-gray-50);
	border-bottom: 1px solid var(--mhm-gray-200);
}

.rv-add-vehicle-form {
	display: flex;
	gap: 15px;
	align-items: center;
	max-width: 100%;
}

.rv-form-row {
	display: flex;
	gap: 15px;
	align-items: center;
	width: 100%;
	max-width: 600px;
}

.rv-vehicle-select {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid var(--mhm-gray-200);
	border-radius: 8px;
	font-size: 14px;
	background: var(--mhm-white);
	transition: border-color 0.3s ease;
}

.rv-vehicle-select:focus {
	outline: none;
	border-color: #3498db;
}

.rv-add-vehicle-btn {
	background-color: var(--mhm-btn-bg);
	color: var(--mhm-btn-color);
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.rv-add-vehicle-btn:hover {
	background-color: var(--mhm-btn-hover-bg);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px color-mix(in srgb, var(--mhm-btn-bg), transparent 70%);
}

/* ===== TABLE ELEMENTS ===== */
.rv-vehicle-header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 10px;
}

.rv-vehicle-image-container {
	width: 100%;
	margin-bottom: 10px;
	background: #f8f9fa;
	border-radius: 8px;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 4/3;
}

.rv-vehicle-image {
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain;
}

/* ===== KARŞILAŞTIRMA TABLOSU ===== */
.rv-comparison-table-wrapper {
	overflow-x: auto;
	overflow-y: visible;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--mhm-gray-200);
	border-radius: 0 0 12px 12px;
}

/* Mobile Accordion Active State - Rotate Chevron */
.rv-mobile-card-item.active .rv-icon-chevron-down {
	transform: rotate(180deg);
}

.rv-icon-chevron-down {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

/* Empty State SVG Center & Scale */
.rv-icon-empty {
	display: block;
	margin: 0 auto;
	color: var(--mhm-gray-300, #d1d5db);
	stroke: #ddd;
}

/* Removal Icon - SVG specific sizing */
.rv-icon-remove {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2.5;
	/* Slightly thicker for better visibility */
}

@media (min-width: 1024px) {
	.rv-comparison-table-wrapper {
		overflow-x: visible;
		/* Disable scrollbar on desktop fit */
	}
}


.rv-comparison-table {
	width: 100%;
	min-width: 700px;
	/* Base min-width for mobile scroll */
	border-collapse: collapse;
	table-layout: fixed;
}

.rv-comparison-table th,
.rv-comparison-table td {
	padding: 15px 8px;
	/* Reduced padding from 10px to save space */
	text-align: left;
	border-bottom: 1px solid var(--mhm-gray-200);
	vertical-align: top;
	word-wrap: break-word;
	overflow-wrap: break-word;
	line-height: 1.4;
}

.rv-comparison-table th {
	background: var(--mhm-gray-50);
	font-weight: 600;
	color: var(--mhm-text-primary);
	position: sticky;
	top: 0;
	z-index: 10;
}

.rv-feature-column {
	width: 140px;
	/* Reduced from 160px for tighter fit */
	min-width: 140px;
	background: #f8f9fa;
	font-weight: 600;
	color: #2c3e50;
	position: sticky;
	left: 0;
	z-index: 11;
	word-wrap: break-word;
	overflow-wrap: break-word;
	padding: 15px 12px;
	min-height: 50px;
	line-height: 1.4;
	border-right: 2px solid #e1e5e9;
}

.rv-vehicle-column {
	width: 190px;
	/* Reduced from 200px for tighter fit */
	min-width: 190px;
	text-align: center;
	background: white;
	word-wrap: break-word;
	overflow-wrap: break-word;
	padding: 15px 8px;
	min-height: 50px;
	line-height: 1.4;
	vertical-align: top;
}

/* ===== ARAÇ BAŞLIKLARI ===== */
.rv-vehicle-header {
	position: relative;
	padding: 20px 8px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-bottom: 2px solid #e1e5e9;
	/* Flexbox for alignment */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.rv-vehicle-status-container {
	min-height: 40px;
	/* Reserve space for badge */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
	width: 100%;
}


.rv-vehicle-header h4 {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
	margin: 10px 0 10px;
	line-height: 1.3;
	word-wrap: break-word;
	overflow-wrap: break-word;
	text-align: center;
	min-height: 60px;
	/* Accommodate 2-3 lines of text */
	display: flex;
	align-items: center;
	justify-content: center;
}

.rv-remove-vehicle {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 28px;
	height: 28px;
	background: #ff4757;
	color: white;
	border: 2px solid white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
	padding: 0;
}

.rv-remove-vehicle:hover {
	background: #c0392b;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.rv-remove-vehicle-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	background: var(--mhm-error);
	color: var(--mhm-white);
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.3s ease;
	z-index: 5;
}

.rv-remove-vehicle-btn:hover {
	background: #c0392b;
	transform: scale(1.1);
}

.rv-vehicle-image-container {
	position: relative;
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.rv-vehicle-image {
	width: 100%;
	max-width: 180px;
	height: 120px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.rv-vehicle-image:hover {
	transform: scale(1.05);
}

.rv-vehicle-title {
	margin: 0 0 15px 0;
	font-size: 16px;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1.3;
	text-align: center;
	min-height: 60px;
	/* Accommodate 2-3 lines of text */
	display: flex;
	align-items: center;
	justify-content: center;
}

.rv-book-now-btn {
	display: block;
	background-color: var(--mhm-btn-bg);
	color: var(--mhm-btn-color);
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px color-mix(in srgb, var(--mhm-btn-bg), transparent 80%);
	margin: 10px auto;
	text-align: center;
	width: 100%;
	max-width: 160px;
}

.rv-book-now-btn:hover {
	background-color: var(--mhm-btn-hover-bg);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px color-mix(in srgb, var(--mhm-btn-bg), transparent 70%);
	text-decoration: none;
	color: var(--mhm-btn-color);
}

/* ===== ÖZELLİK SATIRLARI ===== */
.rv-feature-row {
	transition: background-color 0.2s ease;
}

.rv-feature-row:hover {
	background: var(--mhm-gray-50) !important;
}

.rv-feature-row:nth-child(even) {
	background: var(--mhm-gray-50);
}

.rv-feature-name {
	font-weight: 600;
	color: var(--mhm-text-primary);
	background: var(--mhm-gray-50) !important;
	font-size: 14px;
}

.rv-feature-value {
	text-align: center;
	background: var(--mhm-white);
	font-size: 14px;
	color: var(--mhm-text-secondary);
}

/* ===== ÖZELLİK DEĞERLERİ ===== */
.rv-price {
	font-weight: 700;
	color: var(--mhm-price-color);
	font-size: 18px;
	background: var(--mhm-gray-50);
	padding: 8px 12px;
	border-radius: 8px;
	display: inline-block;
}

.rv-no-price {
	color: var(--mhm-gray-400);
	font-style: italic;
	font-size: 14px;
}

.rv-seats,
.rv-doors {
	background: var(--mhm-btn-bg);
	color: var(--mhm-white);
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: inline-block;
}

.rv-feature-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 14px;
}

.rv-feature-status.available {
	background: var(--mhm-gray-100);
	color: var(--mhm-success);
}

.rv-feature-status.not-available {
	background: var(--mhm-gray-100);
	color: var(--mhm-error);
}

.rv-feature-text {
	color: #2c3e50;
	font-weight: 500;
}

/* ===== MODERN BADGE TASARIMI ===== */
.rv-feature-list,
.rv-equipment-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
}

.rv-feature-badge,
.rv-equipment-badge {
	display: inline-block;
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
	text-transform: capitalize;
	white-space: nowrap;
	box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
	transition: all 0.3s ease;
}

.rv-equipment-badge {
	background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
	box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}

.rv-feature-badge:hover,
.rv-equipment-badge:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Features ve Equipment için özel satır yüksekliği */
.rv-comparison-table tr[data-feature="features"] td,
.rv-comparison-table tr[data-feature="equipment"] td {
	vertical-align: top;
	padding: 15px 8px;
}

/* ===== CARDS LAYOUT ===== */
.rv-comparison-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	padding: 25px;
}

.rv-vehicle-card {
	background: white;
	border: 1px solid #e1e5e9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.rv-vehicle-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.rv-card-header {
	position: relative;
	padding: 20px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-bottom: 1px solid #e1e5e9;
}

.rv-card-header .rv-remove-vehicle-btn {
	position: absolute;
	top: 10px;
	right: 10px;
}

.rv-card-header .rv-vehicle-image {
	margin-bottom: 15px;
}

.rv-card-header .rv-vehicle-image img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
}

.rv-card-header .rv-vehicle-title {
	margin-bottom: 15px;
	font-size: 18px;
}

.rv-card-features {
	padding: 20px;
}

.rv-feature-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f1f3f4;
}

.rv-feature-item:last-child {
	border-bottom: none;
}

.rv-feature-label {
	font-weight: 500;
	color: #6c757d;
	flex: 1;
}

.rv-feature-value {
	flex: 1;
	text-align: right;
}

/* ===== NO VEHICLES ===== */
.rv-no-vehicles {
	text-align: center;
	padding: 60px 25px;
	color: #6c757d;
}

.rv-no-vehicles-icon {
	font-size: 48px;
	margin-bottom: 20px;
	opacity: 0.5;
}

.rv-no-vehicles h4 {
	margin: 0 0 10px 0;
	font-size: 20px;
	color: #2c3e50;
}

.rv-no-vehicles p {
	margin: 0 0 30px 0;
	font-size: 16px;
}

/* ===== MESAJLAR ===== */
.rv-messages {
	padding: 0 25px 25px;
}

.rv-hidden {
	display: none !important;
}

.rv-success-message,
.rv-error-message {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.rv-success-message.rv-hidden,
.rv-error-message.rv-hidden {
	display: none !important;
	opacity: 0;
	transform: translateY(-10px);
}

.rv-success-message {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.rv-error-message {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 782px) {
	.rv-comparison-header {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.rv-comparison-title {
		font-size: 20px;
	}

	.rv-form-row {
		flex-direction: column;
		gap: 10px;
	}

	.rv-vehicle-select {
		width: 100%;
	}

	.rv-add-vehicle-btn {
		width: 100%;
	}

	.rv-comparison-table {
		font-size: 13px;
		/* Slightly smaller text */
		min-width: auto;
		/* Allow flexible width */
	}

	.rv-comparison-table-wrapper {
		-webkit-overflow-scrolling: touch;
		/* Smooth scroll on iOS */
	}

	.rv-comparison-table th,
	.rv-comparison-table td {
		padding: 8px 4px;
		/* Reduced padding */
	}

	.rv-feature-column {
		width: 110px;
		/* Reduced from 150px */
		min-width: 110px;
		position: sticky;
		/* Keep first column visible */
		left: 0;
		z-index: 10;
		background-color: #f8f9fa;
		/* Ensure opacity */
		box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
		/* Subtle shadow separator */
	}

	/* Mobile Badge Adjustments */
	.rv-vehicle-header .rv-badge {
		display: inline-block;
		margin: 4px auto;
		font-size: 0.65rem;
		padding: 2px 4px;
		width: auto;
		max-width: 100%;
		white-space: normal;
		line-height: 1.1;
	}

	.rv-vehicle-header {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.rv-vehicle-column {
		width: 160px;
		/* Reduced from 200px */
		min-width: 160px;
	}

	.rv-vehicle-image img {
		height: 80px;
	}

	.rv-vehicle-title {
		font-size: 14px;
	}

	.rv-comparison-cards {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.rv-feature-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.rv-feature-value {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.rv-vehicle-comparison {
		margin: var(--mhm-space-phi-2, 0.8125rem) auto;
		border-radius: 8px;
	}

	.rv-comparison-header,
	.rv-add-vehicle-section {
		padding: 15px;
	}

	.rv-comparison-title {
		font-size: 18px;
	}

	.rv-comparison-table th,
	.rv-comparison-table td {
		padding: 8px 5px;
		font-size: 12px;
	}

	.rv-feature-column {
		width: 120px;
		min-width: 120px;
	}

	.rv-vehicle-column {
		width: 150px;
		min-width: 150px;
	}

	.rv-vehicle-image img {
		height: 60px;
	}

	.rv-vehicle-title {
		font-size: 12px;
	}

	.rv-book-now-btn {
		padding: 6px 12px;
		font-size: 11px;
	}

	.rv-comparison-cards {
		padding: 15px;
	}

	.rv-card-header,
	.rv-card-features {
		padding: 15px;
	}
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
	.rv-vehicle-comparison {
		background: #2c3e50;
		color: #e1e5e9;
	}

	.rv-comparison-header {
		background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
	}

	.rv-add-vehicle-section {
		background: #34495e;
		border-bottom-color: #4a5f7a;
	}

	.rv-vehicle-select {
		background: #34495e;
		border-color: #4a5f7a;
		color: #e1e5e9;
	}

	.rv-comparison-table th {
		background: #34495e;
		color: #e1e5e9;
	}

	.rv-feature-column {
		background: #34495e !important;
		color: #e1e5e9;
	}

	.rv-vehicle-column {
		background: #2c3e50;
	}

	.rv-feature-row:nth-child(even) {
		background: #34495e;
	}

	.rv-feature-name {
		background: #34495e !important;
		color: #e1e5e9;
	}

	.rv-feature-value {
		background: #2c3e50;
	}

	.rv-vehicle-card {
		background: #2c3e50;
		border-color: #4a5f7a;
	}

	.rv-card-header {
		background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
		border-bottom-color: #4a5f7a;
	}

	.rv-feature-item {
		border-bottom-color: #4a5f7a;
	}

	.rv-feature-label {
		color: #bdc3c7;
	}

	.rv-feature-text {
		color: #e1e5e9;
	}
}

/* ===== ANIMASYONLAR ===== */
.rv-vehicle-comparison {
	animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.rv-vehicle-card {
	animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== ACCESSIBILITY ===== */
.rv-remove-vehicle-btn:focus,
.rv-add-vehicle-btn:focus,
.rv-book-now-btn:focus {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}

.rv-vehicle-select:focus {
	outline: none;
}

/* ===== PRINT STİLLERİ ===== */
@media print {
	.rv-vehicle-comparison {
		box-shadow: none;
		border: 1px solid #ccc;
	}

	.rv-add-vehicle-section,
	.rv-remove-vehicle-btn,
	.rv-book-now-btn {
		display: none;
	}

	.rv-comparison-table {
		font-size: 12px;
	}

	.rv-comparison-table th,
	.rv-comparison-table td {
		padding: 8px;
	}
}

/* Disabled Button Style */
.rv-btn-disabled {
	opacity: 0.6 !important;
	pointer-events: none !important;
	cursor: not-allowed !important;
	background: #9ca3af !important;
	border-color: #9ca3af !important;
	border-color: #9ca3af !important;
	color: #ffffff !important;
	box-shadow: none !important;
}

/* Badge Styles */
.rv-badge {
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 4px;
	white-space: nowrap;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
}

.rv-badge--unavailable {
	background-color: #ef4444;
	color: #ffffff;
}

/* ===== MOBILE LIST VIEW (ACCORDION) ===== */

/* Show/Hide Logic */
.rv-comparison-mobile-list {
	display: none;
}

@media (max-width: 782px) {

	/* Hide Table on Mobile */
	.rv-comparison-table-wrapper {
		display: none !important;
	}

	/* Show Mobile list */
	.rv-comparison-mobile-list {
		display: flex;
		flex-direction: column;
		gap: 15px;
		padding: 0;
	}

	.rv-comparison-header {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}

/* Base Mobile Card Styles (can be global or scoped) */
.rv-mobile-card-item {
	background: #fff;
	border: 1px solid #e1e5e9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.rv-mobile-card-header-wrapper {
	display: flex;
	padding: 15px;
	gap: 15px;
	position: relative;
	align-items: center;
}

.rv-mobile-card-image {
	width: 80px;
	height: 60px;
	flex-shrink: 0;
}

.rv-mobile-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

.rv-mobile-card-info {
	flex: 1;
	min-width: 0;
}

.rv-mobile-title {
	margin: 0 0 5px 0;
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
}

.rv-mobile-price {
	font-size: 15px;
	font-weight: 700;
	color: #27ae60;
}

.rv-mobile-price .rv-period {
	font-size: 12px;
	color: #95a5a6;
	font-weight: normal;
}

.rv-mobile-accordion-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	background: var(--mhm-bg-secondary);
	border: none;
	border-top: 1px solid var(--mhm-border-primary);
	color: var(--mhm-primary);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s;
}

.rv-mobile-accordion-toggle:hover {
	background: var(--mhm-bg-tertiary);
}

.rv-mobile-accordion-content {
	display: none;
	padding: 0;
	border-top: 1px solid #e1e5e9;
	background: #fff;
}

.rv-mobile-card-item.active .rv-mobile-accordion-content {
	display: block;
	animation: rvSlideDown 0.3s ease;
}

@keyframes rvSlideDown {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.rv-mobile-feature-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	border-bottom: 1px solid #f1f3f4;
	font-size: 14px;
}

.rv-mobile-feature-row:last-child {
	border-bottom: none;
}

.rv-mobile-label {
	font-weight: 500;
	color: #6c757d;
}

.rv-mobile-value {
	font-weight: 600;
	color: #2c3e50;
	text-align: right;
}

.rv-mobile-actions {
	padding: 15px;
	background: #f8f9fa;
	text-align: center;
	border-top: 1px solid #e1e5e9;
}

.rv-mobile-btn {
	width: 100%;
	display: block;
	text-align: center;
	padding: 10px;
}
