.tubuy-header {
	background: linear-gradient(180deg, #07121d 0%, #0b1724 100%);
	padding: 18px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tubuy-header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.tubuy-logo a {
	color: #ffffff;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.tubuy-header-search {
	flex: 1;
	max-width: 650px;
}

.tubuy-header-search form {
	position: relative;
}

.tubuy-header-search input {
	width: 100%;
	height: 52px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 0 60px 0 20px;
	color: #ffffff;
	font-size: 15px;
	outline: none;
	backdrop-filter: blur(10px);
}

.tubuy-header-search input::placeholder {
	color: rgba(255,255,255,0.55);
}

.tubuy-header-search button {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 10px;
	background: #2563eb;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.tubuy-header-search button svg {
	width: 18px;
	height: 18px;
}

.tubuy-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tubuy-action-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: 0.3s ease;
}

.tubuy-action-icon:hover {
	background: #2563eb;
	transform: translateY(-2px);
}

.tubuy-action-icon svg {
	width: 22px;
	height: 22px;
}
.tubuy-mobile-header {
	display: none;
}

@media (max-width: 768px) {

	.tubuy-header {
		display: none;
	}

	.tubuy-mobile-header {
		display: block;
		background: linear-gradient(180deg, #07121d 0%, #0b1724 100%);
		padding: 14px 0;
		border-bottom: 1px solid rgba(255,255,255,0.05);
	}

	.tubuy-mobile-header-wrapper {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.tubuy-mobile-logo a {
		color: #ffffff;
		font-size: 22px;
		font-weight: 700;
	}

	.tubuy-mobile-search {
		flex: 1;
	}

	.tubuy-mobile-search form {
		position: relative;
	}

	.tubuy-mobile-search input {
		width: 100%;
		height: 44px;
		background: rgba(255,255,255,0.06);
		border: 1px solid rgba(255,255,255,0.08);
		border-radius: 12px;
		padding: 0 50px 0 16px;
		color: #ffffff;
		font-size: 14px;
		outline: none;
	}

	.tubuy-mobile-search button {
		position: absolute;
		top: 50%;
		right: 6px;
		transform: translateY(-50%);
		width: 34px;
		height: 34px;
		border: none;
		border-radius: 10px;
		background: #2563eb;
		color: #ffffff;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.tubuy-mobile-search button svg {
		width: 16px;
		height: 16px;
	}

	.tubuy-mobile-menu-button {
		width: 46px;
		height: 46px;
		border: none;
		border-radius: 12px;
		background: rgba(255,255,255,0.06);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
	}

	.tubuy-mobile-menu-button span {
		width: 18px;
		height: 2px;
		background: #ffffff;
		border-radius: 20px;
	}

}
.tubuy-mobile-bottom-bar {
	position: fixed;
	left: 15px;
	right: 15px;
	bottom: 15px;
	background: #ffffff;
	border-radius: 20px;
	padding: 10px 5px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.12);
	z-index: 999;
	display: none;
}

.tubuy-mobile-bottom-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tubuy-mobile-bottom-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: #07121d;
	font-size: 11px;
	font-weight: 500;
}

.tubuy-mobile-bottom-item svg {
	width: 22px;
	height: 22px;
}

@media (max-width: 768px) {

	.tubuy-mobile-bottom-bar {
		display: block;
	}

}