/*
Theme Name: Neil Child
Description: Child theme for Neil Theme (based on Flatsome)
Author: UX Themes
Template: neil-theme
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* =========================================
   Profile Tactical (trang cửa hàng)
   ========================================= */
.shop-profile-tactical-wrapper {
	--radius: 12px;
	--shadow: 0 2px 8px rgba(0,0,0,0.06);
	--border: #e5e7eb;
	--text-main: #1f2937;
	--text-sub: #6b7280;
}

.profile-tactical {
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	position: relative;
	border: 1px solid var(--border);
}

.pt-cover {
	width: 100%;
	height: 180px;
	background-color: #333;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.pt-body {
	position: relative;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: -60px;
}

.pt-avatar-box {
	position: relative;
	margin-bottom: 15px;
	z-index: 5;
}

.pt-avatar {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	background: #fff;
	object-fit: cover;
}

.pt-info {
	flex: 1;
	z-index: 5;
	padding-top: 5px;
}

.pt-name {
	font-size: 22px;
	font-weight: 800;
	color: var(--text-main);
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.pt-rank-badge {
	color: #007bff;
	font-size: 18px;
}

.pt-bio {
	color: var(--text-sub);
	font-size: 14px;
	margin-bottom: 15px;
}

.pt-bio p {
	margin-bottom: 4px;
}

.pt-bio .text-secondary {
	color: #6b7280 !important;
}

.pt-bio .text-danger {
	color: #dc2626 !important;
}

.pt-bio .fw-bold {
	font-weight: 700 !important;
}

.pt-bio .mb-1 {
	margin-bottom: 0.25rem !important;
}

.pt-bio .mb-0 {
	margin-bottom: 0 !important;
}

.pt-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-tactical {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none !important;
	transition: all 0.2s;
	border: none;
	text-transform: uppercase;
	min-width: 130px;
}

.btn-tactical:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-zalo-tac {
	background: #0088FF;
	color: #fff;
}

.btn-zalo-tac:hover {
	color: #fff;
	opacity: 0.95;
}

.btn-fb-tac {
	background: #0088FF;
	color: #fff;
}

.btn-fb-tac:hover {
	color: #fff;
	opacity: 0.95;
}

@media (min-width: 768px) {
	.pt-cover {
		height: 260px;
	}
	.pt-body {
		flex-direction: row;
		align-items: flex-end;
		text-align: left;
		padding: 20px 30px 30px 30px;
		margin-top: 0;
		gap: 25px;
	}
	.pt-avatar-box {
		margin-bottom: 0;
		margin-top: -80px;
	}
	.pt-avatar {
		width: 160px;
		height: 160px;
		border: 5px solid #fff;
	}
	.pt-name,
	.pt-actions {
		justify-content: flex-start;
	}
	.pt-info {
		padding-top: 0;
	}
}

/* Tiêu đề trước danh sách sản phẩm */
.shop-products-intro {
	margin-bottom: 1.2rem;
}
.shop-products-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	color: #1f2937;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.shop-products-title i {
	font-size: 1.35rem;
}

/* Main menu dạng nút dưới tiêu đề Danh Sách Acc */
.shop-main-menu {
	margin-top: 0.35rem;
}

.shop-main-menu .nav-main {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-start;
}

.shop-main-menu .nav-main > li {
	margin: 0;
}

.shop-main-menu .nav-main > li > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #374151;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: all 0.15s ease;
	border: 1px solid transparent;
}

.shop-main-menu .nav-main > li.current-menu-item > a,
.shop-main-menu .nav-main > li.current-menu-ancestor > a {
	background: #2563eb;
	color: #ffffff;
	border-color: #1d4ed8;
}

.shop-main-menu .nav-main > li > a:hover {
	background: #e5e7eb;
	color: #111827;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

@media (max-width: 768px) {
	.shop-main-menu .nav-main {
		gap: 0.35rem;
	}

	.shop-main-menu .nav-main > li > a {
		padding: 5px 12px;
		font-size: 11px;
	}
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}