/* ===== NEXORA DIGITAL ZONE — MAIN STYLES ===== */

:root{
	--navy: #0a0e27;
	--navy-2: #0f1435;
	--navy-card: #131a3d;
	--cyan: #22d3ee;
	--purple: #a855f7;
	--blue: #3b82f6;
	--text: #e2e8f0;
	--text-muted: #94a3b8;
	--gradient: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
	--radius: 16px;
}

*{box-sizing:border-box;}
body{
	margin:0;
	background:var(--navy);
	color:var(--text);
	font-family:'Segoe UI', Roboto, 'Hind Siliguri', system-ui, sans-serif;
	line-height:1.6;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
h1,h2,h3{margin:0 0 12px;font-weight:800;}
p{margin:0 0 12px;color:var(--text-muted);}

.nexora-container{max-width:1200px;margin:0 auto;padding:0 24px;}
.nexora-center{text-align:center;}
.nexora-gradient-text{
	background:var(--gradient);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
}

/* ===== HEADER ===== */
.nexora-header{
	background:rgba(10,14,39,0.9);
	backdrop-filter:blur(10px);
	position:sticky;top:0;z-index:100;
	border-bottom:1px solid rgba(255,255,255,0.06);
}
.nexora-header-inner{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;}
.nexora-logo{display:flex;align-items:center;gap:8px;}
.nexora-logo img{max-height:44px;width:auto;}
.nexora-nav ul{list-style:none;display:flex;gap:28px;margin:0;padding:0;}
.nexora-nav a{color:var(--text);font-weight:500;font-size:15px;transition:color .2s;}
.nexora-nav a:hover{color:var(--cyan);}
.nexora-header-right{display:flex;align-items:center;gap:16px;}
.nexora-cart-wrap{position:relative;}
.nexora-cart-icon{position:relative;color:var(--text);display:flex;align-items:center;background:none;border:none;cursor:pointer;padding:4px;}
.nexora-cart-count{
	position:absolute;top:-8px;right:-10px;background:var(--gradient);color:#fff;
	font-size:11px;font-weight:800;min-width:18px;height:18px;border-radius:50%;
	display:flex;align-items:center;justify-content:center;padding:0 4px;
}
.nexora-cart-dropdown{
	display:none;position:absolute;top:44px;right:0;width:380px;max-width:calc(100vw - 24px);
	max-height:70vh;overflow-y:auto;background:var(--navy-card);border:1px solid rgba(255,255,255,0.1);
	border-radius:16px;padding:14px;box-shadow:0 20px 50px rgba(0,0,0,0.5);z-index:200;
}
.nexora-cart-dropdown.active{display:block;}
.nexora-cart-dropdown h4{font-size:15px;margin:0 0 10px;}
.nexora-cart-item{
	display:grid;grid-template-columns:58px minmax(0,1fr) 30px;align-items:center;gap:10px;
	padding:10px 0;border-bottom:1px solid rgba(255,255,255,0.07);
}
.nexora-cart-item:last-child{border-bottom:none;}
.nexora-cart-item-image{width:58px;height:58px;border-radius:10px;overflow:hidden;background:var(--navy);}
.nexora-cart-item-image img{width:100%;height:100%;object-fit:cover;}
.nexora-cart-item-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:22px;}
.nexora-cart-item-info{font-size:13px;min-width:0;}
.nexora-cart-item-name{display:block;font-weight:700;white-space:normal;line-height:1.35;margin-bottom:4px;overflow-wrap:anywhere;}
.nexora-cart-item-price{display:block;color:var(--cyan);font-size:13px;margin-bottom:7px;}
.nexora-cart-item-btn{
	background:var(--gradient);color:#fff;border:none;padding:6px 12px;border-radius:20px;
	font-size:11px;font-weight:700;cursor:pointer;white-space:nowrap;
}
.nexora-cart-remove{
	width:28px;height:28px;border-radius:50%;border:1px solid rgba(255,255,255,0.12);
	background:rgba(255,255,255,0.06);color:var(--text-muted);font-size:21px;line-height:24px;
	cursor:pointer;display:flex;align-items:center;justify-content:center;
}
.nexora-cart-remove:hover{background:#dc2626;color:#fff;border-color:#dc2626;}
.nexora-cart-empty{font-size:13px;color:var(--text-muted);text-align:center;padding:10px 0;}
.nexora-menu-toggle{display:none;background:none;border:none;color:var(--text);font-size:24px;cursor:pointer;}


/* ===== HEADER MY ORDERS BUTTON ===== */
.nexora-my-orders-btn{
	display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;
	padding:8px 14px;border-radius:999px;background:var(--gradient);color:#fff;
	font-size:13px;font-weight:800;box-shadow:0 6px 18px rgba(168,85,247,.22);
}
.nexora-my-orders-btn:hover{transform:translateY(-1px);color:#fff;}
@media(max-width:900px){
	.nexora-my-orders-btn{font-size:12px;padding:7px 11px;}
}
@media(max-width:520px){
	.nexora-my-orders-btn{font-size:11px;padding:7px 9px;}
}

/* ===== BUTTONS ===== */
.nexora-btn{
	display:inline-block;padding:14px 28px;border-radius:50px;font-weight:700;font-size:15px;
	border:none;cursor:pointer;transition:transform .2s, box-shadow .2s;
}
.nexora-btn-primary{
	background:var(--gradient);color:#fff;
	box-shadow:0 8px 24px rgba(168,85,247,0.35);
}
.nexora-btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(168,85,247,0.5);}
.nexora-btn-outline{background:transparent;color:var(--text);border:1.5px solid rgba(255,255,255,0.2);}
.nexora-btn-outline:hover{border-color:var(--cyan);color:var(--cyan);}

/* ===== HERO ===== */
.nexora-hero{
	padding:90px 0 70px;
	text-align:center;
	background:radial-gradient(ellipse at top, rgba(168,85,247,0.15), transparent 60%),
	           radial-gradient(ellipse at bottom right, rgba(34,211,238,0.1), transparent 50%);
}
.nexora-hero-inner{max-width:720px;margin:0 auto;}
.nexora-eyebrow{
	display:inline-block;padding:6px 16px;border-radius:50px;font-size:13px;font-weight:600;
	background:rgba(168,85,247,0.15);color:var(--purple);margin-bottom:20px;border:1px solid rgba(168,85,247,0.3);
}
.nexora-hero h1{font-size:44px;line-height:1.2;margin-bottom:18px;}
.nexora-hero-sub{font-size:17px;margin-bottom:32px;}
.nexora-hero-cta{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:24px;}
.nexora-hero-tags{display:flex;gap:24px;justify-content:center;font-size:13px;color:var(--text-muted);flex-wrap:wrap;}
.nexora-hero-tag{display:flex;align-items:center;gap:8px;font-weight:600;}
.nexora-hero-tag-icon{
	display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;
	border-radius:50%;color:#fff;font-size:12px;font-weight:800;
}
.nexora-tag-green{background:linear-gradient(135deg,#10b981,#22d3ee);}
.nexora-tag-blue{background:linear-gradient(135deg,#3b82f6,#a855f7);}

/* ===== SECTIONS ===== */
.nexora-section{padding:70px 0;}
.nexora-section-alt{background:var(--navy-2);}
.nexora-section h2{font-size:32px;text-align:center;}
.nexora-section-sub{text-align:center;max-width:560px;margin:0 auto 40px;}
.nexora-section-header-row{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:36px;flex-wrap:wrap;gap:16px;}
.nexora-section-header-row h2{text-align:left;margin-bottom:4px;}
.nexora-section-header-row .nexora-section-sub{text-align:left;margin:0;}
.nexora-view-all{color:var(--cyan);font-weight:600;white-space:nowrap;}

/* ===== CATEGORIES ===== */
.nexora-category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.nexora-category-card{
	background:var(--navy-card);border:1px solid rgba(255,255,255,0.06);border-radius:var(--radius);
	padding:30px 20px;text-align:center;transition:transform .2s, border-color .2s;
}
.nexora-category-card:hover{transform:translateY(-4px);border-color:var(--cyan);}
.nexora-category-icon{font-size:32px;display:block;margin-bottom:12px;}
.nexora-category-card h3{font-size:17px;margin-bottom:4px;}
.nexora-category-card p{font-size:13px;margin:0;}

/* ===== PRODUCT GRID / CARD ===== */
.nexora-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.nexora-product-card{
	background:var(--navy-card);border:1px solid rgba(255,255,255,0.06);border-radius:var(--radius);
	overflow:hidden;transition:transform .2s;display:flex;flex-direction:column;
}
.nexora-product-card:hover{transform:translateY(-4px);}
.nexora-product-thumb{position:relative;aspect-ratio:4/3;background:var(--gradient);overflow:hidden;}
.nexora-product-thumb img{width:100%;height:100%;object-fit:cover;}
.nexora-product-thumb-placeholder{width:100%;height:100%;background:var(--gradient);}
.nexora-product-badge{
	position:absolute;top:12px;left:12px;background:rgba(0,0,0,0.5);color:#fff;
	font-size:11px;font-weight:600;padding:4px 10px;border-radius:20px;backdrop-filter:blur(4px);
}
.nexora-product-rating{
	position:absolute;top:12px;right:12px;background:rgba(0,0,0,0.5);color:#fbbf24;
	font-size:12px;font-weight:700;padding:4px 8px;border-radius:20px;backdrop-filter:blur(4px);
}
.nexora-product-body{padding:18px;overflow:hidden;}
.nexora-product-body h3{font-size:16px;margin-bottom:12px;overflow-wrap:break-word;}
.nexora-product-body h3 a:hover{color:var(--cyan);}
.nexora-product-footer{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap;}
.nexora-price{font-size:18px;font-weight:800;color:#fff;overflow-wrap:break-word;}
.nexora-price-old{font-size:12px;text-decoration:line-through;color:var(--text-muted);margin-right:4px;}
.nexora-btn-buy{
	background:var(--gradient);color:#fff;border:none;padding:9px 16px;border-radius:50px;
	font-weight:700;font-size:13px;cursor:pointer;white-space:nowrap;flex-shrink:0;display:inline-block;text-decoration:none;
}
.nexora-empty{text-align:center;grid-column:1/-1;padding:40px;color:var(--text-muted);}

/* ===== SHOP PAGE ===== */
.nexora-shop-title{font-size:32px;text-align:center;margin-bottom:24px;}
.nexora-shop-filters{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:36px;}
.nexora-filter-pill{
	padding:8px 18px;border-radius:50px;border:1px solid rgba(255,255,255,0.15);font-size:14px;font-weight:600;
}
.nexora-filter-pill.active,.nexora-filter-pill:hover{background:var(--gradient);border-color:transparent;}
.nexora-pagination{text-align:center;margin-top:40px;}
.nexora-pagination .page-numbers{display:inline-block;padding:8px 14px;margin:0 4px;border-radius:8px;background:var(--navy-card);}
.nexora-pagination .page-numbers.current{background:var(--gradient);}

/* ===== SINGLE PRODUCT ===== */
.nexora-single-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start;}
.nexora-single-thumb img{border-radius:var(--radius);width:100%;height:auto;display:block;}
.nexora-single-placeholder{border-radius:var(--radius);width:100%;aspect-ratio:4/3;}
.nexora-single-placeholder{background:var(--gradient);}
.nexora-single-badge{position:static;display:inline-block;background:var(--navy-card);margin-bottom:14px;}
.nexora-single-info h1{font-size:30px;}
.nexora-single-rating{color:#fbbf24;font-weight:700;}
.nexora-single-price{font-size:28px;margin:16px 0 20px;}
.nexora-single-price .nexora-price{font-size:28px;}
.nexora-single-desc{margin-bottom:24px;}

/* ===== WHY SHOP ===== */
.nexora-why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:50px;}
.nexora-why-card{text-align:center;}
.nexora-why-icon{
	display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;
	border-radius:50%;background:var(--navy-card);font-size:24px;margin-bottom:14px;
}
.nexora-why-card h3{font-size:17px;}
.nexora-why-card p{font-size:13px;}
.nexora-payment-badges{text-align:center;}
.nexora-badge-label{font-size:12px;letter-spacing:2px;color:var(--text-muted);display:block;margin-bottom:14px;}
.nexora-badge-row{display:flex;gap:14px;justify-content:center;align-items:center;}
.nexora-pay-badge-img{height:36px;width:auto;border-radius:8px;background:#fff;padding:4px 10px;}
.nexora-pay-logos{display:flex;gap:10px;margin-bottom:12px;}
.nexora-pay-logos img{height:30px;width:auto;border-radius:6px;background:#fff;padding:3px 8px;}

/* ===== HOW IT WORKS ===== */
.nexora-steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.nexora-step-card{text-align:center;background:var(--navy-card);border-radius:var(--radius);padding:32px 20px;}
.nexora-step-num{
	display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;
	border-radius:50%;background:var(--gradient);font-weight:800;margin-bottom:14px;color:#fff;
}
.nexora-step-card h3{font-size:18px;}
.nexora-step-card p{font-size:14px;}

/* ===== FINAL CTA ===== */
.nexora-final-cta{
	background:var(--gradient);border-radius:24px;padding:60px 40px;text-align:center;
}
.nexora-final-cta h2,.nexora-final-cta p{color:#fff;}
.nexora-final-cta p{opacity:0.9;}

/* ===== FOOTER ===== */
.nexora-footer{background:var(--navy-2);padding:60px 0 0;border-top:1px solid rgba(255,255,255,0.06);}
.nexora-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.3fr;gap:40px;padding-bottom:40px;}
.nexora-footer-contact{font-size:14px;margin-bottom:12px;display:flex;align-items:center;gap:8px;color:#fff;flex-wrap:nowrap;}
.nexora-contact-icon{width:16px;height:16px;flex-shrink:0;color:var(--cyan);}
.nexora-footer-contact a{color:#fff;font-weight:600;}
.nexora-footer-contact a:hover{color:var(--cyan);}
.nexora-footer-social-btns{display:flex;flex-direction:column;gap:10px;margin-top:14px;}
.nexora-social-btn{
	display:block;text-align:center;padding:10px;border-radius:8px;font-weight:700;font-size:14px;color:#fff;
	text-shadow:0 1px 2px rgba(0,0,0,0.35);
}
.nexora-fb-btn{background:#1877f2;}
.nexora-wa-btn{background:#1da851;}
.nexora-social-btn:hover{opacity:0.9;}
.nexora-whatsapp-float{
	position:fixed;bottom:24px;right:24px;width:56px;height:56px;border-radius:50%;
	background:#25d366;display:flex;align-items:center;justify-content:center;z-index:997;
	box-shadow:0 8px 24px rgba(37,211,102,0.4);
}
@media(max-width:520px){
	.nexora-whatsapp-float{bottom:16px;right:16px;width:50px;height:50px;}
}
.nexora-footer-desc{font-size:14px;margin-top:14px;}
.nexora-footer h4{font-size:13px;letter-spacing:1px;color:var(--text-muted);margin-bottom:16px;}
.nexora-footer ul{list-style:none;padding:0;margin:0;}
.nexora-footer li{margin-bottom:10px;}
.nexora-footer a{font-size:14px;color:var(--text-muted);}
.nexora-footer a:hover{color:var(--cyan);}
.nexora-footer-bottom{border-top:1px solid rgba(255,255,255,0.06);padding:20px 24px;text-align:center;font-size:13px;color:var(--text-muted);}

/* ===== WELCOME POPUP ===== */
.nexora-welcome-overlay{
	display:none;position:fixed;inset:0;background:rgba(0,0,0,0.75);z-index:1000;
	align-items:center;justify-content:center;padding:20px;
}
.nexora-welcome-overlay.active{display:flex;}
.nexora-welcome-box{
	background:var(--navy-card);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius);
	padding:40px 32px;max-width:380px;width:100%;text-align:center;position:relative;
	box-shadow:0 20px 60px rgba(0,0,0,0.6);
}
.nexora-welcome-emoji{font-size:44px;margin-bottom:10px;}
.nexora-welcome-box h3{font-size:22px;margin-bottom:10px;}
.nexora-welcome-box p{font-size:14px;margin-bottom:22px;}

.nexora-payment-numbers{background:var(--navy);border-radius:14px;padding:14px;margin:14px 0 20px;font-size:14px;}
.nexora-pay-logos{display:flex;gap:14px;margin-bottom:14px;align-items:center;}
.nexora-pay-logos .nexora-pay-logo-img{width:66px;height:54px;object-fit:contain;border-radius:10px;background:#fff;padding:5px;}
.nexora-pay-number-row{
	display:flex;align-items:center;justify-content:space-between;gap:10px;
	background:rgba(255,255,255,0.045);border:1px solid rgba(255,255,255,0.05);
	border-radius:12px;padding:10px 12px;margin-bottom:9px;
}
.nexora-pay-number-label{display:flex;align-items:center;gap:8px;min-width:0;}
.nexora-pay-number-label strong{font-size:14px;white-space:nowrap;}
.nexora-pay-number{font-weight:800;color:var(--cyan);font-size:17px;letter-spacing:0.5px;white-space:nowrap;}

.nexora-payment-confirm-note{
	margin:14px 0 14px;padding:13px 14px;border-radius:12px;
	background:rgba(38,198,218,0.08);border:1px solid rgba(38,198,218,0.18);
	color:var(--text-muted);font-size:13px;line-height:1.65;
}
.nexora-payment-confirm-note strong{color:var(--text);}
.nexora-copy-btn{
	background:var(--gradient);border:none;color:#fff;padding:8px 18px;border-radius:22px;
	font-size:12px;font-weight:800;cursor:pointer;white-space:nowrap;flex-shrink:0;
}
.nexora-copy-btn.copied{background:#16a34a;}

/* ===== CHECKOUT MODAL ===== */
.nexora-modal-overlay{
	display:none;position:fixed;inset:0;background:rgba(0,0,0,0.7);z-index:999;
	align-items:center;justify-content:center;padding:20px;
}
.nexora-modal-overlay.active{display:flex;}
.nexora-modal{
	background:var(--navy-card);border-radius:var(--radius);padding:32px;max-width:440px;width:100%;
	max-height:90vh;overflow-y:auto;position:relative;border:1px solid rgba(255,255,255,0.1);
}
.nexora-modal-close{position:absolute;top:16px;right:16px;background:none;border:none;color:var(--text-muted);font-size:26px;cursor:pointer;}
.nexora-modal h3{font-size:22px;}
.nexora-modal-product{font-weight:600;color:var(--text);}
.nexora-modal-product-card{
	display:flex;align-items:center;gap:12px;background:var(--navy);border:1px solid rgba(255,255,255,0.07);
	border-radius:14px;padding:10px;margin-bottom:16px;
}
.nexora-modal-product-image{width:72px;height:60px;border-radius:9px;overflow:hidden;flex:0 0 72px;background:var(--navy-card);}
.nexora-modal-product-image img{width:100%;height:100%;object-fit:cover;}
.nexora-modal-product-details{min-width:0;}
.nexora-modal-product-details .nexora-modal-product{margin:0 0 3px;line-height:1.35;overflow-wrap:anywhere;}
.nexora-modal-product-details .nexora-modal-price{margin:0;}
.nexora-modal-price{font-size:15px;margin-bottom:20px;}
.nexora-modal-price strong{color:var(--cyan);font-size:20px;}
.nexora-checkout-steps{display:flex;align-items:center;justify-content:center;gap:8px;margin-bottom:18px;}
.nexora-step-dot{
	width:26px;height:26px;border-radius:50%;background:var(--navy);border:1.5px solid rgba(255,255,255,0.15);
	display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:var(--text-muted);
}
.nexora-step-dot.active{background:var(--gradient);border-color:transparent;color:#fff;}
.nexora-step-line{width:40px;height:2px;background:rgba(255,255,255,0.15);}
.nexora-step-label{font-size:13px;font-weight:700;color:var(--cyan);margin-bottom:10px;}
.nexora-step-back{background:none;border:none;color:var(--text-muted);font-size:12px;cursor:pointer;padding:0;margin-bottom:10px;}
.nexora-step-back:hover{color:var(--cyan);}
.nexora-coupon-row{display:flex;gap:8px;margin-bottom:6px;}
.nexora-coupon-row input{flex:1;}
.nexora-coupon-row button{
	background:var(--navy);border:1px solid rgba(255,255,255,0.15);color:var(--text);
	padding:0 16px;border-radius:8px;cursor:pointer;font-weight:600;
}
.nexora-coupon-msg{font-size:13px;min-height:18px;}
.nexora-pay-steps{margin:12px 0 0;padding-left:20px;font-size:13px;color:var(--text-muted);}
.nexora-pay-steps li{margin-bottom:6px;}
.nexora-pay-steps strong{color:var(--text);}
.nexora-note{font-size:12px;color:var(--text-muted);}
#nexoraCheckoutForm{display:flex;flex-direction:column;gap:12px;}
#nexoraCheckoutForm input,#nexoraCheckoutForm select{
	background:var(--navy);border:1px solid rgba(255,255,255,0.15);color:var(--text);
	padding:12px 14px;border-radius:8px;font-size:14px;width:100%;
}
#nexoraCheckoutForm button[type=submit]{
	background:var(--gradient);color:#fff;border:none;padding:14px;border-radius:8px;
	font-weight:700;font-size:15px;cursor:pointer;margin-top:6px;
}
#nexoraCheckoutForm button[type=submit]:disabled{opacity:0.6;cursor:not-allowed;}
.nexora-form-msg{font-size:13px;text-align:center;min-height:18px;}

/* ===== MY ORDERS PAGE ===== */
.nexora-myorders-container{max-width:640px;}
.nexora-lookup-form{display:flex;gap:10px;margin-bottom:8px;}
.nexora-lookup-form input{
	flex:1;background:var(--navy-card);border:1px solid rgba(255,255,255,0.15);color:var(--text);
	padding:14px;border-radius:8px;font-size:15px;
}
.nexora-lookup-form button{
	background:var(--gradient);color:#fff;border:none;padding:0 24px;border-radius:8px;font-weight:700;cursor:pointer;
}
.nexora-order-item{
	background:var(--navy-card);border-radius:12px;padding:18px 20px;margin-top:14px;
	display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;
}
.nexora-order-item h4{margin:0 0 4px;font-size:15px;}
.nexora-order-status{padding:4px 12px;border-radius:20px;font-size:12px;font-weight:700;color:#fff;}
.nexora-status-pending{background:#d97706;}
.nexora-status-verified{background:#16a34a;}
.nexora-status-rejected{background:#dc2626;}

/* ===== ACCOUNT / LOGIN PAGE ===== */
.nexora-account-container{max-width:640px;}
.nexora-auth-wrap{max-width:460px;margin:0 auto;}
.nexora-license-row{margin:6px 0 0;font-size:13px;color:var(--text-muted);}
.nexora-license-row code{background:rgba(255,255,255,0.08);padding:2px 8px;border-radius:6px;color:var(--cyan);}
.nexora-login-form{display:flex;flex-direction:column;gap:12px;margin-top:8px;}
.nexora-login-form input[type=text],.nexora-login-form input[type=password],.nexora-login-form input[type=email]{
	background:var(--navy-card);border:1px solid rgba(255,255,255,0.15);color:var(--text);
	padding:14px;border-radius:8px;font-size:15px;width:100%;
}
.nexora-login-form input:-webkit-autofill{
	-webkit-text-fill-color:var(--text);
	transition:background-color 9999s ease-in-out 0s;
}
.nexora-login-form button{width:100%;}
.nexora-remember-row{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--text-muted);cursor:pointer;}
.nexora-form-msg-error{color:#f87171;text-align:left;margin:0 0 4px;}
.nexora-form-msg-success{color:#4ade80;text-align:left;margin:0 0 14px;background:rgba(74,222,128,0.08);border:1px solid rgba(74,222,128,0.25);border-radius:8px;padding:10px 14px;}
.nexora-account-links-row{margin-top:10px;font-size:14px;}
.nexora-account-links-row a{color:var(--cyan);}
.nexora-account-note{margin-top:18px;font-size:13px;}
.nexora-account-avatar-img{border-radius:50%;object-fit:cover;flex-shrink:0;}
.nexora-subtabs{display:flex;gap:10px;margin:24px 0 18px;border-bottom:1px solid rgba(255,255,255,0.1);}
.nexora-subtab{background:none;border:none;color:var(--text-muted);font-weight:700;font-size:15px;padding:10px 4px;cursor:pointer;border-bottom:2px solid transparent;}
.nexora-subtab.active{color:var(--text);border-bottom-color:var(--cyan);}
.nexora-subtab-panel{display:none;}
.nexora-subtab-panel.active{display:block;}
.nexora-profile-block{background:var(--navy-card);border:1px solid rgba(255,255,255,0.08);border-radius:12px;padding:20px;margin-bottom:16px;}
.nexora-profile-block h3{margin:0 0 14px;font-size:16px;}
.nexora-avatar-upload-row{display:flex;align-items:center;gap:16px;margin-bottom:16px;}
.nexora-avatar-clickable{position:relative;display:inline-block;cursor:pointer;flex-shrink:0;}
.nexora-avatar-edit-badge{position:absolute;bottom:-2px;right:-2px;background:var(--navy-card);border:2px solid var(--navy);width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;}
.nexora-avatar-choose-btn{display:inline-block;padding:9px 16px;font-size:13px;cursor:pointer;}
.nexora-file-input-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.nexora-avatar-hint{margin:6px 0 0;font-size:12px;color:var(--text-muted);}
.nexora-account-note a{color:var(--cyan);}
.nexora-account-card{
	background:var(--navy-card);border-radius:16px;padding:22px;display:flex;align-items:center;gap:16px;margin-bottom:20px;
}
.nexora-account-avatar{
	width:56px;height:56px;border-radius:50%;background:var(--gradient);color:#fff;font-weight:800;font-size:22px;
	display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.nexora-account-name{color:var(--text);font-weight:700;font-size:16px;margin:0 0 2px;}
.nexora-account-email{margin:0;font-size:14px;}
.nexora-account-links{display:flex;gap:12px;flex-wrap:wrap;}
.nexora-account-tabs{display:flex;gap:8px;margin-bottom:18px;background:var(--navy-card);padding:6px;border-radius:12px;}
.nexora-account-tab{
	flex:1;background:transparent;border:none;color:var(--text-muted);padding:12px;border-radius:8px;
	font-weight:700;font-size:15px;cursor:pointer;transition:background .2s,color .2s;
}
.nexora-account-tab.active{background:var(--gradient);color:#fff;}
.nexora-account-tab-panel{display:none;}
.nexora-account-tab-panel.active{display:block;}
.nexora-hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
	.nexora-category-grid,.nexora-why-grid{grid-template-columns:repeat(2,1fr);}
	.nexora-product-grid{grid-template-columns:repeat(2,1fr);}
	.nexora-steps-grid{grid-template-columns:1fr;}
	.nexora-single-grid{grid-template-columns:1fr;}
	.nexora-footer-grid{grid-template-columns:1fr;}
	.nexora-nav{
		display:none;position:absolute;top:100%;left:0;right:0;background:var(--navy-2);
		border-bottom:1px solid rgba(255,255,255,0.06);padding:10px 24px;
	}
	.nexora-nav.active{display:block;}
	.nexora-nav ul{flex-direction:column;gap:0;}
	.nexora-nav li{border-bottom:1px solid rgba(255,255,255,0.06);}
	.nexora-nav a{display:block;padding:14px 0;}
	.nexora-menu-toggle{display:block;}
	.nexora-hero h1{font-size:32px;}
}
/* ===== AI CHAT WIDGET ===== */
.nexora-chat-widget{position:fixed;bottom:24px;left:24px;z-index:998;}
.nexora-chat-toggle{
	width:58px;height:58px;border-radius:50%;background:var(--gradient);border:none;
	font-size:26px;cursor:pointer;box-shadow:0 8px 24px rgba(168,85,247,0.4);
}
.nexora-chat-teaser{
	position:absolute;bottom:70px;left:0;background:var(--navy-card);border:1px solid rgba(255,255,255,0.12);
	border-radius:14px;padding:12px 32px 12px 14px;width:210px;box-shadow:0 12px 30px rgba(0,0,0,0.45);
	animation:nexoraTeaserIn .4s ease;
}
.nexora-chat-teaser span{display:block;font-weight:700;font-size:14px;color:var(--text);}
.nexora-chat-teaser small{display:block;font-size:12px;color:var(--text-muted);margin-top:3px;}
.nexora-chat-teaser-close{
	position:absolute;top:6px;right:8px;background:none;border:none;color:var(--text-muted);
	font-size:16px;cursor:pointer;line-height:1;
}
.nexora-chat-widget.panel-open .nexora-chat-teaser{display:none;}
@keyframes nexoraTeaserIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}
.nexora-chat-panel{
	display:none;position:absolute;bottom:70px;left:0;width:330px;max-width:88vw;height:440px;
	background:var(--navy-card);border:1px solid rgba(255,255,255,0.1);border-radius:16px;
	flex-direction:column;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
.nexora-chat-panel.active{display:flex;}
.nexora-chat-header{
	background:var(--gradient);padding:14px 18px;display:flex;justify-content:space-between;align-items:center;
	font-weight:700;color:#fff;
}
.nexora-chat-title{display:block;font-size:15px;}
.nexora-chat-subtitle{display:block;font-size:11px;font-weight:500;opacity:0.85;margin-top:2px;}
.nexora-chat-header button{background:none;border:none;color:#fff;font-size:22px;cursor:pointer;}
.nexora-chat-messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:10px;}
.nexora-chat-msg{padding:10px 14px;border-radius:14px;font-size:13.5px;max-width:85%;line-height:1.4;}
.nexora-chat-bot{background:var(--navy);align-self:flex-start;border-bottom-left-radius:4px;}
.nexora-chat-user{background:var(--gradient);color:#fff;align-self:flex-end;border-bottom-right-radius:4px;}
.nexora-chat-typing{font-size:12px;color:var(--text-muted);align-self:flex-start;padding-left:4px;}
.nexora-chat-form{display:flex;border-top:1px solid rgba(255,255,255,0.08);padding:10px;gap:8px;}
.nexora-chat-form input{
	flex:1;background:var(--navy);border:1px solid rgba(255,255,255,0.12);color:var(--text);
	padding:10px 12px;border-radius:10px;font-size:13.5px;
}
.nexora-chat-form button{
	background:var(--gradient);border:none;color:#fff;width:40px;border-radius:10px;cursor:pointer;font-size:16px;
}
@media(max-width:520px){
	.nexora-chat-widget{bottom:16px;left:16px;}
	.nexora-chat-panel{width:92vw;height:60vh;}
}
@media(max-width:520px){
	.nexora-category-grid,.nexora-why-grid,.nexora-product-grid{grid-template-columns:1fr 1fr;}
	.nexora-hero{padding:60px 0 40px;}
}

@media(max-width:520px){
	.nexora-header-inner{position:relative;}
	.nexora-cart-dropdown{position:absolute;top:calc(100% + 10px);right:0;left:auto;width:320px;max-width:calc(100vw - 24px);max-height:70vh;}
	.nexora-cart-item{grid-template-columns:54px minmax(0,1fr) 28px;}
	.nexora-cart-item-image{width:54px;height:54px;}
	.nexora-pay-number{font-size:15px;}
	.nexora-payment-numbers{padding:12px;}
	.nexora-modal{padding:22px 16px;max-height:92vh;}
}

@media(max-width:520px){
	.nexora-header-inner{padding:12px 16px;min-height:72px;}
	.nexora-logo img{max-height:44px;}
	.nexora-header-right{gap:10px;}
	.nexora-cart-icon{font-size:0;}
	.nexora-cart-icon svg{width:30px;height:30px;}
	.nexora-cart-count{top:-5px;right:-7px;}
	.nexora-menu-toggle{font-size:30px;line-height:1;}
	.nexora-cart-item-btn{margin-top:2px;}
}
/* Keep the checkout modal reliably above the chat widget and browser UI. */
.nexora-modal-overlay{z-index:10050;}

/* Payment logo order: bKash is always first, Nagad second. */
.nexora-badge-row-bkash-first{flex-direction:row!important;direction:ltr!important;}
.nexora-badge-row-bkash-first .nexora-pay-badge-img:first-child{order:1!important;}
.nexora-badge-row-bkash-first .nexora-pay-badge-img:nth-child(2){order:2!important;}
.nexora-pay-logos{flex-direction:row!important;direction:ltr!important;}
.nexora-pay-logos .nexora-pay-logo-img:first-child{order:1!important;}
.nexora-pay-logos .nexora-pay-logo-img:nth-child(2){order:2!important;}
