:root {
	--rs-primary: #600033;
	--rs-primary-dark: #430024;
	--rs-secondary: #f8efe9;
	--rs-text: #1f1f1f;
	--rs-muted: #666666;
	--rs-white: #ffffff;
	--rs-border: #eeeeee;
	--rs-radius: 14px;
	--rs-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Global */
body {
	color: var(--rs-text);
	background: var(--rs-white);
}

a {
	color: var(--rs-primary);
}

.rs-container {
	width: min(1200px, 92%);
	margin-left: auto;
	margin-right: auto;
}

.rs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--rs-primary);
	color: var(--rs-white) !important;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.25s ease;
}

.rs-btn:hover {
	background: var(--rs-primary-dark);
	transform: translateY(-2px);
}

.rs-btn-outline {
	background: transparent;
	color: var(--rs-primary) !important;
	border: 1px solid var(--rs-primary);
}

.rs-btn-outline:hover {
	background: var(--rs-primary);
	color: var(--rs-white) !important;
}

/* Homepage reusable sections */
.rs-section {
	padding: 90px 0;
}

.rs-section-light {
	background: var(--rs-secondary);
}

.rs-section-title {
	font-size: clamp(34px, 4vw, 58px);
	line-height: 1.1;
	margin-bottom: 18px;
	color: var(--rs-text);
}

.rs-section-text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--rs-muted);
	max-width: 720px;
}

/* Cards */
.rs-card {
	background: var(--rs-white);
	border: 1px solid var(--rs-border);
	border-radius: var(--rs-radius);
	box-shadow: var(--rs-shadow);
	padding: 28px;
}

/* Mobile */
@media (max-width: 767px) {
	.rs-section {
		padding: 55px 0;
	}

	.rs-section-title {
		font-size: 34px;
	}

	.rs-section-text {
		font-size: 16px;
	}
}
/* =========================================================
   Restaurant SaaS Homepage
========================================================= */

.rs-homepage {
	overflow: hidden;
}

/* Hero */
.rs-hero {
	position: relative;
	padding: 110px 0 80px;
	background:
		radial-gradient(circle at top left, rgba(96, 0, 51, 0.12), transparent 34%),
		linear-gradient(135deg, #fff7f1 0%, #ffffff 58%, #f9edf3 100%);
}

.rs-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.rs-eyebrow {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--rs-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.rs-eyebrow-light {
	color: #ffd6e8;
}

.rs-hero-content h1 {
	max-width: 720px;
	margin: 0 0 24px;
	color: var(--rs-text);
	font-size: clamp(44px, 5.5vw, 76px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.rs-hero-content p {
	max-width: 620px;
	margin: 0 0 34px;
	color: var(--rs-muted);
	font-size: 19px;
	line-height: 1.75;
}

.rs-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.rs-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 520px;
	margin-top: 42px;
}

.rs-hero-stats div {
	padding: 18px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(96, 0, 51, 0.08);
}

.rs-hero-stats strong {
	display: block;
	margin-bottom: 4px;
	color: var(--rs-primary);
	font-size: 26px;
	line-height: 1;
}

.rs-hero-stats span {
	color: var(--rs-muted);
	font-size: 13px;
}

.rs-hero-image-wrap {
	position: relative;
	min-height: 520px;
}

.rs-hero-image-card {
	position: relative;
	overflow: hidden;
	height: 520px;
	border-radius: 34px;
	box-shadow: 0 30px 80px rgba(96, 0, 51, 0.18);
}

.rs-hero-image-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.28));
}

.rs-hero-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rs-floating-card {
	position: absolute;
	z-index: 2;
	width: 210px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
	backdrop-filter: blur(14px);
}

.rs-floating-card strong {
	display: block;
	margin-bottom: 4px;
	color: var(--rs-primary);
	font-size: 17px;
}

.rs-floating-card span {
	color: var(--rs-muted);
	font-size: 13px;
}

.rs-floating-card-top {
	top: 54px;
	left: -32px;
}

.rs-floating-card-bottom {
	right: -26px;
	bottom: 54px;
}

/* Search Section */
.rs-search-section {
	position: relative;
	z-index: 4;
	margin-top: -36px;
	padding-bottom: 40px;
}

.rs-search-box {
	padding: 32px;
	background: #ffffff;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.rs-search-box h2 {
	margin: 0 0 8px;
	color: var(--rs-text);
	font-size: 30px;
}

.rs-search-box p {
	margin: 0 0 22px;
	color: var(--rs-muted);
}

.rs-search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	margin-bottom: 20px;
}

.rs-search-form input {
	width: 100%;
	min-height: 56px;
	padding: 0 18px;
	border: 1px solid #e8e0e4;
	border-radius: 999px;
	outline: none;
	font-size: 16px;
}

.rs-search-form input:focus {
	border-color: var(--rs-primary);
	box-shadow: 0 0 0 4px rgba(96, 0, 51, 0.08);
}

.rs-search-form button {
	min-height: 56px;
	padding: 0 28px;
	color: #ffffff;
	background: var(--rs-primary);
	border: 0;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
}

.rs-category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rs-category-pills a {
	display: inline-flex;
	padding: 9px 15px;
	color: var(--rs-primary);
	background: #fff4f9;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

/* Section Head */
.rs-section-head {
	max-width: 760px;
	margin-bottom: 42px;
}

.rs-section-head-between {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 25px;
	max-width: none;
}

.rs-section-title {
	margin-top: 0;
}

.rs-text-link {
	color: var(--rs-primary);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

/* How It Works */
.rs-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rs-step-card {
	position: relative;
	padding: 34px;
	background: #ffffff;
	border: 1px solid var(--rs-border);
	border-radius: 22px;
	box-shadow: var(--rs-shadow);
	transition: all 0.25s ease;
}

.rs-step-card:hover {
	transform: translateY(-6px);
}

.rs-step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 24px;
	color: #ffffff;
	background: var(--rs-primary);
	border-radius: 16px;
	font-size: 20px;
	font-weight: 800;
}

.rs-step-card h3 {
	margin: 0 0 12px;
	font-size: 24px;
}

.rs-step-card p {
	margin: 0;
	color: var(--rs-muted);
	line-height: 1.7;
}

/* Restaurants */
.rs-restaurant-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.rs-restaurant-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--rs-border);
	border-radius: 24px;
	box-shadow: var(--rs-shadow);
	transition: all 0.25s ease;
}

.rs-restaurant-card:hover {
	transform: translateY(-6px);
}

.rs-restaurant-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
}

.rs-restaurant-body {
	padding: 24px;
}

.rs-restaurant-body span {
	display: block;
	margin-bottom: 8px;
	color: var(--rs-primary);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs-restaurant-body h3 {
	margin: 0 0 8px;
	font-size: 24px;
}

.rs-restaurant-body p {
	margin: 0 0 18px;
	color: var(--rs-muted);
}

.rs-restaurant-body a {
	display: inline-flex;
	color: var(--rs-primary);
	font-weight: 800;
	text-decoration: none;
}

/* Food Categories */
.rs-food-category-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}

.rs-food-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid var(--rs-border);
	border-radius: 22px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	text-align: center;
	text-decoration: none !important;
	transition: all 0.25s ease;
}

.rs-food-category-card:hover {
	transform: translateY(-5px);
	border-color: rgba(96, 0, 51, 0.22);
}

.rs-food-category-card span {
	margin-bottom: 12px;
	font-size: 38px;
}

.rs-food-category-card strong {
	color: var(--rs-text);
	font-size: 17px;
}

/* Owner CTA */
.rs-owner-section {
	padding: 95px 0;
	color: #ffffff;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
		linear-gradient(135deg, #600033 0%, #31001a 100%);
}

.rs-owner-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 60px;
	align-items: center;
}

.rs-owner-section h2 {
	margin: 0 0 22px;
	color: #ffffff;
	font-size: clamp(36px, 4vw, 58px);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.rs-owner-section p {
	max-width: 640px;
	margin: 0 0 32px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
	line-height: 1.75;
}

.rs-btn-light {
	color: var(--rs-primary) !important;
	background: #ffffff;
}

.rs-btn-light:hover {
	color: var(--rs-primary) !important;
	background: #ffe7f3;
}

.rs-owner-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.rs-owner-features div {
	padding: 24px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	backdrop-filter: blur(14px);
}

.rs-owner-features strong {
	display: block;
	margin-bottom: 8px;
	color: #ffffff;
	font-size: 19px;
}

.rs-owner-features span {
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
}

/* Final CTA */
.rs-final-cta {
	padding: 90px 0;
	text-align: center;
	background: #fff7f1;
}

.rs-final-cta h2 {
	max-width: 780px;
	margin: 0 auto 16px;
	color: var(--rs-text);
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.rs-final-cta p {
	max-width: 640px;
	margin: 0 auto 30px;
	color: var(--rs-muted);
	font-size: 18px;
	line-height: 1.7;
}

.rs-final-cta .rs-hero-actions {
	justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
	.rs-hero-grid,
	.rs-owner-grid {
		grid-template-columns: 1fr;
	}

	.rs-hero-image-wrap {
		min-height: auto;
	}

	.rs-food-category-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.rs-steps-grid,
	.rs-restaurant-grid {
		grid-template-columns: 1fr;
	}

	.rs-section-head-between {
		display: block;
	}
}

@media (max-width: 767px) {
	.rs-hero {
		padding: 70px 0 55px;
	}

	.rs-hero-content h1 {
		font-size: 42px;
	}

	.rs-hero-content p {
		font-size: 16px;
	}

	.rs-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.rs-btn {
		width: 100%;
	}

	.rs-hero-stats {
		grid-template-columns: 1fr;
	}

	.rs-hero-image-card {
		height: 360px;
		border-radius: 24px;
	}

	.rs-floating-card {
		position: static;
		width: auto;
		margin-top: 14px;
	}

	.rs-search-section {
		margin-top: 0;
		padding: 30px 0;
	}

	.rs-search-box {
		padding: 22px;
	}

	.rs-search-form {
		grid-template-columns: 1fr;
	}

	.rs-search-form button {
		width: 100%;
	}

	.rs-food-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rs-owner-features {
		grid-template-columns: 1fr;
	}

	.rs-restaurant-card img {
		height: 210px;
	}
}
/* =========================================================
   Restaurants Listing Page
========================================================= */

.rs-restaurants-page {
	overflow: hidden;
	background: #ffffff;
}

.rs-restaurants-hero {
	padding: 105px 0 90px;
	text-align: center;
	background:
		radial-gradient(circle at top left, rgba(96, 0, 51, 0.12), transparent 34%),
		linear-gradient(135deg, #fff7f1 0%, #ffffff 58%, #f9edf3 100%);
}

.rs-restaurants-hero h1 {
	max-width: 850px;
	margin: 0 auto 22px;
	color: var(--rs-text);
	font-size: clamp(44px, 5.5vw, 72px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.rs-restaurants-hero p {
	max-width: 680px;
	margin: 0 auto;
	color: var(--rs-muted);
	font-size: 18px;
	line-height: 1.75;
}

/* Filter */
.rs-restaurant-filter-section {
	position: relative;
	z-index: 5;
	margin-top: -42px;
}

.rs-restaurant-filter {
	display: grid;
	grid-template-columns: 1.2fr 0.6fr auto;
	gap: 16px;
	align-items: end;
	padding: 28px;
	background: #ffffff;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 24px;
	box-shadow: 0 22px 65px rgba(0, 0, 0, 0.08);
}

.rs-filter-field label {
	display: block;
	margin-bottom: 9px;
	color: var(--rs-text);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rs-filter-field input,
.rs-filter-field select {
	width: 100%;
	min-height: 56px;
	padding: 0 18px;
	color: var(--rs-text);
	background: #ffffff;
	border: 1px solid #e8e0e4;
	border-radius: 999px;
	outline: none;
	font-size: 15px;
}

.rs-filter-field input:focus,
.rs-filter-field select:focus {
	border-color: var(--rs-primary);
	box-shadow: 0 0 0 4px rgba(96, 0, 51, 0.08);
}

.rs-filter-action {
	display: flex;
	gap: 10px;
	align-items: center;
}

.rs-filter-action button {
	min-height: 56px;
	padding: 0 28px;
	color: #ffffff;
	background: var(--rs-primary);
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
}

.rs-filter-action button:hover {
	background: var(--rs-primary-dark);
}

.rs-filter-action a {
	color: var(--rs-primary);
	font-weight: 700;
	text-decoration: none;
}

/* Listing Head */
.rs-listing-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.rs-listing-head h2 {
	margin: 0;
	color: var(--rs-text);
	font-size: clamp(30px, 3vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.rs-btn-small {
	padding: 12px 20px;
	font-size: 14px;
}

/* Directory Grid */
.rs-directory-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.rs-directory-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--rs-border);
	border-radius: 24px;
	box-shadow: var(--rs-shadow);
	transition: all 0.25s ease;
}

.rs-directory-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.rs-directory-image {
	position: relative;
	display: block;
	overflow: hidden;
	height: 230px;
	text-decoration: none;
}

.rs-directory-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.rs-directory-card:hover .rs-directory-image img {
	transform: scale(1.05);
}

.rs-directory-image::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.4));
}

.rs-directory-image span {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 2;
	display: inline-flex;
	padding: 8px 13px;
	color: #ffffff;
	background: rgba(96, 0, 51, 0.92);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rs-directory-body {
	padding: 24px;
}

.rs-directory-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--rs-muted);
	font-size: 13px;
}

.rs-directory-rating span:first-child {
	color: var(--rs-primary);
	font-weight: 800;
}

.rs-directory-body h3 {
	margin: 0 0 9px;
	font-size: 25px;
	line-height: 1.2;
}

.rs-directory-body h3 a {
	color: var(--rs-text);
	text-decoration: none;
}

.rs-directory-body h3 a:hover {
	color: var(--rs-primary);
}

.rs-directory-address {
	margin: 0 0 12px;
	color: var(--rs-primary);
	font-size: 14px;
	font-weight: 700;
}

.rs-directory-desc {
	margin: 0 0 22px;
	color: var(--rs-muted);
	line-height: 1.7;
}

.rs-directory-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.rs-directory-actions .rs-btn {
	padding: 11px 18px;
	font-size: 14px;
}

.rs-empty-state {
	max-width: 620px;
	margin: 20px auto 0;
	padding: 50px 32px;
	background: #fff7f1;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 24px;
	text-align: center;
}

.rs-empty-state h3 {
	margin: 0 0 12px;
	color: var(--rs-text);
	font-size: 30px;
}

.rs-empty-state p {
	margin: 0 0 24px;
	color: var(--rs-muted);
}

.rs-restaurants-owner-cta {
	margin-top: 30px;
}

/* Responsive Restaurants Page */
@media (max-width: 1024px) {
	.rs-restaurant-filter {
		grid-template-columns: 1fr 1fr;
	}

	.rs-filter-action {
		grid-column: 1 / -1;
	}

	.rs-directory-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.rs-restaurants-hero {
		padding: 70px 0 65px;
	}

	.rs-restaurants-hero h1 {
		font-size: 42px;
	}

	.rs-restaurant-filter-section {
		margin-top: -25px;
	}

	.rs-restaurant-filter {
		grid-template-columns: 1fr;
		padding: 20px;
		border-radius: 20px;
	}

	.rs-filter-action {
		flex-direction: column;
		align-items: stretch;
	}

	.rs-filter-action button,
	.rs-filter-action a {
		width: 100%;
		text-align: center;
	}

	.rs-listing-head {
		display: block;
	}

	.rs-listing-head .rs-btn {
		margin-top: 18px;
	}

	.rs-directory-grid {
		grid-template-columns: 1fr;
	}

	.rs-directory-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.rs-directory-actions .rs-btn,
	.rs-directory-actions .rs-text-link {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}
/* =========================================================
   Become a Partner Page
========================================================= */

.rs-partner-page {
	overflow: hidden;
	background: #ffffff;
}

/* Partner Hero */
.rs-partner-hero {
	padding: 110px 0 95px;
	background:
		radial-gradient(circle at top left, rgba(96, 0, 51, 0.14), transparent 34%),
		linear-gradient(135deg, #fff7f1 0%, #ffffff 58%, #f9edf3 100%);
}

.rs-partner-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.rs-partner-hero-content h1 {
	max-width: 760px;
	margin: 0 0 24px;
	color: var(--rs-text);
	font-size: clamp(44px, 5.5vw, 76px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.rs-partner-hero-content p {
	max-width: 650px;
	margin: 0 0 34px;
	color: var(--rs-muted);
	font-size: 19px;
	line-height: 1.75;
}

.rs-partner-hero-card {
	padding: 20px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 34px;
	box-shadow: 0 30px 80px rgba(96, 0, 51, 0.14);
	backdrop-filter: blur(14px);
}

.rs-partner-card-inner {
	padding: 42px;
	color: #ffffff;
	background:
		linear-gradient(135deg, rgba(96, 0, 51, 0.92), rgba(49, 0, 26, 0.96)),
		url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=900&q=80");
	background-size: cover;
	background-position: center;
	background-blend-mode: multiply;
	border-radius: 26px;
}

.rs-partner-card-inner span {
	display: inline-flex;
	margin-bottom: 18px;
	padding: 8px 14px;
	color: #600033;
	background: #ffffff;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs-partner-card-inner h3 {
	margin: 0 0 24px;
	color: #ffffff;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.rs-partner-card-inner ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rs-partner-card-inner li {
	position: relative;
	padding-left: 28px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.5;
}

.rs-partner-card-inner li::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "✓";
	color: #ffffff;
	font-weight: 900;
}

/* Benefits */
.rs-partner-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rs-partner-benefit-card {
	padding: 32px;
	background: #ffffff;
	border: 1px solid var(--rs-border);
	border-radius: 24px;
	box-shadow: var(--rs-shadow);
	transition: all 0.25s ease;
}

.rs-partner-benefit-card:hover {
	transform: translateY(-6px);
}

.rs-partner-benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-bottom: 22px;
	background: #fff4f9;
	border-radius: 18px;
	font-size: 30px;
}

.rs-partner-benefit-card h3 {
	margin: 0 0 12px;
	color: var(--rs-text);
	font-size: 24px;
}

.rs-partner-benefit-card p {
	margin: 0;
	color: var(--rs-muted);
	line-height: 1.7;
}

/* Process */
.rs-partner-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.rs-partner-process-card {
	position: relative;
	padding: 30px;
	background: #ffffff;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 24px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.rs-partner-process-card span {
	display: inline-flex;
	margin-bottom: 20px;
	color: var(--rs-primary);
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
}

.rs-partner-process-card h3 {
	margin: 0 0 12px;
	color: var(--rs-text);
	font-size: 23px;
}

.rs-partner-process-card p {
	margin: 0;
	color: var(--rs-muted);
	line-height: 1.7;
}

/* Pricing / Commission */
.rs-partner-pricing-section {
	padding: 95px 0;
	background: #ffffff;
}

.rs-partner-pricing-grid {
	display: grid;
	grid-template-columns: 1fr 0.75fr;
	gap: 60px;
	align-items: center;
}

.rs-partner-pricing-grid h2 {
	margin: 0 0 20px;
	color: var(--rs-text);
	font-size: clamp(36px, 4vw, 58px);
	line-height: 1.06;
	letter-spacing: -0.03em;
}

.rs-partner-pricing-grid p {
	margin: 0;
	color: var(--rs-muted);
	font-size: 18px;
	line-height: 1.75;
}

.rs-partner-pricing-card {
	padding: 34px;
	color: #ffffff;
	background: linear-gradient(135deg, #600033 0%, #31001a 100%);
	border-radius: 28px;
	box-shadow: 0 24px 65px rgba(96, 0, 51, 0.2);
}

.rs-partner-pricing-card > span {
	display: inline-flex;
	margin-bottom: 16px;
	color: #ffd6e8;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs-partner-pricing-card h3 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 64px;
	line-height: 1;
	letter-spacing: -0.05em;
}

.rs-partner-pricing-card p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
}

.rs-partner-pricing-card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rs-partner-pricing-card li {
	position: relative;
	padding-left: 26px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.5;
}

.rs-partner-pricing-card li::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "✓";
	color: #ffffff;
	font-weight: 900;
}

/* Registration */
.rs-partner-registration-section {
	padding: 95px 0;
	background:
		radial-gradient(circle at top right, rgba(96, 0, 51, 0.09), transparent 35%),
		#fff7f1;
}

.rs-partner-registration-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 50px;
	align-items: start;
}

.rs-partner-registration-info {
	position: sticky;
	top: 110px;
}

.rs-partner-registration-info h2 {
	margin: 0 0 18px;
	color: var(--rs-text);
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.rs-partner-registration-info p {
	margin: 0 0 24px;
	color: var(--rs-muted);
	font-size: 18px;
	line-height: 1.75;
}

.rs-partner-note {
	display: grid;
	gap: 8px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.rs-partner-note strong {
	color: var(--rs-primary);
}

.rs-partner-note span {
	color: var(--rs-muted);
	line-height: 1.6;
}

.rs-partner-form-card {
	padding: 34px;
	background: #ffffff;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 28px;
	box-shadow: 0 24px 65px rgba(0, 0, 0, 0.08);
}

/* Dokan Form Styling */
.rs-partner-form-card form {
	margin: 0;
}

.rs-partner-form-card input[type="text"],
.rs-partner-form-card input[type="email"],
.rs-partner-form-card input[type="password"],
.rs-partner-form-card input[type="tel"],
.rs-partner-form-card input[type="url"],
.rs-partner-form-card textarea,
.rs-partner-form-card select {
	width: 100%;
	min-height: 52px;
	padding: 12px 16px;
	color: var(--rs-text);
	background: #ffffff;
	border: 1px solid #e8e0e4;
	border-radius: 14px;
	outline: none;
	font-size: 15px;
}

.rs-partner-form-card textarea {
	min-height: 110px;
	resize: vertical;
}

.rs-partner-form-card input:focus,
.rs-partner-form-card textarea:focus,
.rs-partner-form-card select:focus {
	border-color: var(--rs-primary);
	box-shadow: 0 0 0 4px rgba(96, 0, 51, 0.08);
}

.rs-partner-form-card label {
	color: var(--rs-text);
	font-weight: 700;
}

.rs-partner-form-card button,
.rs-partner-form-card input[type="submit"],
.rs-partner-form-card .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 24px;
	color: #ffffff !important;
	background: var(--rs-primary) !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-weight: 800;
	text-decoration: none !important;
	cursor: pointer;
}

.rs-partner-form-card button:hover,
.rs-partner-form-card input[type="submit"]:hover,
.rs-partner-form-card .button:hover {
	background: var(--rs-primary-dark) !important;
}

.rs-form-fallback {
	padding: 24px;
	background: #fff7f1;
	border: 1px solid rgba(96, 0, 51, 0.08);
	border-radius: 20px;
}

.rs-form-fallback h3 {
	margin: 0 0 12px;
	color: var(--rs-text);
	font-size: 26px;
}

.rs-form-fallback p {
	margin: 0 0 18px;
	color: var(--rs-muted);
	line-height: 1.7;
}

/* Responsive Partner Page */
@media (max-width: 1024px) {
	.rs-partner-hero-grid,
	.rs-partner-pricing-grid,
	.rs-partner-registration-grid {
		grid-template-columns: 1fr;
	}

	.rs-partner-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rs-partner-process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rs-partner-registration-info {
		position: static;
	}
}

@media (max-width: 767px) {
	.rs-partner-hero {
		padding: 70px 0 65px;
	}

	.rs-partner-hero-content h1 {
		font-size: 42px;
	}

	.rs-partner-hero-content p {
		font-size: 16px;
	}

	.rs-partner-card-inner {
		padding: 28px;
	}

	.rs-partner-benefits-grid,
	.rs-partner-process-grid {
		grid-template-columns: 1fr;
	}

	.rs-partner-pricing-section,
	.rs-partner-registration-section {
		padding: 60px 0;
	}

	.rs-partner-pricing-card h3 {
		font-size: 48px;
	}

	.rs-partner-form-card {
		padding: 22px;
		border-radius: 22px;
	}
}