:root {
	--gold: #c8a84d;
	/* --gold:#EBBD3C; */
	--gold-soft: #f3e4b0;
	--bg-light: #f8f3ea;
	--text-dark: #222;
}

.page-title {
	font-size: 22px;
	font-weight: 600;
}

.dashboard-seller {
	background: radial-gradient(
		circle at top,
		#fff7df 0,
		#f8f3ea 40%,
		#f0e4d0 100%
	);
	font-family: "Poppins", sans-serif;
	color: var(--text-dark);
}

/* ===== TOP NAV ===== */
.top-nav {
	background: #111;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.brand-logo img {
	height: 40px;
}

.brand-title {
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 20px;
}

.brand-title span {
	color: var(--gold);
}

.user-box {
	background: #fff;
	padding: 6px 16px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.user-box img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}

/* ===== MENU BAR (GLASS) ===== */
.menu-wrapper {
	padding: 0 20px;
	/* margin-top:-10px; */
}

.menu-bar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border-radius: 0 0 18px 18px;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 32px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--gold);
}

.menu-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #545454;
	cursor: pointer;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: all 0.25s ease;
	white-space: nowrap;
	text-decoration: none;
}

.menu-item i {
	font-size: 18px;
}

.menu-item.active {
	color: var(--gold);
	border-bottom: 2px solid var(--gold);
}

.menu-item:hover {
	color: var(--gold);
}

/* ===== MAIN ===== */
.main-area {
	height: 100%;
	min-height: 800px;
	padding: 30px;
	background: radial-gradient(
		circle at top,
		#fff7df 0,
		#f8f3ea 40%,
		#f0e4d0 100%
	);
}

.page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
}

.breadcrumbs {
	font-size: 13px;
	color: #888;
}

.breadcrumbs span {
	color: var(--gold);
	font-weight: 500;
}

/* ===== STAT CARDS ===== */
.stat-card {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 18px;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 18px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
	width: 58px;
	height: 58px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--gold-soft), var(--gold));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #3b340d;
	box-shadow: 0 10px 20px rgba(200, 168, 77, 0.55);
}

.stat-text small {
	font-size: 14px;
	letter-spacing: 1px;
	color: #7d7d7d;
	font-weight: 700;
}

.stat-text h3 {
	margin: 2px 0 0;
	font-weight: 700;
	font-size: 22px;
}

/* ===== TABLE CARD ===== */
.card-lux {
	border: none;
	border-radius: 18px;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.96);
}

.card-lux .card-header {
	border-bottom: none;
	padding: 11px 20px;
	background: linear-gradient(135deg, #111, #3b320f);
	color: #fff;
	font-weight: 500;
}

.product-list-home .table {
	margin-bottom: 0;
}

.product-list-home .table thead {
	background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.product-list-home .table thead th {
	border-bottom: none;
	font-size: 13px;
	color: #3b320f;
}

.product-list-home .table tbody tr td:first-child {
	text-align: center;
}

.product-list-home .table tbody td {
	vertical-align: middle;
	font-size: 14px;
}

.form-control:focus {
	color: var(--bs-body-color);
	background-color: var(--bs-body-bg);
	border-color: #c4a952;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(196, 169, 82, 0.25);
}

.form-select:focus,
.form-check-input:focus {
	border-color: #c4a952;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgb(196, 169, 82, 0.25);
}

.form-check-input:checked {
	background-color: var(--gold);
	border-color: var(--gold);
}

.variant-card {
	/* background: #faf8ee;
    border: 1px solid var(--gold); */
	box-shadow: 0px 0px 12px 0px #cecdcd;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 15px;
}

.variant-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.variant-title-main {
	color: var(--gold);
	font-weight: 700;
}

#variantModalTitle {
	font-weight: 700;
}

.variant-actions button {
	border: #c1a146;
	/* background: var(--gold); */
	font-size: 18px;
	cursor: pointer;
	margin-left: 8px;
	border-radius: 12px;
	color: #ffffff;
	padding: 5px 25px;
}

.variant-actions .edit-btn {
	color: #ffffff;
	border-color: #c1a146 !important;

	background-color: var(--gold);
}

.variant-actions .delete-btn {
	/* color: #c00000; */
	border: #c1a146;

	background-color: #c00000;
}

.variant-fields {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 40px;
	font-size: 14px;
}

.variant-fields div {
	min-width: 180px;
}

.filter-icon {
	background: #fff;
	padding: 8px 10px;
	color: #000;
	border-radius: 8px;
	cursor: pointer;
}

#advanceSearchModal .modal-content {
	border-radius: 12px;
	border: 1px solid #e4e4e4;
}

#advanceSearchModal .modal-header {
	background: #f8f8f8;
	border-bottom: 1px solid #e4e4e4;
	padding: 10px 20px;
}

.progress-circle {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: conic-gradient(#d4df02 calc(var(--p) * 1%), #e6e6e6 0);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: #000;
	font-size: 14px;
	/* margin: auto; */
	position: relative;
}

.progress-circle span {
	position: absolute;
}

.progress-circle::before {
	content: "";
	width: 38px;
	height: 38px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
}

.card-gold {
	border-radius: 18px;
	border: 1px solid rgba(200, 168, 77, 0.28);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(8px);
	animation: fadeUp 0.6s ease-out;
}

.gold-header {
	border-radius: 18px 18px 0 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	background: linear-gradient(90deg, #fff, rgba(248, 243, 234, 0.9));
}

.summary-card {
	border-radius: 18px;
	padding: 16px 18px;
	background: linear-gradient(135deg, #fffdf5, #f5edd9);
	border: 1px solid rgba(200, 168, 77, 0.35);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
	animation: fadeUp 0.6s ease-out;
}

.summary-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.09);
}

.summary-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	font-size: 18px;
	color: #fff;
	background: linear-gradient(135deg, #f1d37a, #c8a84d);
	box-shadow: 0 0 0 3px rgba(248, 239, 204, 0.8);
}

.section-title {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.badge-gold {
	background: var(--gold);
	color: #fff;
}

/* circular completion */
.progress-circle {
	--p: 65;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: conic-gradient(var(--gold) calc(var(--p) * 1%), #e8ddc3 0);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	position: relative;
	box-shadow:
		0 0 0 3px #fff,
		0 10px 25px rgba(0, 0, 0, 0.08);
	animation: rotateIn 0.9s ease-out;
}

.progress-circle::before {
	content: "";
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
}

.progress-circle span {
	position: relative;
	font-weight: 700;
	font-size: 15px;
}

.table-smaller td,
.table-smaller th {
	padding: 0.45rem 0.6rem;
	font-size: 13px;
}

.shadow-soft {
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

/* animations */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rotateIn {
	from {
		opacity: 0;
		transform: scale(0.7) rotate(-40deg);
	}

	to {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}

@media (max-width: 768px) {
	.summary-card {
		margin-bottom: 10px;
	}
}

.lux-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #f2e7d5;
	overflow: hidden;
}

.lux-header {
	background: linear-gradient(135deg, #111, #3b320f);
	padding: 14px 20px;
	border-bottom: 1px solid #f1e7d2;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lux-header .title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.lux-header a {
	font-size: 14px;
	color: #ffffff;
}

.lux-table thead {
	background: #faf6ef;
	font-weight: 600;
	color: #a48337;
}

.lux-table tbody tr {
	transition: 0.2s;
}

.lux-table tbody tr:hover {
	background: #fff8e6;
}

.lux-table td {
	padding: 14px 20px;
	vertical-align: middle;
	font-size: 14px;
}

.product-name {
	font-weight: 600;
	color: #333;
}

.product-category {
	color: #a78c64;
	font-size: 13px;
}

.revenue {
	font-weight: 700;
	color: #c19a44;
}

.lux-action-btn {
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid #d8c6a2;
	background: #fff;
	font-weight: 600;
	color: #7b6431;
	transition: 0.2s;
	text-align: left;
}

.lux-action-btn i {
	margin-right: 8px;
}

.lux-action-btn:hover {
	background: #fff5dd;
	border-color: #c19a44;
	color: #c19a44;
}

.lux-noti-list li {
	padding: 6px 0;
	font-size: 13px;
}

.lux-noti-list i {
	font-size: 9px;
	margin-right: 6px;
}

.status-badge {
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

.status-processing {
	background: #ffe9b3;
	color: #8a6b1e;
}

.status-paid {
	background: #d4f5d4;
	color: #2f7a2f;
}

.status-cod {
	background: #dedede;
	color: #555;
}

.status-shipped {
	background: #d8f4ff;
	color: #1a75a3;
}

.status-cancelled {
	background: #ffd4d4;
	color: #b30000;
}
/* mobile */
@media (max-width: 767.98px) {
	.main-area {
		padding: 10px;
	}
}

/* ===== Activation Section Layout ===== */
.act-section {
	padding: 80px 0;
	background: #fbf6ef;
}

.act-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.act-container .act-left,
.act-container .act-right {
	width: 100%;
}

.act-container {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr; /* left bigger, right card */
	gap: 60px;
	align-items: start;
}

/* ===== Left Content ===== */
.act-badge {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 999px;
	background: #f3eadb;
	color: #b88b2d;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.act-left h1 {
	margin: 18px 0 12px;
	font-size: 44px;
	line-height: 1.15;
	color: #0f1b2d;
	font-weight: 800;
}

.act-left h1 span {
	display: block;
	margin-top: 8px;
	font-size: 38px;
	color: #b88b2d;
	font-weight: 800;
}

.act-desc {
	max-width: 620px;
	margin: 0 0 26px;
	color: #3f4a57;
	font-size: 16px;
	line-height: 1.8;
}

/* ===== Features Grid (2nd image jaisa) ===== */
.act-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns */
	gap: 18px 46px; /* row gap / column gap */
	margin-top: 10px;
}

.act-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #0f1b2d;
	font-size: 14px;
	font-weight: 600;
}

.act-feature i {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: #b88b2d;
	background: rgba(184, 139, 45, 0.12);
	flex: 0 0 26px;
	font-size: 14px;
}

/* last highlight full width */
.act-feature.highlight {
	grid-column: 1 / -1; /* full row */
	background: #f3eadb;
	border-radius: 14px;
	padding: 14px 16px;
	margin-top: 6px;
}

/* ===== Right Price Card ===== */
.price-card {
	background: #fff;
	border-radius: 22px;
	padding: 34px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.06);
	text-align: center;
}

.price-card h3 {
	margin: 0 0 18px;
	font-size: 20px;
	font-weight: 700;
	color: #0f1b2d;
}

.price {
	font-size: 46px;
	font-weight: 800;
	color: #b88b2d;
	line-height: 1;
}

.price span {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #6a7481;
}

.price-note {
	margin: 16px 0 22px;
	color: #6a7481;
	font-size: 14px;
}

.act-btn {
	width: 100%;
	border: none;
	padding: 14px 18px;
	border-radius: 999px;
	background: #caa247;
	color: #0f1b2d;
	font-weight: 700;
	cursor: pointer;
}

.act-btn:hover {
	filter: brightness(0.97);
}

.act-disclaimer {
	margin: 18px 0 0;
	font-size: 12px;
	color: #7b8794;
	line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
	.act-container {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.act-left h1 {
		font-size: 36px;
	}
	.act-left h1 span {
		font-size: 30px;
	}
}

@media (max-width: 640px) {
	.act-feature-grid {
		grid-template-columns: 1fr; /* mobile me 1 column */
		gap: 14px;
	}
}
