/*
 * Gadgetsuperb account pages — look matched to believers.com.bd (login, sign-up, profile, order tracking).
 * Everything is scoped to .gs-ac so the XStore theme is untouched elsewhere.
 */

.gs-ac {
	--gs-black: #010f1c;
	--gs-body: #55585b;
	--gs-muted: #767a7d;
	--gs-blue: #0989ff;
	--gs-blue-soft: #eef6ff;
	--gs-blue-line: #cfe5ff;
	--gs-page: #f6f7f9;
	--gs-line: #e0e2e3;
	--gs-line-soft: #eaeaef;
	--gs-green: #1f9d57;
	--gs-red: #d63939;
	--gs-shadow: 0 10px 40px rgba(1, 15, 28, .07);
	--gs-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans Bengali", "Nirmala UI", sans-serif;

	color: var(--gs-body);
	font-family: var(--gs-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.gs-ac *,
.gs-ac *::before,
.gs-ac *::after {
	box-sizing: border-box;
}

.gs-ac [hidden] {
	display: none !important;
}

.gs-ac a {
	color: var(--gs-blue);
	text-decoration: none;
}

.gs-ac a:hover {
	color: var(--gs-black);
}

.gs-ac a:focus-visible,
.gs-ac button:focus-visible,
.gs-ac summary:focus-visible {
	outline: 2px solid var(--gs-blue);
	outline-offset: 2px;
}

.gs-ac h1,
.gs-ac h2,
.gs-ac h3,
.gs-ac h4 {
	margin: 0;
	padding: 0;
	color: var(--gs-black);
	font-family: var(--gs-font);
	font-weight: 500;
	letter-spacing: normal;
	line-height: 1.3;
	text-transform: none;
}

/* :where() keeps this reset below the component rules (.gs-ac-note, .gs-ac-alt …) in specificity. */
:where(.gs-ac) p {
	margin: 0;
}

.gs-ac-icon {
	display: inline-block;
	flex: none;
	vertical-align: middle;
}

.gs-ac-page {
	background-color: var(--gs-page);
}

.gs-ac-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

.gs-ac-narrow {
	max-width: 800px;
}

.gs-ac-card {
	background-color: #fff;
	box-shadow: var(--gs-shadow);
}

.gs-ac-muted {
	color: var(--gs-muted);
}

/* Buttons ------------------------------------------------------------------ */

.gs-ac .gs-ac-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	margin: 0;
	padding: 12px 30px;
	border: 1px solid var(--gs-black);
	border-radius: 0;
	background-color: var(--gs-black);
	box-shadow: none;
	color: #fff;
	font-family: var(--gs-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: normal;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.gs-ac .gs-ac-btn:hover,
.gs-ac .gs-ac-btn:focus-visible {
	border-color: var(--gs-blue);
	background-color: var(--gs-blue);
	color: #fff;
}

.gs-ac .gs-ac-btn[disabled],
.gs-ac .gs-ac-btn.is-busy {
	opacity: .7;
	cursor: progress;
}

.gs-ac .gs-ac-btn--block {
	display: flex;
	width: 100%;
}

.gs-ac .gs-ac-btn--sm {
	min-height: 40px;
	padding: 8px 18px;
	font-size: 14px;
}

.gs-ac .gs-ac-btn--light {
	border-color: var(--gs-line);
	background-color: #fff;
	color: var(--gs-black);
}

.gs-ac .gs-ac-btn--light:hover,
.gs-ac .gs-ac-btn--light:focus-visible {
	border-color: var(--gs-black);
	background-color: #fff;
	color: var(--gs-black);
}

.gs-ac .gs-ac-btn--blue {
	border-color: var(--gs-blue);
	background-color: var(--gs-blue);
}

.gs-ac .gs-ac-btn--blue:hover,
.gs-ac .gs-ac-btn--blue:focus-visible {
	border-color: var(--gs-black);
	background-color: var(--gs-black);
}

.gs-ac .gs-ac-link {
	position: relative;
	display: inline-block;
	color: var(--gs-blue);
	font-size: 15px;
}

.gs-ac .gs-ac-link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 2px;
	width: 0;
	height: 1px;
	background-color: var(--gs-blue);
	transition: width .3s ease-out;
}

.gs-ac .gs-ac-link:hover {
	color: var(--gs-blue);
}

.gs-ac .gs-ac-link:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

/* Alerts ------------------------------------------------------------------- */

.gs-ac-alert {
	margin: 0 0 20px;
	padding: 12px 16px;
	border: 1px solid;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.5;
}

.gs-ac-alert a {
	font-weight: 600;
	text-decoration: underline;
}

.gs-ac-alert--error {
	border-color: #f5c2c7;
	background-color: #fdeeef;
	color: #842029;
}

.gs-ac-alert--error a {
	color: #842029;
}

.gs-ac-alert--success {
	border-color: #b7e4c7;
	background-color: #e8f6ee;
	color: #0f5132;
}

.gs-ac-alert--info {
	border-color: var(--gs-blue-line);
	background-color: var(--gs-blue-soft);
	color: #084298;
}

.gs-ac-alert--flat {
	margin-bottom: 16px;
}

/* Login / sign-up / password card ------------------------------------------ */

.gs-ac-auth {
	position: relative;
	overflow: hidden;
	padding: 40px 0 70px;
	background-color: #fff;
}

.gs-ac-auth .gs-ac-container {
	position: relative;
	z-index: 1;
}

.gs-ac-auth-card {
	max-width: 620px;
	margin: 0 auto;
	padding: 34px 60px 40px;
	box-shadow: 0 30px 70px rgba(1, 15, 28, .1);
}

.gs-ac-shape {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.gs-ac-shape--1 {
	top: 9%;
	left: 7%;
	width: 84px;
	height: 84px;
	border: 2px dashed rgba(9, 137, 255, .28);
	border-radius: 50%;
}

.gs-ac-shape--2 {
	bottom: 34%;
	left: 15%;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #ffc94d;
}

.gs-ac-shape--3 {
	top: 12%;
	right: 13%;
	width: 36px;
	height: 36px;
	border: 2px solid rgba(1, 15, 28, .12);
	transform: rotate(24deg);
}

.gs-ac-shape--4 {
	right: 5%;
	bottom: 16%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: rgba(9, 137, 255, .07);
}

.gs-ac-top {
	margin-bottom: 14px;
	text-align: center;
}

.gs-ac .gs-ac-title {
	margin-bottom: 6px;
	font-size: 26px;
	font-weight: 500;
}

.gs-ac-intro {
	color: #49535b;
	font-size: 16px;
}

.gs-ac-divider {
	position: relative;
	margin: 0 0 26px;
	text-align: center;
}

.gs-ac-divider::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	height: 1px;
	background-color: var(--gs-line);
}

.gs-ac-divider span {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	background-color: #fff;
	color: var(--gs-body);
	font-size: 15px;
}

.gs-ac-divider b {
	color: var(--gs-blue);
	font-weight: 500;
}

.gs-ac-note {
	margin: -8px 0 24px;
	padding: 10px 14px;
	border-left: 3px solid var(--gs-blue);
	background-color: var(--gs-blue-soft);
	color: #2f4a66;
	font-size: 13px;
}

.gs-ac-fields {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 18px;
}

.gs-ac-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: -4px 0 22px;
}

.gs-ac-row--end {
	justify-content: flex-end;
}

.gs-ac-alt {
	margin-top: 22px;
	color: var(--gs-body);
	font-size: 15px;
	text-align: center;
}

.gs-ac-sent {
	margin: 10px 0 26px;
	text-align: center;
}

.gs-ac-sent p {
	margin-top: 8px;
	font-size: 15px;
}

.gs-ac-sent .gs-ac-muted {
	font-size: 14px;
}

.gs-ac-sent-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--gs-blue-soft);
	color: var(--gs-blue);
}

.gs-ac-sent-icon .gs-ac-icon {
	width: 30px;
	height: 30px;
}

/* Fields ------------------------------------------------------------------- */

.gs-ac-field {
	position: relative;
}

.gs-ac .gs-ac-input {
	display: block;
	width: 100%;
	height: 56px;
	min-height: 0;
	margin: 0;
	padding: 0 24px;
	border: 1px solid var(--gs-line);
	border-radius: 0;
	background-color: #fff;
	box-shadow: none;
	color: var(--gs-black);
	font-family: var(--gs-font);
	font-size: 15px;
	line-height: 54px;
	outline: none;
	transition: border-color .2s ease;
}

.gs-ac .gs-ac-input::placeholder {
	color: #95999d;
	opacity: 1;
}

.gs-ac .gs-ac-input:focus {
	border-color: var(--gs-black);
	box-shadow: none;
}

.gs-ac .gs-ac-input:disabled {
	background-color: var(--gs-page);
	color: var(--gs-muted);
	cursor: not-allowed;
}

.gs-ac .gs-ac-select {
	padding-right: 44px;
	background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23010f1c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='m3 6 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 18px center / 14px 14px;
	line-height: normal;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.gs-ac .gs-ac-label {
	position: absolute;
	top: -8px;
	left: 18px;
	display: block;
	margin: 0;
	padding: 0 6px;
	background-color: #fff;
	color: var(--gs-black);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	pointer-events: none;
}

.gs-ac-field--icon .gs-ac-input {
	padding-left: 52px;
}

.gs-ac-field-icon {
	position: absolute;
	top: 28px;
	left: 20px;
	color: var(--gs-muted);
	line-height: 0;
	transform: translateY(-50%);
	pointer-events: none;
}

.gs-ac-field--pass .gs-ac-input {
	padding-right: 60px;
}

.gs-ac .gs-ac-eye {
	position: absolute;
	top: 1px;
	right: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--gs-muted);
	cursor: pointer;
}

.gs-ac .gs-ac-eye:hover {
	background: transparent;
	color: var(--gs-black);
}

.gs-ac .gs-ac-eye-hide,
.gs-ac .gs-ac-eye[aria-pressed="true"] .gs-ac-eye-show {
	display: none;
}

.gs-ac .gs-ac-eye[aria-pressed="true"] .gs-ac-eye-hide {
	display: inline;
}

/* XStore wraps password inputs and adds its own eye icon; this page has one already. */
.gs-ac .input-password-wrap {
	display: block;
}

.gs-ac .input-password-wrap > .show-password,
.gs-ac .input-password-wrap > .hide-password {
	display: none !important;
}

.gs-ac-hint {
	margin-top: 6px;
	color: var(--gs-muted);
	font-size: 13px;
	line-height: 1.45;
}

.gs-ac .gs-ac-error {
	margin: 6px 0 0;
	color: var(--gs-red);
	font-size: 13px;
	line-height: 1.45;
}

.gs-ac .gs-ac-error a {
	color: var(--gs-red);
	font-weight: 600;
	text-decoration: underline;
}

.gs-ac .is-invalid .gs-ac-input {
	border-color: var(--gs-red);
}

.gs-ac .is-invalid .gs-ac-label {
	color: var(--gs-red);
}

/* Profile ------------------------------------------------------------------ */

.gs-ac-profile {
	padding: 30px 0 60px;
}

.gs-ac-layout {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.gs-ac-side {
	position: sticky;
	top: 20px;
	background-color: #fff;
	box-shadow: var(--gs-shadow);
}

.gs-ac-user {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 24px;
	border-bottom: 1px solid var(--gs-line-soft);
}

.gs-ac-avatar {
	display: inline-flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--gs-black);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}

.gs-ac-user-text {
	min-width: 0;
}

.gs-ac-user-text strong,
.gs-ac-user-text span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gs-ac-user-text strong {
	color: var(--gs-black);
	font-size: 16px;
	font-weight: 600;
}

.gs-ac-user-text span {
	color: var(--gs-muted);
	font-size: 13px;
}

.gs-ac-nav {
	display: flex;
	flex-direction: column;
	padding: 8px 0;
}

.gs-ac .gs-ac-nav-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	color: var(--gs-muted);
	font-size: 15px;
	font-weight: 500;
	transition: background-color .2s ease, color .2s ease;
}

.gs-ac .gs-ac-nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 2px;
	background-color: transparent;
}

.gs-ac .gs-ac-nav-link:hover {
	background-color: #f6f7f9;
	color: var(--gs-black);
}

.gs-ac .gs-ac-nav-link.is-active {
	background-color: rgba(9, 137, 255, .06);
	color: var(--gs-blue);
}

.gs-ac .gs-ac-nav-link.is-active::before {
	background-color: var(--gs-blue);
}

.gs-ac-nav-text {
	flex: 1;
}

.gs-ac-count {
	min-width: 24px;
	padding: 1px 8px;
	border-radius: 999px;
	background-color: var(--gs-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
	text-align: center;
}

.gs-ac .gs-ac-help {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 24px;
	border-top: 1px solid var(--gs-line-soft);
	color: var(--gs-body);
	font-size: 13px;
}

.gs-ac .gs-ac-help a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gs-black);
	overflow-wrap: anywhere;
}

.gs-ac .gs-ac-help a:hover {
	color: var(--gs-blue);
}

.gs-ac .gs-ac-help strong {
	font-weight: 600;
}

.gs-ac-main {
	min-width: 0;
}

.gs-ac-panel {
	padding: 26px 30px 32px;
	background-color: #fff;
	box-shadow: var(--gs-shadow);
}

.gs-ac .gs-ac-panel-title {
	margin-bottom: 22px;
	font-size: 20px;
}

.gs-ac-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 24px;
	margin: 8px 0 28px;
}

.gs-ac-span {
	grid-column: 1 / -1;
}

.gs-ac-empty {
	padding: 40px 20px;
	border: 1px dashed var(--gs-line);
	text-align: center;
}

.gs-ac-empty p {
	margin-bottom: 6px;
	font-size: 15px;
}

.gs-ac-empty .gs-ac-btn {
	margin-top: 14px;
}

.gs-ac-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-bottom: 12px;
	border-radius: 50%;
	background-color: var(--gs-page);
	color: var(--gs-muted);
}

.gs-ac-empty-icon .gs-ac-icon {
	width: 28px;
	height: 28px;
}

/* Orders list -------------------------------------------------------------- */

.gs-ac-orders {
	border: 1px solid var(--gs-line-soft);
}

.gs-ac-orders-head,
.gs-ac-order-sum {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) minmax(0, .85fr) minmax(0, 1fr) minmax(0, 1.25fr) 24px;
	gap: 12px;
	align-items: center;
	padding: 0 18px;
}

.gs-ac-orders-head {
	padding-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--gs-line-soft);
	color: var(--gs-muted);
	font-size: 13px;
	font-weight: 500;
}

.gs-ac-order {
	border-bottom: 1px solid var(--gs-line-soft);
}

.gs-ac-order:last-child {
	border-bottom: 0;
}

.gs-ac-order-sum {
	min-height: 66px;
	padding-top: 12px;
	padding-bottom: 12px;
	color: var(--gs-black);
	list-style: none;
	cursor: pointer;
	transition: background-color .2s ease;
}

.gs-ac-order-sum::-webkit-details-marker {
	display: none;
}

.gs-ac-order-sum::marker {
	content: "";
}

.gs-ac-order-sum:hover,
.gs-ac-order[open] > .gs-ac-order-sum {
	background-color: #fafbfc;
}

.gs-ac-o--num {
	color: var(--gs-blue);
	font-weight: 600;
}

.gs-ac-o-k {
	display: none;
}

.gs-ac-o--total {
	font-weight: 600;
}

.gs-ac-o--chev {
	color: var(--gs-muted);
	line-height: 0;
	transition: transform .2s ease;
}

.gs-ac-order[open] .gs-ac-o--chev {
	transform: rotate(180deg);
}

.gs-ac .gs-ac-track-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 1px solid var(--gs-blue);
	border-radius: 999px;
	color: var(--gs-blue);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
}

.gs-ac .gs-ac-track-btn:hover {
	background-color: var(--gs-blue);
	color: #fff;
}

.gs-ac-track-btn .gs-ac-icon {
	width: 16px;
	height: 16px;
}

.gs-ac-order-body {
	padding: 20px 18px 24px;
	border-top: 1px solid var(--gs-line-soft);
	background-color: #fcfcfd;
}

.gs-ac-orders-note {
	margin-top: 14px;
	font-size: 13px;
}

/* Status badges ------------------------------------------------------------ */

.gs-ac-badge {
	display: inline-block;
	padding: 4px 11px;
	border-radius: 999px;
	background-color: #eef0f2;
	color: #495057;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	vertical-align: middle;
}

.gs-ac-badge--processing {
	background-color: #fff3cd;
	color: #7a5200;
}

.gs-ac-badge--on-hold {
	background-color: #ffe8cc;
	color: #8a4b00;
}

.gs-ac-badge--shipped {
	background-color: #e1f0ff;
	color: #0064c8;
}

.gs-ac-badge--completed {
	background-color: #dff5e8;
	color: #11703c;
}

.gs-ac-badge--cancelled,
.gs-ac-badge--failed,
.gs-ac-badge--refunded {
	background-color: #fde8ea;
	color: #b02a37;
}

/* Order details ------------------------------------------------------------ */

.gs-ac-steps {
	display: flex;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.gs-ac-step {
	position: relative;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: 0 4px;
	text-align: center;
}

.gs-ac-step::before {
	content: "";
	position: absolute;
	top: 13px;
	right: 50%;
	left: -50%;
	height: 3px;
	background-color: var(--gs-line);
}

.gs-ac-step:first-child::before {
	display: none;
}

.gs-ac-step.is-done::before,
.gs-ac-step.is-current::before {
	background-color: var(--gs-green);
}

.gs-ac-step-dot {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 29px;
	height: 29px;
	margin-bottom: 8px;
	border: 3px solid var(--gs-line);
	border-radius: 50%;
	background-color: #fff;
	color: #fff;
}

.gs-ac-step-dot .gs-ac-icon {
	width: 15px;
	height: 15px;
	stroke-width: 2.6;
}

.gs-ac-step.is-done .gs-ac-step-dot {
	border-color: var(--gs-green);
	background-color: var(--gs-green);
}

.gs-ac-step.is-current .gs-ac-step-dot {
	border-color: var(--gs-blue);
	background-color: var(--gs-blue);
	box-shadow: 0 0 0 5px rgba(9, 137, 255, .15);
}

.gs-ac-step-label {
	color: var(--gs-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.gs-ac-step.is-done .gs-ac-step-label {
	color: var(--gs-black);
}

.gs-ac-step.is-current .gs-ac-step-label {
	color: var(--gs-blue);
	font-weight: 600;
}

.gs-ac-step-date {
	margin-top: 2px;
	color: var(--gs-muted);
	font-size: 12px;
}

.gs-ac-courier {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	padding: 14px 16px;
	border: 1px solid var(--gs-blue-line);
	border-radius: 8px;
	background-color: var(--gs-blue-soft);
}

.gs-ac-courier-icon {
	display: inline-flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: var(--gs-blue);
	color: #fff;
}

.gs-ac-courier-text {
	flex: 1;
	min-width: 0;
}

.gs-ac-courier-text strong,
.gs-ac-courier-text span {
	display: block;
}

.gs-ac-courier-text strong {
	color: var(--gs-black);
	font-size: 15px;
	font-weight: 600;
}

.gs-ac-courier-text span {
	color: var(--gs-body);
	font-size: 13px;
}

.gs-ac-courier-text b {
	color: var(--gs-black);
	font-weight: 600;
	word-break: break-all;
}

.gs-ac-courier--wait {
	border-style: dashed;
	border-color: #d5d8db;
	background-color: #fff;
}

.gs-ac-courier--wait .gs-ac-courier-icon {
	background-color: var(--gs-page);
	color: var(--gs-muted);
}

.gs-ac-od-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
	gap: 28px;
}

.gs-ac .gs-ac-od-title {
	margin: 0 0 10px;
	color: var(--gs-black);
	font-size: 15px;
	font-weight: 600;
}

.gs-ac-od-side .gs-ac-od-title + .gs-ac-addr,
.gs-ac-sum + .gs-ac-od-title {
	margin-top: 18px;
}

.gs-ac-items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gs-ac-item {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid var(--gs-line-soft);
}

.gs-ac-item:last-child {
	border-bottom: 0;
}

.gs-ac-item-thumb img {
	display: block;
	width: 56px;
	height: 56px;
	margin: 0;
	border: 1px solid var(--gs-line-soft);
	border-radius: 6px;
	background-color: #fff;
	object-fit: cover;
}

.gs-ac-item-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.gs-ac .gs-ac-item-name {
	display: -webkit-box;
	overflow: hidden;
	color: var(--gs-black);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.gs-ac .gs-ac-item-name:hover {
	color: var(--gs-blue);
}

.gs-ac-item-meta,
.gs-ac-item-qty {
	color: var(--gs-muted);
	font-size: 12px;
}

.gs-ac-item-total {
	color: var(--gs-black);
	font-weight: 600;
	white-space: nowrap;
}

.gs-ac-sum {
	margin: 0;
	padding: 4px 14px;
	border: 1px solid var(--gs-line-soft);
	background-color: #fff;
}

.gs-ac-sum > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 7px 0;
}

.gs-ac-sum dt,
.gs-ac-sum dd {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.gs-ac-sum dd {
	color: var(--gs-black);
	text-align: right;
}

.gs-ac-sum .gs-ac-sum-total {
	border-top: 1px solid var(--gs-line-soft);
}

.gs-ac-sum .gs-ac-sum-total dt,
.gs-ac-sum .gs-ac-sum-total dd {
	color: var(--gs-black);
	font-size: 16px;
	font-weight: 700;
}

.gs-ac .gs-ac-addr {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--gs-line-soft);
	background-color: #fff;
	color: var(--gs-body);
	font-size: 14px;
	font-style: normal;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

/* Order tracking page ------------------------------------------------------ */

.gs-ac-head {
	padding: 30px 0 18px;
	text-align: center;
}

.gs-ac .gs-ac-page-title {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.15;
}

.gs-ac-page-sub {
	margin-top: 6px;
	color: var(--gs-muted);
	font-size: 15px;
}

.gs-ac-track {
	padding: 0 0 60px;
}

.gs-ac-track-form {
	padding: 24px;
	border-radius: 8px;
}

.gs-ac .gs-ac-track-label {
	display: block;
	margin: 0 0 8px;
	color: #333;
	font-size: 16px;
	font-weight: 600;
}

.gs-ac-track-label span {
	color: var(--gs-red);
}

.gs-ac-track-row {
	position: relative;
	display: flex;
	gap: 10px;
}

.gs-ac-track-icon {
	position: absolute;
	top: 26px;
	left: 16px;
	color: var(--gs-muted);
	line-height: 0;
	transform: translateY(-50%);
	pointer-events: none;
}

.gs-ac .gs-ac-track-input {
	flex: 1;
	min-width: 0;
	height: 52px;
	margin: 0;
	padding: 0 16px 0 44px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background-color: #fff;
	box-shadow: none;
	color: var(--gs-black);
	font-family: var(--gs-font);
	font-size: 16px;
	outline: none;
}

.gs-ac .gs-ac-track-input:focus {
	border-color: var(--gs-blue);
}

.gs-ac .is-invalid .gs-ac-track-input {
	border-color: var(--gs-red);
}

.gs-ac-track-row .gs-ac-btn {
	border-radius: 6px;
}

.gs-ac .gs-ac-result-title {
	margin: 34px 0 14px;
	font-size: 20px;
	text-align: center;
}

.gs-ac-result {
	margin-bottom: 20px;
	padding: 22px 24px 4px;
	border-radius: 8px;
}

.gs-ac-result-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 24px;
	margin-bottom: 22px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--gs-line-soft);
}

.gs-ac .gs-ac-result-head h3 {
	margin-bottom: 6px;
	font-size: 18px;
}

.gs-ac-result-head p {
	margin-bottom: 2px;
	font-size: 14px;
}

.gs-ac-result-head b {
	color: var(--gs-black);
	font-weight: 600;
}

.gs-ac-result-right {
	text-align: right;
}

.gs-ac-promo {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	padding: 18px 22px;
	border-radius: 8px;
}

.gs-ac-promo p {
	flex: 1;
	font-size: 14px;
}

.gs-ac-promo strong {
	color: var(--gs-black);
}

.gs-ac-promo-icon {
	display: inline-flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--gs-blue-soft);
	color: var(--gs-blue);
}

.gs-ac-promo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Thank-you page box ------------------------------------------------------- */

.gs-ac-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
	margin: 0 0 30px;
	padding: 18px 20px;
	border: 1px solid var(--gs-blue-line);
	border-radius: 10px;
	background-color: var(--gs-blue-soft);
}

.gs-ac-cta-icon {
	display: inline-flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: var(--gs-blue);
	color: #fff;
}

.gs-ac-cta-text {
	flex: 1 1 260px;
	min-width: 0;
}

.gs-ac-cta-text strong {
	display: block;
	margin-bottom: 2px;
	color: var(--gs-black);
	font-size: 16px;
	font-weight: 600;
}

.gs-ac-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1199px) {
	.gs-ac-layout {
		grid-template-columns: 250px minmax(0, 1fr);
		gap: 24px;
	}

	.gs-ac-od-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}
}

@media (max-width: 991px) {
	.gs-ac-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}

	.gs-ac-side {
		position: static;
	}

	.gs-ac-nav {
		flex-direction: row;
		overflow-x: auto;
		padding: 0;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.gs-ac-nav::-webkit-scrollbar {
		display: none;
	}

	.gs-ac .gs-ac-nav-link {
		flex: none;
		padding: 14px 16px;
		white-space: nowrap;
	}

	.gs-ac .gs-ac-nav-link::before {
		top: auto;
		right: 0;
		width: auto;
		height: 2px;
	}

	.gs-ac .gs-ac-help {
		display: none;
	}

	.gs-ac-shape--1,
	.gs-ac-shape--3 {
		display: none;
	}
}

@media (max-width: 767px) {
	.gs-ac-auth {
		padding: 20px 0 40px;
	}

	.gs-ac-auth-card {
		padding: 26px 20px 30px;
	}

	.gs-ac .gs-ac-title {
		font-size: 22px;
	}

	.gs-ac-intro {
		font-size: 15px;
	}

	.gs-ac-shape {
		display: none;
	}

	.gs-ac-profile {
		padding: 16px 0 40px;
	}

	.gs-ac-panel {
		padding: 20px 16px 24px;
	}

	.gs-ac-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
	}

	.gs-ac-orders {
		border: 0;
	}

	.gs-ac-orders-head {
		display: none;
	}

	.gs-ac-order {
		margin-bottom: 12px;
		border: 1px solid var(--gs-line-soft);
	}

	.gs-ac-order:last-child {
		border-bottom: 1px solid var(--gs-line-soft);
	}

	.gs-ac-order-sum {
		grid-template-columns: minmax(0, 1fr) auto 20px;
		grid-template-areas:
			"num status chev"
			"date total total"
			"track track track";
		gap: 6px 10px;
		padding: 14px;
	}

	.gs-ac-o--num { grid-area: num; }
	.gs-ac-o--status { grid-area: status; }
	.gs-ac-o--chev { grid-area: chev; }
	.gs-ac-o--date { grid-area: date; color: var(--gs-muted); font-size: 13px; }
	.gs-ac-o--total { grid-area: total; text-align: right; }
	.gs-ac-o--track { grid-area: track; }

	.gs-ac-o--track.is-empty {
		display: none;
	}

	.gs-ac-o-k {
		display: inline;
	}

	.gs-ac .gs-ac-track-btn {
		justify-content: center;
		width: 100%;
		margin-top: 4px;
		padding: 9px 12px;
		font-size: 14px;
	}

	.gs-ac-order-body {
		padding: 16px 14px 20px;
	}

	.gs-ac-courier {
		flex-wrap: wrap;
	}

	.gs-ac-courier .gs-ac-btn {
		width: 100%;
	}

	.gs-ac-step-label {
		font-size: 11px;
	}

	.gs-ac-step-date {
		font-size: 10px;
	}

	.gs-ac .gs-ac-page-title {
		font-size: 26px;
	}

	.gs-ac-track-form {
		padding: 18px 16px;
	}

	.gs-ac-track-row {
		flex-direction: column;
	}

	.gs-ac .gs-ac-track-input {
		flex: none;
		width: 100%;
	}

	.gs-ac-track-row .gs-ac-btn {
		width: 100%;
	}

	.gs-ac-result {
		padding: 18px 16px 2px;
	}

	.gs-ac-result-right {
		text-align: left;
	}

	.gs-ac-promo {
		flex-wrap: wrap;
	}

	.gs-ac-promo p {
		flex-basis: calc(100% - 60px);
	}

	.gs-ac-promo-actions,
	.gs-ac-cta-actions {
		width: 100%;
	}

	.gs-ac-promo-actions .gs-ac-btn,
	.gs-ac-cta-actions .gs-ac-btn {
		flex: 1;
	}
}

/* Small phones: the four account tabs as a 2 × 2 grid instead of a sideways-scrolling row. */
@media (max-width: 575px) {
	.gs-ac-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		overflow: visible;
	}

	.gs-ac .gs-ac-nav-link {
		padding: 12px 14px;
		border-top: 1px solid var(--gs-line-soft);
		font-size: 14px;
		white-space: normal;
	}

	.gs-ac .gs-ac-nav-link:nth-child(odd) {
		border-right: 1px solid var(--gs-line-soft);
	}
}
