/* ── Base ─────────────────────────────────────────────────────────────── */
.dps-wrap {
	max-width: 980px;
	margin: 0 auto;
	font-family: inherit;
	color: inherit;
	box-sizing: border-box;
}
.dps-wrap *, .dps-wrap *::before, .dps-wrap *::after { box-sizing: border-box; }

/* ── Package card ─────────────────────────────────────────────────────── */
.dps-package-card {
	background: #fff;
	border: 1px solid #e4e8f0;
	border-top: 4px solid #1a73e8;
	border-radius: 10px;
	padding: 24px 28px;
	margin-bottom: 28px;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
	display: flex;
	align-items: flex-start;
	gap: 28px;
}
.dps-pkg-body { flex: 1; min-width: 0; }
.dps-package-card h3 { margin: 0 0 8px; font-size: 1.2em; font-weight: 700; color: #1a1a2e; }
.dps-package-card p  { margin: 0 0 12px; color: #555; font-size: .95em; }
.dps-package-card ul { margin: 0; padding: 0; list-style: none; }
.dps-package-card ul li { padding: 3px 0; font-size: .92em; color: #444; }
.dps-pkg-price-block {
	flex-shrink: 0;
	display: flex; flex-direction: column; align-items: center;
	background: #f4f8ff; border: 2px solid #1a73e8; border-radius: 10px;
	padding: 20px 24px; text-align: center; min-width: 150px;
}
.dps-pkg-price-label { font-size: .75em; color: #888; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.dps-pkg-price { font-size: 2.2em; font-weight: 800; color: #1a73e8; line-height: 1; margin-bottom: 14px; }
.dps-btn-pkg {
	background: #1a73e8; color: #fff; border: none;
	padding: 10px 20px; border-radius: 7px;
	font-size: .9em; font-weight: 700; cursor: pointer;
	transition: background .15s; white-space: nowrap; font-family: inherit;
}
.dps-btn-pkg:hover { background: #1558b0; }

/* ── Main tabs ────────────────────────────────────────────────────────── */
.dps-main-tabs {
	display: flex; gap: 8px; flex-wrap: wrap;
	margin-bottom: 20px;
}
.dps-main-tab {
	padding: 8px 20px;
	border: 2px solid #d0d5e0; border-radius: 24px;
	background: #fff; font-size: .93em; font-weight: 600;
	color: #555; cursor: pointer;
	transition: all .18s; font-family: inherit;
	line-height: 1.4;
}
.dps-main-tab:hover {
	border-color: #1a73e8; color: #1a73e8;
}
.dps-wrap .dps-main-tab.active {
	background: linear-gradient(135deg, #2684ff 0%, #1a73e8 100%) !important;
	border-color: transparent !important;
	color: #fff !important;
	box-shadow: 0 2px 8px rgba(26,115,232,.28);
}

/* ── Category pills ───────────────────────────────────────────────────── */
.dps-cats-wrap {
	display: flex; flex-wrap: wrap; gap: 6px;
	margin-bottom: 14px;
}
.dps-cat {
	padding: 5px 14px;
	border: 1px solid #d8dde8; border-radius: 20px;
	background: #fff; font-size: .84em; font-weight: 600;
	color: #555; cursor: pointer; transition: all .15s; font-family: inherit;
}
.dps-cat span { font-weight: 400; opacity: .7; }
.dps-cat:hover  { border-color: #1a73e8; color: #1a73e8; }
.dps-cat.active { background: #1a73e8; border-color: #1a73e8; color: #fff; }
.dps-cat.active span { opacity: .85; }

/* ── Toolbar ──────────────────────────────────────────────────────────── */
.dps-toolbar {
	display: flex; align-items: center;
	justify-content: space-between; flex-wrap: wrap;
	gap: 10px; margin-bottom: 12px;
}
#dps-search {
	flex: 1; min-width: 180px; max-width: 300px;
	padding: 8px 14px; border: 1px solid #d0d5e0;
	border-radius: 8px; font-size: .93em;
	outline: none; transition: border-color .2s; font-family: inherit;
}
#dps-search:focus { border-color: #1a73e8; }
.dps-currency-tabs { display: flex; gap: 4px; }
.dps-cur {
	padding: 6px 14px; border: 1px solid #d0d5e0; border-radius: 20px;
	background: #fff; font-size: .84em; font-weight: 600;
	color: #555; cursor: pointer; transition: all .15s; font-family: inherit;
}
.dps-cur:hover  { border-color: #1a73e8; color: #1a73e8; }
.dps-cur.active { background: #1a73e8; border-color: #1a73e8; color: #fff; }

/* ── Price table ──────────────────────────────────────────────────────── */
.dps-table-wrap { overflow-x: auto; border: 1px solid #e4e8f0; border-radius: 10px; }
.dps-table { width: 100%; border-collapse: collapse; font-size: .92em; }
.dps-table th {
	background: #f7f9fc; text-align: left;
	padding: 10px 14px; font-weight: 600;
	border-bottom: 2px solid #e4e8f0; white-space: nowrap; color: #333;
}
.dps-table td { padding: 8px 14px; border-bottom: 1px solid #f0f2f5; vertical-align: middle; }
.dps-table tbody tr:last-child td { border-bottom: none; }
.dps-table tbody tr:hover td { background: #f7faff; }
.dps-btn-order {
	background: linear-gradient(135deg, #2684ff 0%, #1a73e8 100%);
	color: #fff; border: none;
	padding: 5px 16px; border-radius: 20px;
	cursor: pointer; font-size: .82em; font-weight: 600;
	white-space: nowrap; transition: all .18s;
	box-shadow: 0 2px 8px rgba(26,115,232,.28);
	font-family: inherit; letter-spacing: .01em;
}
.dps-btn-order:hover {
	background: linear-gradient(135deg, #1a73e8 0%, #1052cc 100%);
	box-shadow: 0 4px 14px rgba(26,115,232,.42);
	transform: translateY(-1px);
}
.dps-btn-order--solid {
	background: linear-gradient(135deg, #1a73e8 0%, #1052cc 100%);
}
#dps-no-results { text-align: center; padding: 20px; color: #999; }
.dps-sync-note { font-size: .8em; color: #aaa; margin-top: 10px; }

/* ── Mail panel ───────────────────────────────────────────────────────── */
.dps-mail-features {
	display: flex; flex-wrap: wrap; gap: 10px 20px;
	margin-bottom: 22px; padding: 14px 18px;
	background: #f7f9fc; border-radius: 8px; border: 1px solid #e4e8f0;
}
.dps-mail-features span { font-size: .9em; color: #444; font-weight: 500; }

.dps-mail-plans {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 14px;
	margin-bottom: 14px;
}
.dps-mail-plan {
	position: relative;
	background: #fff; border: 1px solid #e4e8f0; border-radius: 10px;
	padding: 18px 14px 16px; text-align: center;
	transition: box-shadow .2s, transform .2s;
}
.dps-mail-plan:hover { box-shadow: 0 4px 16px rgba(26,115,232,.12); transform: translateY(-2px); }
.dps-mail-plan--popular {
	border-color: #1a73e8; border-width: 2px;
	box-shadow: 0 4px 16px rgba(26,115,232,.15);
}
.dps-plan-badge {
	position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
	background: #1a73e8; color: #fff;
	font-size: .72em; font-weight: 700; white-space: nowrap;
	padding: 3px 10px; border-radius: 10px;
}
.dps-plan-name  { font-size: .85em; font-weight: 700; color: #333; margin-bottom: 6px; }
.dps-plan-disk  { font-size: 1.3em; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.dps-plan-price {
	font-size: 1.2em; font-weight: 800; color: #1a73e8;
	margin-bottom: 14px; line-height: 1.2;
}
.dps-plan-price span { font-size: .65em; font-weight: 500; color: #888; }
.dps-plan-info { font-size: .78em; color: #888; margin-bottom: 8px; }

/* ── Service chips (multi-select basket) ─────────────────────────────── */
#dps-svc-selected { margin-bottom: 16px; }
#dps-svc-selected > p { font-size: .88em; font-weight: 600; color: #333; margin: 0 0 8px; }
.dps-svc-chips  { display: flex; flex-wrap: wrap; gap: 6px; }
.dps-svc-chip {
	display: inline-flex; align-items: center; gap: 5px;
	background: #e8f0fe; color: #1a5cc8;
	border-radius: 16px; padding: 4px 10px 4px 14px;
	font-size: .83em; font-weight: 600;
}
.dps-svc-chip-rm {
	background: none; border: none; cursor: pointer;
	color: #1a73e8; font-size: 1.1em; font-weight: 700;
	line-height: 1; padding: 0;
}
.dps-svc-chip-rm:hover { color: #c62828; }

/* ── Order form ───────────────────────────────────────────────────────── */
.dps-form-wrap {
	background: #f7f9fc; border: 1px solid #e4e8f0;
	border-radius: 10px; padding: 24px 28px; margin-top: 28px;
}
.dps-form-wrap h3 { margin: 0 0 18px; font-size: 1.1em; color: #1a1a2e; }
.dps-form-wrap label { display: block; margin-bottom: 14px; font-size: .9em; font-weight: 600; color: #333; }
.dps-form-wrap input[type="text"],
.dps-form-wrap input[type="email"],
.dps-form-wrap input[type="tel"],
.dps-form-wrap textarea {
	display: block; width: 100%; max-width: 420px;
	margin-top: 4px; padding: 9px 12px;
	border: 1px solid #ccd2dd; border-radius: 7px;
	font-size: .96em; background: #fff; font-family: inherit;
	transition: border-color .2s;
}
.dps-form-wrap input:focus, .dps-form-wrap textarea:focus { outline: none; border-color: #1a73e8; }
.dps-form-actions { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.dps-btn-submit {
	background: #1a73e8; color: #fff; border: none;
	padding: 10px 28px; border-radius: 7px;
	font-size: .96em; font-weight: 700; cursor: pointer;
	transition: background .15s; font-family: inherit;
}
.dps-btn-submit:hover    { background: #1558b0; }
.dps-btn-submit:disabled { opacity: .6; cursor: default; }
.dps-form-actions button[type="button"] {
	background: none; border: 1px solid #ccd2dd;
	padding: 10px 20px; border-radius: 7px;
	font-size: .96em; color: #666; cursor: pointer; font-family: inherit;
}
.dps-form-actions button[type="button"]:hover { background: #eee; }
#dps-form-msg { margin-top: 12px; font-size: .92em; font-weight: 600; min-height: 1.4em; }
#dps-form-msg.dps-ok  { color: #1a7a1a; }
#dps-form-msg.dps-err { color: #c62828; }

/* ── Services panel ───────────────────────────────────────────────────── */
.dps-svc-section { margin-bottom: 36px; }
.dps-svc-head    { margin-bottom: 16px; }
.dps-svc-cat     { font-size: 1.1em; font-weight: 800; color: #1a1a2e; margin-bottom: 2px; }
.dps-svc-cat-sub { font-size: .85em; color: #999; font-style: italic; }
.dps-svc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
}
.dps-svc-card {
	background: #fff; border: 1px solid #e4e8f0; border-radius: 10px;
	padding: 20px 18px; display: flex; flex-direction: column;
	transition: box-shadow .2s;
}
.dps-svc-card:hover { box-shadow: 0 4px 16px rgba(26,115,232,.1); }
.dps-svc-name  { font-size: .97em; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.dps-svc-desc  { font-size: .84em; color: #555; line-height: 1.55; flex: 1; margin-bottom: 14px; }
.dps-svc-inv   { font-size: .72em; text-transform: uppercase; letter-spacing: .06em; color: #aaa; margin-bottom: 3px; }
.dps-svc-price { font-size: .95em; font-weight: 800; color: #1a73e8; margin-bottom: 14px; }
.dps-svc-price.dps-svc-price--special { color: #888; font-style: italic; }
.dps-btn-call {
	display: block; text-align: center; text-decoration: none;
	background: linear-gradient(135deg, #2684ff 0%, #1a73e8 100%);
	color: #fff !important; border: none;
	padding: 7px 16px; border-radius: 20px;
	font-size: .83em; font-weight: 600;
	transition: all .18s; box-shadow: 0 2px 8px rgba(26,115,232,.28);
	font-family: inherit; cursor: pointer; line-height: 1.4;
}
.dps-btn-call:hover {
	background: linear-gradient(135deg, #1a73e8 0%, #1052cc 100%);
	box-shadow: 0 4px 14px rgba(26,115,232,.42);
	transform: translateY(-1px);
}

/* ── Mobile ───────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
	.dps-package-card { flex-direction: column; padding: 18px 16px; gap: 18px; }
	.dps-pkg-price-block { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; padding: 14px 18px; }
	.dps-pkg-price { margin-bottom: 0; font-size: 1.8em; }
	.dps-main-tab  { padding: 10px 14px; font-size: .9em; }
	.dps-cats-wrap { gap: 5px; }
	.dps-cat       { padding: 4px 10px; font-size: .8em; }
	.dps-toolbar   { flex-direction: column; align-items: stretch; }
	#dps-search    { max-width: 100%; }
	.dps-currency-tabs { justify-content: flex-start; }
	.dps-table th, .dps-table td { padding: 7px 10px; font-size: .88em; }
	.dps-mail-plans { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
	.dps-form-wrap  { padding: 18px 14px; }
}
@media (max-width: 400px) {
	.dps-mail-plans { grid-template-columns: 1fr 1fr; }
	.dps-pkg-price-block { flex-direction: column; }
	.dps-pkg-price { margin-bottom: 12px; }
}
