/* Domains — aligned with data / account design language */

.domains-page {
	--store-accent: var(--sf-navy, #2563eb);
	--store-accent-dark: var(--sf-navy-dark, #1e40af);
	--store-accent-soft: var(--sf-navy-soft, rgba(37, 99, 235, 0.08));
	--store-radius: 14px;
}

.domains-page__hero {
	position: relative;
	overflow: visible;
	border-radius: var(--store-radius);
	padding: 1.5rem 1.35rem;
	background: linear-gradient(135deg, var(--store-accent-dark) 0%, var(--store-accent) 55%, var(--sf-navy-light, #3b82f6) 100%);
	box-shadow: 0 10px 32px rgba(37, 99, 235, 0.22);
	color: #fff;
	margin-bottom: 1.25rem;
	isolation: isolate;
}

.domains-page__hero::before {
	content: "";
	position: absolute;
	top: -35%;
	right: -4%;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.domains-page__hero-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem;
	position: relative;
	z-index: 1;
}

.domains-page__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0.4rem;
}

.domains-page__title {
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 0.35rem;
}

.domains-page__desc {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.82);
	max-width: 42rem;
	margin: 0;
}

.domains-page__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	position: relative;
	z-index: 2;
}

.domains-page__hero-actions .btn {
	border-radius: 10px;
	font-weight: 700;
	padding: 0.55rem 0.9rem;
}

.domains-page__btn-primary {
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.domains-page__notice {
	padding: 0.9rem 1rem;
	border-radius: 12px;
	font-size: 0.86rem;
	margin-bottom: 1.15rem;
}

.domains-page__notice--danger {
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.22);
	color: #b91c1c;
}

.domains-page__notice a {
	font-weight: 700;
	color: inherit;
	text-decoration: underline;
}

.domains-page__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.domains-page__toolbar-title {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.98rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	letter-spacing: -0.01em;
}

.domains-page__toolbar-icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--store-accent-soft);
	color: var(--store-accent);
	font-size: 0.95rem;
}

.domains-page__toolbar-meta {
	font-size: 0.8rem;
	font-weight: 600;
	color: #94a3b8;
}

.domains-page__toolbar-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.domains-page__toolbar-actions .btn {
	border-radius: 10px;
	font-weight: 700;
}

.domains-page__card {
	border-radius: var(--store-radius) !important;
	border: 1px solid rgba(148, 163, 184, 0.14) !important;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04) !important;
	background: #fff;
	overflow: visible;
}

.domains-page__actions .dropdown {
	position: static;
}

.domains-page__actions .dropdown-menu {
	z-index: 1080;
}

.domains-page__table {
	width: 100%;
	margin: 0;
	border-collapse: separate;
	border-spacing: 0;
}

.domains-page__table thead th {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #94a3b8;
	background: #f8fafc;
	border-bottom: 1px solid rgba(148, 163, 184, 0.16);
	padding: 0.85rem 1.1rem;
	white-space: nowrap;
}

.domains-page__table tbody td {
	padding: 1rem 1.1rem;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	vertical-align: middle;
	font-size: 0.88rem;
	color: #334155;
}

.domains-page__table tbody tr:last-child td {
	border-bottom: 0;
}

.domains-page__table tbody tr:hover td {
	background: rgba(37, 99, 235, 0.03);
}

.domains-page__host {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
}

.domains-page__favicon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--store-accent-soft);
	color: var(--store-accent);
	font-size: 0.9rem;
}

.domains-page__host-link {
	font-weight: 700;
	color: #0f172a;
	text-decoration: none;
}

.domains-page__host-link:hover {
	color: var(--store-accent);
	text-decoration: none;
}

.domains-page__ext-link {
	color: #94a3b8;
	text-decoration: none;
}

.domains-page__ext-link:hover {
	color: var(--store-accent);
}

.domains-page__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.domains-page__badge--active {
	background: rgba(16, 185, 129, 0.12);
	color: #059669;
}

.domains-page__badge--pending {
	background: rgba(245, 158, 11, 0.14);
	color: #d97706;
}

.domains-page__provision {
	font-size: 0.75rem;
	color: #94a3b8;
	margin-top: 0.35rem;
	max-width: 16rem;
}

.domains-page__meta {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	color: #94a3b8;
}

.domains-page__meta a {
	color: #94a3b8;
	text-decoration: none;
}

.domains-page__meta a:hover,
.domains-page__meta span:hover {
	color: var(--store-accent);
}

.domains-page__actions {
	display: flex;
	justify-content: flex-end;
}

.domains-page__actions .btn {
	border-radius: 9px;
	color: #64748b;
}

.domains-page__actions .btn:hover {
	color: var(--store-accent);
}

.domains-page__empty {
	padding: 0.5rem;
}

.domains-page__pagination {
	margin-top: 1rem;
}

@media (max-width: 575.98px) {
	.domains-page__hero-actions {
		width: 100%;
	}

	.domains-page__hero-actions .btn,
	.domains-page__hero-actions .dropdown {
		flex: 1 1 auto;
	}

	.domains-page__toolbar-actions {
		width: 100%;
	}

	.domains-page__toolbar-actions > * {
		flex: 1 1 auto;
	}

	.domains-page__toolbar-actions .btn {
		width: 100%;
	}
}

@media print {
	.domains-page__hero-actions,
	.domains-page__toolbar-actions,
	.domains-page__actions {
		display: none !important;
	}
}

/* Domain create */

.domain-create-page {
	padding-bottom: 0;
}

.domains-page__btn-ghost {
	font-weight: 600;
	border-radius: 10px;
	padding: 0.55rem 1rem;
	border-color: rgba(255, 255, 255, 0.45) !important;
	color: #fff !important;
}

.domains-page__btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
}

.domain-orders-row-actions {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0.4rem;
}

.domain-orders-row-actions .btn {
	white-space: nowrap;
}

.domain-orders-expires--alert {
	color: #b45309;
	font-weight: 600;
}

.domain-orders-expires-hint {
	margin-top: 0.15rem;
	color: #d97706;
	font-weight: 600;
}

.domains-page .table tbody tr.domain-orders-row--renew td {
	background: rgba(245, 158, 11, 0.06);
}

.domain-search-mode {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.15rem;
}

@media (max-width: 575.98px) {
	.domain-search-mode {
		grid-template-columns: 1fr;
	}
}

.domain-search-mode__option {
	display: grid;
	gap: 0.2rem;
	margin: 0;
	padding: 0.85rem 0.95rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #f8fafc;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.domain-search-mode__option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.domain-search-mode__option.is-active {
	border-color: rgba(37, 99, 235, 0.45);
	background: rgba(37, 99, 235, 0.06);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.domain-search-mode__title {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: #0f172a;
}

.domain-search-mode__help {
	font-size: 0.78rem;
	line-height: 1.35;
	color: #64748b;
}

.domain-search-transfer-fields .form-control {
	border-radius: 10px;
}

.domain-search-group {
	flex-wrap: nowrap;
	align-items: stretch;
}

.domain-search-group .form-control {
	border-radius: 10px 0 0 10px;
	min-width: 0;
	flex: 1 1 auto;
}

.domain-search-tld-wrap {
	margin-left: -1px;
	flex: 0 0 auto;
}

.domain-search-tld {
	min-width: 6.5rem;
	max-width: 9.5rem;
	width: auto;
	height: 100%;
	border-radius: 0;
	font-weight: 700;
	border-color: #ced4da;
	background-color: #f8fafc;
	padding-left: 0.65rem;
	padding-right: 1.6rem;
}

.domain-search-group > .input-group-append:last-child {
	flex: 0 0 auto;
}

.domain-search-submit {
	border-radius: 0 10px 10px 0;
	font-weight: 700;
	width: 3.1rem;
	min-width: 3.1rem;
	padding-left: 0;
	padding-right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.domain-search-loading__card {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1.15rem 1.2rem;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.domain-search-loading__text {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}

.domain-search-loading__text strong {
	font-size: 0.95rem;
	color: #0f172a;
}

.domain-search-loading__text span {
	font-size: 0.84rem;
	color: #64748b;
}

.domain-search-results {
	display: grid;
	gap: 0.85rem;
}

.domain-search-load-more .btn {
	border-radius: 12px;
	font-weight: 700;
	padding: 0.7rem 1rem;
}

.domain-search-load-more__loading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.domain-result-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.domain-result-card:hover {
	border-color: #cbd5e1;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.domain-result-card--primary {
	border-color: rgba(37, 99, 235, 0.35);
	background: rgba(37, 99, 235, 0.04);
}

.domain-result-card--taken {
	opacity: 0.78;
}

.domain-result-card__domain {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.35rem;
	word-break: break-all;
}

.domain-result-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.domain-result-card__duration {
	font-size: 0.82rem;
	color: #64748b;
}

.domain-result-card__aside {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	flex-shrink: 0;
}

.domain-result-card__price {
	text-align: right;
	font-size: 1.05rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
	min-width: 7rem;
}

.domain-result-card__price small {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	color: #64748b;
	margin-top: 0.15rem;
}

.domain-result-card__fx {
	font-weight: 500 !important;
	color: #94a3b8 !important;
}

.domain-result-card__buy {
	border-radius: 10px;
	font-weight: 700;
	min-width: 6.25rem;
}

.domain-tld-prices__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.15rem;
}

.domain-tld-prices__title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 0.25rem;
	letter-spacing: -0.01em;
}

.domain-tld-prices__desc {
	font-size: 0.86rem;
	color: #64748b;
}

.domain-tld-prices__filter {
	width: min(100%, 16rem);
}

.domain-tld-prices__filter .form-control {
	border-radius: 10px;
	border-color: #e2e8f0;
}

.domain-tld-prices__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
	gap: 0.75rem;
}

.domain-tld-price-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	width: 100%;
	text-align: left;
	padding: 0.95rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	color: inherit;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.domain-tld-price-card:hover,
.domain-tld-price-card:focus {
	border-color: rgba(37, 99, 235, 0.4);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
	transform: translateY(-1px);
	outline: none;
}

.domain-tld-price-card--popular {
	border-color: rgba(37, 99, 235, 0.28);
	background: rgba(37, 99, 235, 0.035);
}

.domain-tld-price-card__tld {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	font-size: 1rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.01em;
}

.domain-tld-price-card__tld .badge {
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.25em 0.55em;
}

.domain-tld-price-card__rows {
	display: grid;
	gap: 0.65rem;
	width: 100%;
}

.domain-tld-price-card__row {
	display: grid;
	gap: 0.2rem;
	width: 100%;
}

.domain-tld-price-card__label {
	font-size: 0.7rem;
	font-weight: 700;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.domain-tld-price-card__value {
	text-align: left;
	font-size: 0.95rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.25;
	word-break: break-word;
}

.domain-tld-price-card__value small {
	display: inline;
	font-size: 0.72rem;
	font-weight: 600;
	color: #64748b;
	margin-left: 0.25rem;
	white-space: nowrap;
}

.domain-tld-price-card__row--renew .domain-tld-price-card__value {
	font-size: 0.9rem;
	color: #334155;
}

.domain-tld-prices__empty {
	margin-top: 0.75rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #64748b;
	font-size: 0.88rem;
}

.domain-tld-prices__pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	margin-top: 1.15rem;
	padding-top: 1rem;
	border-top: 1px solid #e2e8f0;
}

.domain-tld-prices__pager-meta {
	font-size: 0.84rem;
	color: #64748b;
	font-weight: 600;
}

.domain-tld-prices__pager-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.domain-tld-prices__pager-nav .btn {
	border-radius: 10px;
	font-weight: 700;
}

.domain-tld-prices__pages {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.3rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.domain-tld-prices__pages button,
.domain-tld-prices__pages span {
	min-width: 2rem;
	height: 2rem;
	padding: 0 0.45rem;
	border-radius: 9px;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #334155;
	font-size: 0.82rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.domain-tld-prices__pages button:hover {
	border-color: rgba(37, 99, 235, 0.35);
	color: var(--store-accent, #2563eb);
}

.domain-tld-prices__pages button.is-active {
	background: var(--store-accent, #2563eb);
	border-color: var(--store-accent, #2563eb);
	color: #fff;
}

.domain-tld-prices__pages .is-ellipsis span {
	border-color: transparent;
	background: transparent;
	color: #94a3b8;
}

@media (max-width: 575.98px) {
	.domain-tld-prices__pager {
		flex-direction: column;
		align-items: stretch;
	}

	.domain-tld-prices__pager-nav {
		justify-content: space-between;
	}

	.domain-tld-prices__pages {
		order: -1;
		width: 100%;
		justify-content: center;
	}
}

.domain-checkout-summary {
	max-width: 420px;
}

.domain-checkout-summary--wide,
.domain-checkout-summary--split {
	max-width: none;
	width: 100%;
}

.domain-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
	gap: 1.75rem;
	align-items: start;
	width: 100%;
}

.domain-checkout-layout__main .form-group {
	max-width: none;
}

.domain-checkout-addons {
	margin-top: 1.15rem;
	max-width: none;
}

.domain-checkout-addons__title {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 0.65rem;
}

.domain-checkout-addons__list {
	display: grid;
	gap: 0.55rem;
}

.domain-checkout-addon {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin: 0;
	padding: 0.8rem 0.9rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.domain-checkout-addon:hover {
	border-color: rgba(37, 99, 235, 0.35);
}

.domain-checkout-addon:has(input:checked) {
	border-color: rgba(37, 99, 235, 0.45);
	background: rgba(37, 99, 235, 0.04);
	box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.domain-checkout-addon input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.domain-checkout-addon__body {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
	flex: 1 1 auto;
}

.domain-checkout-addon__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
}

.domain-checkout-addon__name {
	font-size: 0.92rem;
	font-weight: 700;
	color: #0f172a;
}

.domain-checkout-addon__price {
	font-size: 0.9rem;
	font-weight: 800;
	color: #0f172a;
	white-space: nowrap;
}

.domain-checkout-addon__help {
	font-size: 0.8rem;
	color: #64748b;
	line-height: 1.35;
}

.domain-checkout-details__row--addon strong {
	font-size: 0.82rem;
	font-weight: 700;
	color: #2563eb;
}

.domain-checkout-order-meta__addons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.domain-checkout-order-meta__addons .badge {
	font-weight: 600;
	color: #334155;
}

.domain-checkout-layout__aside {
	display: grid;
	gap: 0.9rem;
}

.domain-checkout-details {
	padding: 1.15rem 1.2rem;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.domain-checkout-details__title {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 0.85rem;
}

.domain-checkout-details__rows {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 0.9rem;
}

.domain-checkout-details__row,
.domain-checkout-details__total {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.85rem;
}

.domain-checkout-details__row span,
.domain-checkout-details__total span {
	color: #64748b;
	font-size: 0.88rem;
	font-weight: 600;
}

.domain-checkout-details__row strong {
	color: #0f172a;
	font-size: 0.95rem;
	font-weight: 800;
	text-align: right;
	white-space: nowrap;
}

.domain-checkout-details__total {
	padding-top: 0.85rem;
	border-top: 1px solid #e2e8f0;
	margin-bottom: 0.7rem;
}

.domain-checkout-details__total span {
	color: #0f172a;
	font-weight: 800;
}

.domain-checkout-details__total strong {
	font-size: 1.35rem;
	font-weight: 800;
	color: #0f172a;
	text-align: right;
	white-space: nowrap;
}

.domain-checkout-details__note {
	font-size: 0.8rem;
	color: #94a3b8;
	line-height: 1.4;
}

.domain-checkout-layout__cta {
	font-weight: 700;
	border-radius: 10px;
}

.domain-checkout-summary__domain {
	font-size: 1.45rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0.5rem;
	word-break: break-all;
}

.domain-checkout-summary__price {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0f172a;
}

.domain-checkout-summary__meta {
	color: #64748b;
	font-size: 0.9rem;
}

.domain-checkout-tel-cc {
	max-width: 5.5rem;
	text-align: center;
}

@media (max-width: 991.98px) {
	.domain-checkout-layout {
		grid-template-columns: 1fr;
	}

	.domain-checkout-layout__main .form-group {
		max-width: none;
	}
}

.domain-checkout-order-meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

@media (max-width: 767.98px) {
	.domain-result-card {
		flex-direction: column;
		align-items: stretch;
	}

	.domain-result-card__aside {
		justify-content: space-between;
	}

	.domain-result-card__price {
		text-align: left;
	}
}

.domain-search-row--primary td {
	background: rgba(37, 99, 235, 0.04);
}

@media (max-width: 575.98px) {
	.domain-search-group {
		flex-wrap: nowrap;
	}

	.domain-search-tld {
		min-width: 5.5rem;
		max-width: 7.25rem;
		font-size: 0.9rem;
	}

	.domain-search-submit {
		width: 2.85rem;
		min-width: 2.85rem;
	}
}

.domain-create-page__info {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem 1.1rem;
	border-radius: 12px;
	margin-bottom: 1.15rem;
	background: rgba(37, 99, 235, 0.06);
	border: 1px solid rgba(37, 99, 235, 0.16);
	font-size: 0.84rem;
	color: #334155;
	line-height: 1.5;
}

.domain-create-page__info-icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--store-accent-soft);
	color: var(--store-accent);
	flex-shrink: 0;
	font-size: 1rem;
}

.domain-create-page__info-main {
	flex: 1 1 auto;
	min-width: 0;
}

.domain-create-page__info-main p {
	margin: 0 0 0.45rem;
}

.domain-create-page__info-main p:last-child {
	margin-bottom: 0;
}

.domain-create-page__layout {
	align-items: flex-start;
}

.domain-create-page__main {
	min-width: 0;
}

.domain-create-page__section {
	border-radius: var(--store-radius);
	border: 1px solid rgba(148, 163, 184, 0.16);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04) !important;
}

.domain-create-page__section__head {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 1.15rem;
	padding-bottom: 0.95rem;
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.domain-create-page__section__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--store-accent-soft);
	color: var(--store-accent);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.domain-create-page__section__icon--dns {
	background: rgba(14, 165, 233, 0.12);
	color: #0284c7;
}

.domain-create-page__section__icon--redirect {
	background: rgba(245, 158, 11, 0.12);
	color: #d97706;
}

.domain-create-page__section__title {
	font-size: 0.98rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 0.15rem;
	letter-spacing: -0.01em;
}

.domain-create-page__section__desc {
	font-size: 0.82rem;
	color: #64748b;
	margin: 0;
	line-height: 1.45;
}

.domain-create-page__fields {
	display: grid;
	gap: 1rem;
}

.domain-create-page__fields .form-group {
	margin-bottom: 0;
}

.domain-create-page__fields .form-group label {
	font-size: 0.84rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 0.35rem;
}

.domain-create-page__fields .form-control {
	border-radius: 10px;
	border-color: rgba(148, 163, 184, 0.35);
	font-size: 0.88rem;
}

.domain-create-page__fields .form-control:focus {
	border-color: rgba(37, 99, 235, 0.45);
	box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.12);
}

.domain-create-page__fields .form-text {
	font-size: 0.76rem;
	margin-top: 0.35rem;
}

.domain-create-page__host-group .input-group .form-control {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.domain-create-page__host-group .input-group-append .btn {
	border-radius: 0 10px 10px 0;
	font-weight: 700;
	font-size: 0.82rem;
	padding: 0.55rem 0.85rem;
	border-color: rgba(148, 163, 184, 0.35);
	color: var(--store-accent);
}

.domain-create-page__host-group .input-group-append .btn:hover:not(:disabled) {
	background: var(--store-accent-soft);
	border-color: rgba(37, 99, 235, 0.35);
	color: var(--store-accent-dark);
}

.domain-create-page__dns-status {
	padding: 0.75rem 0.85rem;
	border-radius: 10px;
	font-size: 0.8rem;
	line-height: 1.45;
}

.domain-create-page__dns-status.text-success {
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.domain-create-page__dns-status.text-danger {
	background: rgba(239, 68, 68, 0.06);
	border: 1px solid rgba(239, 68, 68, 0.18);
}

.domain-create-page__dns-status.text-muted {
	background: #f8fafc;
	border: 1px solid rgba(148, 163, 184, 0.16);
}

.domain-create-page__dns-status ul {
	margin-bottom: 0;
}

.domain-create-page__sidebar {
	min-width: 0;
	align-self: flex-start;
}

.domain-create-page__submit-card {
	position: sticky;
	top: calc(var(--app-topbar-height, 64px) + 1rem);
	border-radius: var(--store-radius);
	border: 1px solid rgba(148, 163, 184, 0.16);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
	padding: 1.15rem;
	background: #fff;
}

.domain-create-page__submit-card__title {
	font-size: 0.92rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 0.35rem;
}

.domain-create-page__submit-card__desc {
	font-size: 0.78rem;
	color: #64748b;
	margin: 0 0 1rem;
	line-height: 1.45;
}

.domain-create-page__submit-card .btn-primary {
	border-radius: 12px;
	font-weight: 800;
	padding: 0.72rem 1rem;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}

.domain-create-page__submit-help {
	font-size: 0.76rem;
	margin: 0.65rem 0 0;
	line-height: 1.4;
}

.domain-create-page__mobile-bar {
	position: static;
	margin-top: 1rem;
	padding: 0;
	background: transparent;
	border-top: 0;
	box-shadow: none;
}

.domain-create-page__mobile-bar .btn {
	border-radius: 12px;
	font-weight: 800;
	padding: 0.72rem 1rem;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}

@media (max-width: 1199.98px) {
	.domain-create-page__layout {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 575.98px) {
	.domain-create-page__host-group .input-group {
		flex-wrap: wrap;
		align-items: stretch;
	}

	.domain-create-page__host-group .input-group .form-control {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
		border-radius: 10px;
		margin-bottom: 0.45rem;
	}

	.domain-create-page__host-group .input-group-append {
		flex: 1 1 100%;
		width: 100%;
		margin-left: 0;
		display: flex;
	}

	.domain-create-page__host-group .input-group-append .btn {
		width: 100%;
		border-radius: 10px;
	}
}

/* Domain update */

.domain-update-page__hero-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.35rem;
}

.domain-update-page__hero-menu .dropdown-toggle {
	color: rgba(255, 255, 255, 0.9) !important;
	border-radius: 10px;
	padding: 0.35rem 0.55rem;
}

.domain-update-page__hero-menu .dropdown.position-static {
	position: relative !important;
}

.domain-update-page__hero-menu .dropdown-menu {
	z-index: 1080;
}

.domain-update-page__hero-menu .dropdown-toggle:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff !important;
}

.domain-update-page__status-banner {
	display: flex;
	align-items: flex-start;
	gap: 0.35rem;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	font-size: 0.84rem;
	line-height: 1.45;
}

.domain-update-page__status-banner--success {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.22);
	color: #047857;
}

.domain-update-page__status-banner--warning {
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.24);
	color: #92400e;
}

.domain-update-page__status-banner--danger {
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: #b91c1c;
}

.domain-update-page__status-banner--muted {
	background: #f8fafc;
	border: 1px solid rgba(148, 163, 184, 0.16);
	color: #64748b;
}

.domain-update-page__provision-steps {
	display: grid;
	gap: 0.65rem;
}

.domain-update-page__provision-step {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0.85rem;
	border-radius: 10px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	background: #fff;
}

.domain-update-page__provision-step__icon {
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.95rem;
}

.domain-update-page__provision-step--completed {
	border-color: rgba(16, 185, 129, 0.22);
	background: rgba(16, 185, 129, 0.05);
}

.domain-update-page__provision-step--completed .domain-update-page__provision-step__icon {
	color: #059669;
	background: rgba(16, 185, 129, 0.12);
}

.domain-update-page__provision-step--failed {
	border-color: rgba(239, 68, 68, 0.2);
	background: rgba(239, 68, 68, 0.04);
}

.domain-update-page__provision-step--failed .domain-update-page__provision-step__icon {
	color: #dc2626;
	background: rgba(239, 68, 68, 0.1);
}

.domain-update-page__provision-step--running {
	border-color: rgba(37, 99, 235, 0.25);
	background: rgba(37, 99, 235, 0.05);
}

.domain-update-page__provision-step--running .domain-update-page__provision-step__icon {
	color: var(--store-accent);
	background: var(--store-accent-soft);
}

.domain-update-page__provision-step--pending .domain-update-page__provision-step__icon {
	color: #94a3b8;
	background: #f1f5f9;
}

.domain-update-page__provision-step__label {
	font-size: 0.84rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.35;
}

.domain-update-page__provision-step__message {
	font-size: 0.76rem;
	color: #64748b;
	margin-top: 0.15rem;
	line-height: 1.4;
}

.domain-update-page__spin {
	animation: domain-update-spin 0.9s linear infinite;
}

@keyframes domain-update-spin {
	to {
		transform: rotate(360deg);
	}
}

.domain-update-page__provision .btn-outline-primary {
	border-radius: 10px;
	font-weight: 700;
}

.domain-slot-topup-summary {
	padding: 0.85rem 1rem;
	border-radius: 12px;
	background: rgba(37, 99, 235, 0.06);
	border: 1px solid rgba(37, 99, 235, 0.12);
}

#domainSlotTopupModal .domain-slot-topup-payment-methods {
	width: 100%;
	min-width: 0;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem;
	border-bottom: none;
	margin-bottom: 1rem;
	padding-bottom: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-tabs .nav-item {
	flex-shrink: 0;
	margin-bottom: 0;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-tabs .nav-link {
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	color: #64748b;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.45rem 0.95rem;
	white-space: nowrap;
	background: #fff;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-tabs .nav-link.active {
	color: #1d4ed8;
	background: rgba(37, 99, 235, 0.08);
	border-color: rgba(37, 99, 235, 0.45);
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	width: 100%;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-grid > [class*='col-'] {
	width: 100%;
	max-width: none;
	flex: none;
	padding: 0 !important;
	margin: 0 !important;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.55rem;
	padding: 0.9rem 0.65rem;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
	margin-bottom: 0;
	background: #fff;
	height: 100%;
	min-height: 7.25rem;
	position: relative;
	overflow: hidden;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-option:hover {
	border-color: rgba(37, 99, 235, 0.35);
	background: #f8fafc;
	transform: translateY(-1px);
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-option.selected {
	border-color: #2563eb;
	background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, #fff 100%);
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.14);
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e2e8f0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	color: #64748b;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-icon img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 0.35rem;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-body {
	flex-grow: 0 !important;
	width: 100%;
	min-width: 0;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-name {
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
	word-break: break-word;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-fee {
	display: inline-block;
	margin-top: 0.15rem;
	padding: 0.15rem 0.45rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	line-height: 1.35;
	color: #64748b;
	background: #f1f5f9;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-fee--free {
	color: #15803d;
	background: rgba(22, 163, 74, 0.12);
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-check {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	left: auto;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 999px;
	border: 2px solid #cbd5e1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	font-size: 0.65rem;
}

#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-option.selected .duitku-payment-check {
	border-color: #2563eb;
	background: #2563eb;
	color: #fff;
}

@media (min-width: 576px) {
	#domainSlotTopupModal .domain-slot-topup-duitku-methods .duitku-payment-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Domain checkout — Duitku payment cards (match slot topup / other product checkout cards) */
.domains-page .domain-checkout-duitku-methods {
	width: 100%;
	min-width: 0;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem;
	border-bottom: none;
	margin-bottom: 1rem;
	padding-bottom: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-tabs .nav-item {
	flex-shrink: 0;
	margin-bottom: 0;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-tabs .nav-link {
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	color: #64748b;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.45rem 0.95rem;
	white-space: nowrap;
	background: #fff;
	transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-tabs .nav-link:hover {
	color: #2563eb;
	border-color: rgba(37, 99, 235, 0.35);
	background: #f8fafc;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-tabs .nav-link.active {
	color: #1d4ed8;
	background: rgba(37, 99, 235, 0.08);
	border-color: rgba(37, 99, 235, 0.45);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	width: 100%;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-grid > [class*='col-'] {
	width: 100%;
	max-width: none;
	flex: none;
	padding: 0 !important;
	margin: 0 !important;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.55rem;
	padding: 0.9rem 0.65rem;
	border: 2px solid #e2e8f0;
	border-radius: 14px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
	margin-bottom: 0;
	background: #fff;
	height: 100%;
	min-height: 7.25rem;
	position: relative;
	overflow: hidden;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-option:hover {
	border-color: rgba(37, 99, 235, 0.35);
	background: #f8fafc;
	transform: translateY(-1px);
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-option.selected {
	border-color: #2563eb;
	background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, #fff 100%);
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.14);
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e2e8f0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	color: #64748b;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-icon img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	padding: 0.35rem;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-body {
	flex-grow: 0 !important;
	width: 100%;
	min-width: 0;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-name {
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
	word-break: break-word;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-fee {
	display: inline-block;
	margin-top: 0.15rem;
	padding: 0.15rem 0.45rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	line-height: 1.35;
	color: #64748b;
	background: #f1f5f9;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-fee--free {
	color: #15803d;
	background: rgba(22, 163, 74, 0.12);
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-check {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	left: auto;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 999px;
	border: 2px solid #cbd5e1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	font-size: 0.65rem;
	background: #fff;
	z-index: 1;
}

.domains-page .domain-checkout-duitku-methods .duitku-payment-option.selected .duitku-payment-check {
	border-color: #2563eb;
	background: #2563eb;
	color: #fff;
}

@media (min-width: 576px) {
	.domains-page .domain-checkout-duitku-methods .duitku-payment-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.domains-page .domain-checkout-duitku-methods .duitku-payment-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Domain manage — vertical tabs */
.domain-manage-page .domain-manage-layout {
	align-items: flex-start;
}

.domain-manage-nav-card,
.domain-manage-content-card {
	border-radius: 14px;
}

.domain-manage-nav__label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #94a3b8;
	padding: 0.35rem 0.75rem 0.65rem;
}

.domain-manage-nav {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0.35rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 0.15rem;
}

.domain-manage-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	flex: 0 0 auto;
	white-space: nowrap;
	border-radius: 10px;
	padding: 0.7rem 0.9rem;
	color: #475569;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.domain-manage-nav__link i {
	font-size: 1rem;
	color: #94a3b8;
}

.domain-manage-nav__link:hover {
	background: rgba(37, 99, 235, 0.08);
	color: #1e40af;
	text-decoration: none;
}

.domain-manage-nav__link:hover i {
	color: #2563eb;
}

.domain-manage-nav__link.active,
.domain-manage-nav .nav-link.active {
	background: rgba(37, 99, 235, 0.12) !important;
	color: #1e40af !important;
}

.domain-manage-nav__link.active i,
.domain-manage-nav .nav-link.active i {
	color: #2563eb !important;
}

.domain-manage-content-head {
	gap: 0.85rem;
}

.domain-manage-content-head__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.domain-manage-content-head__title {
	font-weight: 700;
	color: #0f172a;
}

.domain-auth-code-box {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: stretch;
}

.domain-auth-code-box__input {
	flex: 1 1 220px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1rem;
	letter-spacing: 0.04em;
	background: #f8fafc;
	border-color: #e2e8f0;
}

.domain-auth-code-box__copy {
	flex: 0 0 auto;
	white-space: nowrap;
}

.domain-profile-field {
	padding: 0.75rem 0.9rem;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
	min-height: 100%;
}

.domain-profile-field__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 0.25rem;
}

.domain-profile-field__value {
	color: #0f172a;
	font-size: 0.95rem;
	word-break: break-word;
}

.domain-profile-field__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	flex-wrap: wrap;
}

.domain-profile-field__action {
	flex: 0 0 auto;
	white-space: nowrap;
}

.domain-profile-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.4rem;
	overflow-x: auto;
	padding-bottom: 0.15rem;
	-webkit-overflow-scrolling: touch;
}

.domain-profile-tabs .nav-item {
	flex: 0 0 auto;
}

.domain-profile-tabs__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #475569;
	font-size: 0.875rem;
	font-weight: 600;
	white-space: nowrap;
}

.domain-profile-tabs__link i {
	font-size: 0.95rem;
}

.domain-profile-tabs__link:hover {
	color: #2563eb;
	border-color: #bfdbfe;
	background: #eff6ff;
	text-decoration: none;
}

.domain-profile-tabs__link.active {
	color: #fff;
	background: #2563eb;
	border-color: #2563eb;
}

.domain-contact-details {
	border: 1px solid #fecaca;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.domain-contact-details__head {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.7rem 1rem;
	background: #f07167;
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
}

.domain-contact-details__head i {
	font-size: 1rem;
}

.domain-contact-details__body {
	padding: 1rem 1.1rem 1.15rem;
}

.domain-contact-details__list {
	margin: 0;
}

.domain-contact-details__row {
	display: grid;
	grid-template-columns: minmax(140px, 200px) 1fr;
	gap: 0.5rem 1rem;
	padding: 0.45rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.domain-contact-details__row:last-child {
	border-bottom: 0;
}

.domain-contact-details__row dt {
	margin: 0;
	font-weight: 700;
	color: #334155;
	font-size: 0.9rem;
}

.domain-contact-details__row dd {
	margin: 0;
	color: #0f172a;
	font-size: 0.92rem;
	word-break: break-word;
}

.domain-contact-details__actions {
	margin-top: 1rem;
}

.domain-contact-modify-btn {
	background: #7dd3fc;
	border-color: #7dd3fc;
	color: #0c4a6e;
	font-weight: 600;
}

.domain-contact-modify-btn:hover {
	background: #38bdf8;
	border-color: #38bdf8;
	color: #082f49;
}

.domain-contact-edit-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.35rem;
}

.domain-protection-panel {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.domain-protection-row {
	display: grid;
	grid-template-columns: minmax(140px, 1fr) auto auto;
	align-items: center;
	gap: 0.75rem 1rem;
	padding: 0.85rem 1rem;
	border-bottom: 1px solid #e2e8f0;
}

.domain-protection-row:last-of-type {
	border-bottom: 0;
}

.domain-protection-row--editing {
	border-bottom: 1px solid #e2e8f0;
}

.domain-protection-row__label {
	font-weight: 700;
	color: #334155;
	font-size: 0.95rem;
}

.domain-protection-badge {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.35rem 0.65rem;
	border-radius: 4px;
}

.domain-protection-btn {
	white-space: nowrap;
	min-width: 96px;
}

.domain-protection-btn__price {
	display: inline-block;
	margin-left: 0.35rem;
	opacity: 0.92;
	font-weight: 600;
}

.domain-privacy-pay-summary {
	padding: 1rem 1.15rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #f8fafc;
}

.domain-privacy-pay-summary__price {
	font-size: 1.25rem;
	color: #0f172a;
}

.domain-restriction-form {
	padding: 0 1rem 1rem;
	border-top: 1px solid #e2e8f0;
	background: #f8fafc;
}

@media (max-width: 575.98px) {
	.domain-contact-details__row {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.domain-protection-row {
		grid-template-columns: 1fr;
		gap: 0.45rem;
	}

	.domain-protection-row__action {
		justify-self: start;
	}
}

.domain-manage-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.85rem;
	min-height: 220px;
	padding: 1.5rem 1rem;
	border-radius: 12px;
	background: #f8fafc;
	color: #64748b;
}

.domain-manage-placeholder__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #e2e8f0;
	color: #2563eb;
	font-size: 1.35rem;
}

@media (min-width: 768px) {
	.domain-manage-nav {
		flex-direction: column;
		overflow: visible;
		padding-bottom: 0;
	}

	.domain-manage-nav__link {
		width: 100%;
	}

	.domain-manage-nav-card {
		position: sticky;
		top: 1rem;
	}
}

.domain-dns-table-wrap {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow-x: auto;
}

.domain-dns-table {
	min-width: 640px;
	margin-bottom: 0;
}

.domain-dns-table thead th {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #64748b;
	border-top: 0;
	background: #f8fafc;
	white-space: nowrap;
}

.domain-dns-table td {
	vertical-align: top;
}

.domain-dns-host {
	font-weight: 600;
	color: #0f172a;
	word-break: break-word;
}

.domain-dns-type {
	font-weight: 700;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
}

.domain-dns-type--A {
	background: #dbeafe;
	color: #1d4ed8;
}

.domain-dns-type--AAAA {
	background: #e0e7ff;
	color: #4338ca;
}

.domain-dns-type--CNAME {
	background: #d1fae5;
	color: #047857;
}

.domain-dns-type--MX {
	background: #ffedd5;
	color: #c2410c;
}

.domain-dns-type--TXT {
	background: #f3e8ff;
	color: #7c3aed;
}

.domain-dns-type--NS {
	background: #e2e8f0;
	color: #334155;
}

.domain-dns-type--SRV {
	background: #fce7f3;
	color: #be185d;
}

.domain-dns-value {
	min-width: 12rem;
	max-width: 28rem;
}

.domain-dns-value code {
	display: block;
	font-size: 0.82rem;
	color: #0f172a;
	word-break: break-word;
	overflow-wrap: anywhere;
	white-space: pre-wrap;
	background: transparent;
	padding: 0;
}

.domain-dns-value__meta {
	margin-top: 0.2rem;
	font-size: 0.72rem;
	color: #64748b;
}

.domain-dns-add-form__fields {
	display: grid;
	grid-template-columns: 5.75rem minmax(7rem, 1fr) minmax(10rem, 2.2fr) 5.5rem;
	gap: 0.75rem 0.65rem;
	align-items: end;
	width: 100%;
}

.domain-dns-add-form__fields.is-mx {
	grid-template-columns: 5.75rem minmax(7rem, 1fr) minmax(9rem, 2fr) 5.25rem 5.5rem;
}

.domain-dns-add-form__type .form-control,
.domain-dns-add-form__ttl .form-control,
.domain-dns-add-form__priority .form-control {
	min-width: 0;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.domain-dns-add-form__type .form-control {
	padding-right: 1.35rem;
}

.domain-dns-add-form__priority {
	display: none;
}

.domain-dns-add-form__fields.is-mx .domain-dns-add-form__priority {
	display: block;
}

.domain-dns-add-form__footer {
	gap: 0.75rem;
	margin-top: 1rem;
}

@media (max-width: 767.98px) {
	.domain-dns-add-form__fields,
	.domain-dns-add-form__fields.is-mx {
		grid-template-columns: 1fr 1fr;
	}

	.domain-dns-add-form__value {
		grid-column: 1 / -1;
	}
}

.domain-forward-options {
	padding: 0.9rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #f8fafc;
}

.domain-forward-options .custom-control-label {
	font-weight: 600;
	color: #0f172a;
}

.domain-forward-form {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.domain-forward-row {
	display: grid;
	grid-template-columns: minmax(140px, 0.9fr) minmax(180px, 1fr) minmax(180px, 1.1fr);
	gap: 1rem;
	align-items: start;
	padding: 1rem 1.1rem;
	border-bottom: 1px solid #e2e8f0;
}

.domain-forward-row--destination {
	grid-template-columns: minmax(0, 1.6fr) minmax(180px, 1fr);
	align-items: stretch;
}

.domain-forward-row__main {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-width: 0;
}

.domain-forward-row--destination .domain-forward-row__label {
	padding-top: 0;
}

.domain-forward-row--destination .domain-forward-destination {
	width: 100%;
}

.domain-forward-row--destination .domain-forward-destination .form-control {
	flex: 1 1 auto;
	min-width: 0;
}

.domain-forward-row--last {
	border-bottom: 0;
}

.domain-forward-row__label {
	font-weight: 700;
	color: #334155;
	font-size: 0.9rem;
	line-height: 1.35;
	padding-top: 0.35rem;
}

.domain-forward-destination {
	flex-wrap: nowrap;
	width: 100%;
}

.domain-forward-destination__protocol {
	max-width: 7.25rem;
	flex: 0 0 7.25rem;
	font-weight: 600;
}

.domain-forward-radios {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding-top: 0.2rem;
}

.domain-forward-row__help {
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 0.7rem 0.85rem;
	color: #64748b;
	font-size: 0.82rem;
	line-height: 1.45;
}

.domain-forward-row__control--wide {
	grid-column: 2 / -1;
}

.domain-forward-form__actions {
	padding: 1rem 1.1rem 1.15rem;
	border-top: 1px solid #e2e8f0;
	background: #f8fafc;
}

@media (max-width: 991.98px) {
	.domain-forward-row,
	.domain-forward-row--destination {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}

	.domain-forward-row__control--wide {
		grid-column: auto;
	}

	.domain-forward-row__label {
		padding-top: 0;
	}
}

