.astqa {
	--astqa-border: #e5e7eb;
	--astqa-muted: #64748b;
	--astqa-text: #111827;
	--astqa-bg: #ffffff;
	--astqa-soft: #f8fafc;
	--astqa-primary: #2563eb;
	--astqa-primary-dark: #1d4ed8;
	--astqa-admin: #7c3aed;
	--astqa-vendor: #0f766e;
	--astqa-customer: #475569;

	color: var(--astqa-text);
	max-width: 860px;
}

.astqa__header {
	margin-bottom: 18px;
}

.astqa__title {
	font-size: 1.45rem;
	line-height: 1.25;
	margin: 0;
}

.astqa__login,
.astqa__empty {
padding: 0;
    border: none;
    border-radius: var(--acr-radius);
    background: transparent;
    color: #ffffff;
    margin-bottom: 10px !important;
}

.astqa__login a,
.astqa__empty a{
   color: #F44336; 
}

.astqa-form {
	background: var(--astqa-bg);
	border: 1px solid var(--astqa-border);
	border-radius: 8px;
	margin-bottom: 24px;
	padding: 16px;
}

.astqa-reply-form {
	margin: 12px 0 0 58px;
}

.astqa-form__label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
}

.astqa-form__textarea {
	background: #fff;
	border: 1px solid var(--astqa-border);
	border-radius: 8px;
	box-shadow: none;
	box-sizing: border-box;
	color: var(--astqa-text);
	display: block;
	font-size: 1rem;
	line-height: 1.5;
	min-height: 110px;
	padding: 12px;
	resize: vertical;
	width: 100%;
}

.astqa-reply-form .astqa-form__textarea {
	min-height: 86px;
}

.astqa-form__textarea:focus {
	border-color: var(--astqa-primary);
	outline: 2px solid rgba(37, 99, 235, 0.18);
	outline-offset: 0;
}

.astqa-form__footer {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: 12px;
}

.astqa-form__note {
	color: var(--astqa-muted);
	font-size: 0.9rem;
	margin: 0;
}

.astqa-form__submit {
	align-items: center;
	background: var(--astqa-primary);
	border: 0;
	border-radius: 7px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 42px;
	padding: 10px 16px;
	transition: background-color 160ms ease, opacity 160ms ease;
}

.astqa-form__submit:hover,
.astqa-form__submit:focus {
	background: var(--astqa-primary-dark);
	color: #fff;
}

.astqa-form__submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.astqa-form__message {
	font-size: 0.92rem;
	margin-top: 10px;
	min-height: 1.4em;
}

.astqa-form__message.is-error {
	color: #b91c1c;
}

.astqa-form__message.is-success {
	color: #047857;
}

.astqa__comments,
.astqa__comments .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.astqa__comments .children {
	border-left: 2px solid var(--astqa-border);
	margin-left: 21px;
	margin-top: 14px;
	padding-left: 20px;
}

.astqa-comment {
	margin: 0 0 18px;
}

.astqa-comment__body {
	display: flex;
	gap: 14px;
}

.astqa-comment__avatar {
	flex: 0 0 42px;
}

.astqa-comment__avatar-img {
	border-radius: 50%;
	display: block;
	height: 42px;
	width: 42px;
}

.astqa-comment__content {
	background: var(--astqa-soft);
	border: 1px solid var(--astqa-border);
	border-radius: 8px;
	flex: 1;
	min-width: 0;
	padding: 13px 14px;
}

.astqa-comment__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 7px;
}

.astqa-comment__author {
	font-size: 0.96rem;
	line-height: 1.25;
}

.astqa-comment__time {
	color: var(--astqa-muted);
	font-size: 0.84rem;
}

.astqa-badge {
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
	padding: 5px 8px;
}

.astqa-badge--admin {
	background: var(--astqa-admin);
}

.astqa-badge--vendor {
	background: var(--astqa-vendor);
}

.astqa-badge--customer {
	background: var(--astqa-customer);
}

.astqa-comment__text {
	font-size: 0.98rem;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.astqa-comment__text p:last-child {
	margin-bottom: 0;
}

.astqa-comment__reply {
	background: transparent;
	border: 0;
	color: var(--astqa-primary);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 700;
	margin-top: 10px;
	padding: 0;
}

.astqa-comment__reply:hover,
.astqa-comment__reply:focus {
	color: var(--astqa-primary-dark);
	text-decoration: underline;
}

@media (max-width: 640px) {
	.astqa-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.astqa-form__submit {
		width: 100%;
	}

	.astqa-comment__body {
		gap: 10px;
	}

	.astqa-comment__avatar {
		flex-basis: 36px;
	}

	.astqa-comment__avatar-img {
		height: 36px;
		width: 36px;
	}

	.astqa__comments .children {
		margin-left: 12px;
		padding-left: 14px;
	}

	.astqa-reply-form {
		margin-left: 0;
	}
}

.astqa-comment__avatar,
.astqa-comment__avatar .avatar,
.astqa-comment__avatar-img {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.astqa-comment__avatar {
	flex: 0 0 42px;
	width: 42px;
	min-width: 42px;
}

.astqa-comment__avatar img {
	border-radius: 50%;
	height: 42px;
	object-fit: cover;
	width: 42px;
}



/* ==========================================
   HPB QUESTIONS & ANSWERS
========================================== */

.astqa{

    max-width:100% !important;
    color:#fff !important;
}

/* Section Title */

.astqa__title{

color:#fff !important;

font-size: 24px !important;

font-weight: 600 !important;

margin-bottom:24px !important;

font-family: "Space Grotesk" !important;
}

/* ==========================================
   ASK QUESTION BOX
========================================== */

.astqa-form{

background: #101114 !important;

border: 1px solid #FFFFFF12 !important;

border-radius:20px !important;

padding:24px !important;

margin-bottom:30px !important;
}

.astqa-form__label{

    color:#FFFFFF !important;

    font-size:15px !important;
    font-weight:600 !important;

    margin-bottom:10px !important;
}

.astqa-form__textarea{

background: #08090b !important;

border: 1px solid #FFFFFF12 !important;

border-radius:14px !important;

color:#fff !important;

min-height: 90px !important;

padding:16px !important;

font-size:15px !important;

height: 90px!important;
}

.astqa-form__textarea:focus{

    border-color:#FF3040 !important;

    box-shadow:
    0 0 0 3px rgba(255,48,64,.15) !important;

    outline:none !important;
}

.astqa-form__note{

    color:#96989F !important;

    font-size:13px !important;
}

.astqa-form__submit{

background:linear-gradient(
        135deg,
        #FF4D5A,
        #FF2637
    ) !important;

border:none !important;

border-radius:999px !important;

color:#fff !important;

font-size:14px !important;

font-weight: 400 !important;

min-height:48px !important;

padding:0 24px !important;
}

.astqa-form__submit:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(255,45,61,.25) !important;
}

/* ==========================================
   QUESTION CARD
========================================== */

.astqa-comment{

    margin-bottom:14px !important;
}

.astqa-comment__content{

background: #101114 !important;

border: 1px solid #FFFFFF12 !important;

border-radius:16px !important;

padding:18px !important;
}

.astqa-comment__author{

color:#fff !important;

font-size:15px !important;

font-weight: 600 !important;
}

.astqa-comment__time{

    color:#96989F !important;

    font-size:12px !important;
}

/* Question Text */

.astqa-comment__text{

color: #96989F !important;

font-size: 14px !important;

line-height:1.7 !important;

font-weight: 400;
}

/* ==========================================
   BADGES
========================================== */

.astqa-badge{

border-radius:999px !important;

font-size: 10px !important;

font-weight: 400 !important;

padding:4px 10px !important;
}

.astqa-badge--customer{

background: #2e3343 !important;

color:#FFFFFF !important;
}

.astqa-badge--vendor{

    background:#10B981 !important;

    color:#FFFFFF !important;
}

.astqa-badge--admin{

    background:#FF3040 !important;

    color:#FFFFFF !important;
}

/* ==========================================
   ANSWER BUTTON
========================================== */

.astqa-comment__reply{

display:inline-flex !important;

align-items:center !important;

height: 30px !important;

padding: 0 10px !important;

background: #08090b !important;

border: 1px solid #ff3040 !important;

border-radius:999px !important;

color: #ff3040 !important;

font-size: 12px !important;

font-weight: 400 !important;

margin-top:14px !important;
}

.astqa-comment__reply:hover{

background: #FF3040 !important;

border-color:#FF3040 !important;

color:#fff !important;

text-decoration:none !important;
}

/* ==========================================
   REPLIES
========================================== */

.astqa__comments .children{

    border-left:2px solid #1A2033 !important;

    margin-left:28px !important;

    padding-left:20px !important;
}

.astqa__comments .children
.astqa-comment__content{

background: #101114 !important;
}

/* ==========================================
   AVATAR
========================================== */

.astqa-comment__avatar img,
.astqa-comment__avatar-img{

    width:44px !important;
    height:44px !important;

    border-radius:50% !important;

    border:2px solid #1A2033 !important;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px){

.astqa-form{

    padding:18px !important;
}

.astqa-form__footer{

    flex-direction:column !important;

    align-items:stretch !important;
}

.astqa-form__submit{

    width:100% !important;
}

}