.seller-hero {
	height: 60vh;
	background: linear-gradient(120deg, #c9a13c 0%, #9c7b1f 45%, #1a1a1a 100%);
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	padding-bottom: 70px;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	margin-bottom: 15px;
	animation: fadeUp 0.8s ease forwards;
}

.hero-content h1 {
	font-size: 2.8rem;
	font-weight: 700;
}

.hero-content h1 span {
	color: #ffe08a;
}

.hero-content p {
	margin-top: 15px;
	max-width: 520px;
	opacity: 0.9;
}

.hero-btns {
	display: flex;
	gap: 15px;
}

.hero-btns .btn {
	padding: 14px 30px;
	border-radius: 50px;
	transition: 0.3s ease;
}

.btn-primary {
	background: #fff;
	color: #000;
}

.btn-primary:hover {
	transform: translateY(-2px);
}

.btn-outline {
	border: 1px solid #fff;
	color: #fff;
}

.btn-outline:hover {
	background: #fff;
	color: #000;
}

.hero-image img {
	max-width: 85%;
	border-radius: 10px;
	animation: floatImage 4s ease-in-out infinite;
}

.seller-stats {
	margin-top: -60px;
	z-index: 2;
	position: relative;
}

.stats-card {
	background: #fff;
	border-radius: 20px;
	padding: 35px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
	text-align: center;
	flex: 1;
}

.stat-item h3 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--gold);
}

.stat-item p {
	margin: 8px 0 0;
	font-size: 14px;
	color: #444;
	line-height: 1.4;
}

.stat-divider {
	width: 1px;
	height: 50px;
	background: #e0e0e0;
}

.why-sell {
	padding: 80px 0;
	/* background: #f9fafb; */
}

.section-title-text h2 {
	font-size: 2.4rem;
	font-weight: 700;
}

.section-title-text h2 span {
	color: #c9a13c;
}

.section-title-text p {
	margin-top: 10px;
	color: #666;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

.why-card {
	background: #fff;
	padding: 35px 25px;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
	transition: all 0.35s ease;
	position: relative;
	border: 1px solid #e0e0e0;
	overflow: hidden;
}

/* Hover effect */
.why-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(201, 161, 60, 0.25);
}

/* Glow effect */
.why-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at top,
		rgba(201, 161, 60, 0.15),
		transparent 60%
	);
	opacity: 0;
	transition: 0.3s;
}

.why-card:hover::after {
	opacity: 1;
}

.why-card .icon {
	font-size: 40px;
	margin-bottom: 20px;
}

.why-card h5 {
	font-weight: 600;
	margin-bottom: 10px;
}

.why-card p {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

.why-card {
	opacity: 0;
	transform: translateY(40px);
}

.why-card.show {
	opacity: 1;
	transform: translateY(0);
}
.how-it-works {
	padding: 80px 20px;
	background: #fafafa;
	text-align: center;
}

.how-it-works h2 {
	font-size: 34px;
	margin-bottom: 60px;
}

.timeline {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	max-width: 1300px;
	margin: auto;
	height: 220px;
}

.step {
	background: #fff;
	padding: 30px 22px;
	border-radius: 18px;
	width: 40%;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	transition: 0.3s ease;
	height: 100%;
}

.step:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(236, 184, 72, 0.25);
}

.circle {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--gold);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 700;
	margin: 0 auto 15px;
}

.step h4 {
	font-size: 17px;
	margin-bottom: 8px;
}

.step p,
.step li {
	font-size: 14px;
	color: #555;
}

.step ul {
	padding-left: 16px;
	text-align: left;
}

/* CONNECTING LINE */
.line {
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin-top: 48px;
}

.sell-categories {
	padding: 90px 20px;
	background: #fff;
	text-align: center;
}

.sell-categories h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.sell-categories .subtitle {
	color: #666;
	margin-bottom: 50px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: auto;
}

.category-card {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	height: 300px;
	cursor: pointer;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.category-card .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15));
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 25px;
	opacity: 0;
	transition: 0.4s ease;
}

.category-card h3 {
	color: #fff;
	font-size: 20px;
	letter-spacing: 0.5px;
}

/* HOVER EFFECT */
.category-card:hover img {
	transform: scale(1.15);
}

.category-card:hover .overlay {
	opacity: 1;
}
.sb-section {
	padding: 60px 20px;
	background: linear-gradient(180deg, #fff9f2, #ffffff);
}

.sb-wrapper {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

/* Left */
.sb-badge {
	display: inline-block;
	background: rgba(250, 244, 227, 0.55);
	color: var(--gold);
	padding: 6px 14px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 15px;
}

.sb-title {
	font-size: 38px;
	line-height: 1.3;
	color: #1f2937;
}

.sb-title span {
	color: #c9a24d;
}

.sb-desc {
	margin: 20px 0 30px;
	color: #555;
	font-size: 16px;
}

.sb-list {
	list-style: none;
	padding: 0;
	margin-bottom: 40px;
}

.sb-list li {
	font-size: 17px;
	margin-bottom: 12px;
	color: #333;
}

.sb-right {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.sb-card {
	background: #ffffff;
	padding: 32px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(201, 162, 77, 0.15);
	transition: all 0.2s ease;
}

.sb-card:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 30px 55px rgba(201, 162, 77, 0.3);
}

.sb-card h4 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #1f2937;
}

.sb-card p {
	font-size: 15px;
	color: #555;
}

/* Animation */
.sb-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.sb-animate.sb-show {
	opacity: 1;
	transform: translateY(0);
}

.sb-delay-1 {
	transition-delay: 0.2s;
}
.sb-delay-2 {
	transition-delay: 0.2s;
}
.sb-delay-3 {
	transition-delay: 0.2s;
}

.ts-section {
	padding: 60px 20px;
	background: linear-gradient(180deg, #ffffff, #fff9f2);
}

.ts-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

.ts-badge {
	display: inline-block;
	background: rgba(201, 162, 77, 0.15);
	color: #c9a24d;
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 15px;
}

.ts-header h2 {
	font-size: 38px;
	color: #1f2937;
}

.ts-header h2 span {
	color: #c9a24d;
}

.ts-header p {
	margin-top: 10px;
	color: #555;
	font-size: 16px;
}

/* Slider */
.ts-slider {
	margin-top: 60px;
	display: flex;
	gap: 30px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 20px;
}

.ts-slider::-webkit-scrollbar {
	display: none;
}

.ts-card {
	min-width: 340px;
	background: #ffffff;
	padding: 35px;
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	scroll-snap-align: center;
	transition: all 0.4s ease;
}

.ts-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 30px 60px rgba(201, 162, 77, 0.35);
}

.ts-stars {
	color: #f5b301;
	font-size: 18px;
	margin-bottom: 15px;
}

.ts-card p {
	font-size: 15px;
	color: #555;
	margin-bottom: 20px;
}

.ts-card h4 {
	font-size: 17px;
	color: #1f2937;
}

.ts-card span {
	font-size: 13px;
	color: #777;
}

/* Brand Logos */
.ts-logos {
	margin-top: 70px;
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
	opacity: 0.7;
}

.ts-logos img {
	height: 40px;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.ts-logos img:hover {
	filter: grayscale(0%);
	transform: scale(1.1);
}

@media (max-width: 1024px) {
	.timeline {
		flex-direction: column;
		align-items: center;
	}

	.line {
		width: 2px;
		height: 40px;
		margin: 10px 0;
		background: linear-gradient(to bottom, #ecaa48, #f97316);
	}
}

/* Animations */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatImage {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.seller-hero {
		height: auto;
		padding: 60px 0;
	}

	.hero-content h1 {
		font-size: 2.1rem;
	}

	.hero-btns {
		flex-direction: column;
	}
	.stats-card {
		flex-direction: column;
		gap: 25px;
	}

	.stat-divider {
		display: none;
	}

	.stat-item h3 {
		font-size: 1.8rem;
	}
	.why-sell {
		padding: 50px 0;
	}

	.section-title-text h2 {
		font-size: 2rem;
	}
	.ts-header h2 {
		font-size: 28px;
	}

	.ts-card {
		min-width: 280px;
	}
	.sb-wrapper {
		grid-template-columns: 1fr;
	}

	.sb-right {
		grid-template-columns: 1fr;
	}

	.sb-title {
		font-size: 30px;
	}
}
