/*
 * RTL (Right-to-Left) stylesheet for TourTheme.
 * WordPress loads this file automatically when the site language is RTL (e.g. Arabic).
 *
 * @package TourTheme
 */

body {
	direction: rtl;
	text-align: right;
}

/* Skip link */
.skip-link {
	left: auto;
	right: 0;
}

/* Navigation sub-menus */
.main-navigation ul ul {
	left: auto;
	right: 0;
}

/* Sidebar grid — swap column order */
@media (min-width: 769px) {
	.with-sidebar .content-area-inner {
		grid-template-columns: 300px 1fr;
	}
}

/* Entry content list direction */
.entry-content ul,
.entry-content ol {
	padding-inline-start: 0;
	padding-inline-end: 1.5rem;
}

/* Card grid — maintain natural RTL flow */
.card-grid {
	direction: rtl;
}

/* Footer bottom — reverse flex order */
.footer-bottom {
	flex-direction: row-reverse;
}

/* Price original — swap margin */
.price-original {
	margin-inline-end: 0;
	margin-inline-start: 0.5rem;
}

/* Search form */
.search-form {
	flex-direction: row-reverse;
}

/* Widget list */
.widget ul {
	padding-inline-start: 0;
	padding-inline-end: 1.25rem;
}
