.dzc-panel,
.dzc-form,
.dzc-dashboard-panel,
.dzc-store-hero {
	border: 1px solid #ececec;
	border-radius: 8px;
	background: #ffffff;
	padding: 28px;
	box-shadow: 0 14px 34px rgba(17, 17, 17, 0.04);
}

.dzc-form {
	display: grid;
	gap: 18px;
}

.dzc-form label {
	display: grid;
	gap: 8px;
	color: #111111;
	font-size: 13px;
	font-weight: 600;
}

.dzc-form input,
.dzc-form textarea,
.dzc-form select {
	width: 100%;
	min-height: 44px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	padding: 10px 12px;
	background: #ffffff;
	color: #222222;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dzc-form input:focus,
.dzc-form textarea:focus,
.dzc-form select:focus {
	border-color: #ff4d00;
	box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.12);
	outline: none;
}

.dzc-form textarea {
	min-height: 110px;
}

.dzc-check {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: center;
	gap: 9px !important;
}

.dzc-check input {
	width: auto;
	min-height: 0;
}

.dzc-grid {
	display: grid;
	gap: 16px;
}

.dzc-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dzc-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dzc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 44px;
	border: 0;
	border-radius: 6px;
	background: #ff4d00;
	color: #ffffff;
	padding: 11px 20px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(255, 77, 0, 0.16);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.dzc-btn:hover {
	background: #111111;
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(17, 17, 17, 0.14);
}

.dzc-btn--light {
	background: #111111;
	box-shadow: none;
}

.dzc-btn--ghost {
	border: 1px solid #ff4d00;
	background: #ffffff;
	color: #ff4d00;
	box-shadow: none;
}

.dzc-btn--ghost:hover {
	border-color: #111111;
	background: #111111;
	color: #ffffff;
}

.dzc-dashboard {
	display: grid;
	gap: 18px;
	color: #181818;
}

.dzc-dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	background: linear-gradient(135deg, #111111 0%, #272727 62%, #ff4d00 180%);
	padding: 24px;
	color: #ffffff;
}

.dzc-dashboard-header h2 {
	margin: 4px 0 6px;
	color: #ffffff;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.12;
}

.dzc-dashboard-header p {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.55;
}

.dzc-dashboard-header .dzc-btn {
	flex: 0 0 auto;
	background: #ffffff;
	color: #111111;
}

.dzc-dashboard-header .dzc-btn:hover {
	background: #ff4d00;
	color: #ffffff;
}

.dzc-dashboard-eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	padding: 5px 10px;
	color: #ffffff;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
}

.dzc-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	background: #ffffff;
	padding: 8px;
}

.dzc-tabs a {
	padding: 10px 14px;
	border-radius: 6px;
	background: transparent;
	color: #343434;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
	text-decoration: none;
}

.dzc-tabs a.is-active,
.dzc-tabs a:hover {
	background: #ff4d00;
	border-color: #ff4d00;
	color: #ffffff;
}

.dzc-dashboard-panel {
	min-height: 280px;
}

.dzc-dashboard-panel > h2 {
	margin: 0 0 18px;
	font-size: clamp(22px, 2.6vw, 28px);
	line-height: 1.2;
}

.dzc-overview-intro {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.dzc-overview-intro span {
	display: inline-block;
	margin-bottom: 7px;
	color: #ff4d00;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.dzc-overview-intro h2 {
	margin: 0 0 6px;
	color: #111111;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.15;
}

.dzc-overview-intro p {
	margin: 0;
	color: #6f6f6f;
}

.dzc-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 18px;
}

.dzc-stats > div {
	position: relative;
	overflow: hidden;
	min-height: 128px;
	padding: 18px;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid #eeeeee;
	box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.dzc-stats > div::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #ff4d00;
}

.dzc-stats strong {
	display: block;
	margin: 10px 0 4px;
	color: #111111;
	font-size: clamp(22px, 2.8vw, 30px);
	line-height: 1.2;
}

.dzc-stats span {
	color: #6a6a6a;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.dzc-stats small {
	display: block;
	color: #777777;
	font-size: 12px;
	line-height: 1.35;
}

.dzc-quick-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.dzc-quick-actions a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	background: #fafafa;
	padding: 0 16px;
	color: #111111;
	font-weight: 600;
	text-decoration: none;
}

.dzc-quick-actions a::after {
	content: ">";
	color: #ff4d00;
}

.dzc-quick-actions a:hover {
	border-color: #ff4d00;
	background: #fff4ed;
	color: #ff4d00;
}

.dzc-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	overflow: hidden;
}

.dzc-table th,
.dzc-table td {
	border-bottom: 1px solid #eeeeee;
	padding: 13px 14px;
	text-align: left;
	vertical-align: top;
}

.dzc-table th {
	background: #fafafa;
	color: #111111;
	font-size: 13px;
	font-weight: 700;
}

.dzc-inline-form {
	display: inline;
}

.dzc-inline-form button {
	border: 0;
	background: transparent;
	color: #ff4d00;
	cursor: pointer;
	font-weight: 600;
}

.dzc-notice {
	padding: 13px 15px;
	border-radius: 6px;
	font-weight: 600;
}

.dzc-notice--success {
	background: #ecfff3;
	color: #116132;
}

.dzc-notice--error {
	background: #fff1ee;
	color: #9a1b00;
}

.dzc-vendor-status h3 {
	margin: 0 0 8px;
	color: #111111;
	font-size: 22px;
}

.dzc-vendor-status p {
	margin: 0;
	color: #555555;
}

.dzc-vendor-status--pending {
	background: #fff8e5;
	border-color: #f4d27d;
}

.dzc-loop-vendor {
	margin: 0 0 8px;
	color: #6f6f6f;
	font-size: 12px;
	font-weight: 700;
}

.dzc-loop-vendor a,
.dzc-single-vendor a {
	color: #ff4d00;
}

.dzc-single-vendor {
	margin-bottom: 12px;
	padding: 10px 12px;
	border-radius: 6px;
	background: #fff4ed;
	color: #111111;
	font-weight: 800;
}

.dzc-store-hero {
	position: relative;
	margin-bottom: 24px;
	overflow: hidden;
	background: #111111;
	background-position: center;
	background-size: cover;
	color: #ffffff;
}

.dzc-store-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.35));
}

.dzc-store-hero > div {
	position: relative;
	max-width: 650px;
	z-index: 1;
}

.dzc-store-hero span {
	color: #ff4d00;
	font-weight: 900;
	text-transform: uppercase;
}

.dzc-store-hero h1 {
	margin: 6px 0 10px;
	color: #ffffff;
	font-size: clamp(32px, 5vw, 54px);
}

.dzc-store-hero ul {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 800px) {
	.dzc-grid--2,
	.dzc-grid--3,
	.dzc-stats,
	.dzc-quick-actions {
		grid-template-columns: 1fr;
	}

	.dzc-dashboard-header,
	.dzc-overview-intro {
		display: grid;
	}

	.dzc-dashboard-header .dzc-btn,
	.dzc-overview-intro .dzc-btn {
		width: 100%;
	}

	.dzc-tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dzc-tabs a {
		text-align: center;
	}

	.dzc-table {
		display: block;
		overflow-x: auto;
	}
}

@media (max-width: 520px) {
	.dzc-panel,
	.dzc-form,
	.dzc-dashboard-panel,
	.dzc-store-hero,
	.dzc-dashboard-header {
		padding: 18px;
	}

	.dzc-tabs {
		grid-template-columns: 1fr;
	}
}
