*{
	font-family: 'Noto Sans TC', sans-serif;
	font-weight: 300;
}
html{
	background:white;
}
a{
	text-decoration: none;
	color:#444;
	
}
.topbar {
	width: 100%;
	background-color: #f7b500;
	text-align: center;
	font-weight: bold;
	padding: 10px 20px;
	z-index: 2000;
}
#app{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.app-block{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body {
	margin: 0;
	padding: 0;
	background-color: transparent;
}
.wrapper{
	min-height:100%;
	display:flex;
	flex-direction:column;
}
header{
	background-color:white;
	width:100%;
	position:sticky;
	z-index: 2000;
	top:0;
	box-shadow: 0px 1px 1px rgba(0,0,0,.2);
}
main{
	flex:1;
}
footer{
	background-color: #333;
	color:white;
}
footer a{
	color:white;
}
.header-container{
	max-width:1200px;
	margin:0 auto;
	padding:10px 20px;

}
.header-inner{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}
.header-search-bar-wrapper {
	display:none;
	flex: 1 0 auto;
	padding:0 20px;
}
.search-bar-content{
	position: relative;
	display: flex;
	height: 40px;
	align-items: center;
	border-radius: 3px;
	background: var(--secondary-background);
	color: var(--text-color);
	z-index: 1;
	border: 1px solid rgba(163, 175, 239, 0.3);
}
.search-bar-input{
	width:100%;
	height:100%;
	border: none;
	padding: 0 15px 1px;
}
.search-bar-input:focus{
	outline: none;
}
.search-bar-button{
	width:50px;
	height:100%;
	border: none;
	background:#1e2d7d;
}

.header-action-list{
	display: flex;
	align-items: center;
	margin-left: auto;
}
.header-cart-wrapper, .header-user-wrapper, .header-menu-wrapper{
	padding: 0 10px;
}
.user-text, .cart-text{
	display:none;
}
.header-menu-wrapper{
	display: inline;
	padding-right:0px;
}

.icon{
	width: 24px;
	height: 24px;
	color: white;
}
.logo{
	color:white;
	position: absolute;
	left:60px;
	top:20px;
	line-height:40px;
	background-image:url('/images/logo.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	
	width:367px;
	text-indent: -999999px;
}
.header-menu{
	display:none;
	padding:10px 0;
}
.header-menu-item{
	display:block;
}
.header-menu ul{
	padding: 0;
	margin:0;
}
.header-menu li{
	
}
.content {
	flex: 1;
}

.product-item{
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-in-out;
}
.product-item:hover{
	box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.product {
	display: flex;
	margin: 20px;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-in-out;
}

.product:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.product-image {
	flex: 1;
}

.product-image img {
	display: block;
	width: 100%;
	height: auto;
}

.product-info {
	flex: 2;
	margin-left: 20px;
}

.product-info h2 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.price {
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.product-description {
	line-height: 1.5;
}

.nav-link i{
	font-size:20px;
	vertical-align: middle;
}
.media-icon{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
	transition: all 0.3s ease-in-out;
}
.media-icon i{
	font-size: 20px;
	color: #fff;
}
.media-icon + .media-icon{
	margin-left: 10px;
}
.whatsapp-icon {
	background-color: #25d366;
}

.whatsapp-icon:hover {
	transform: scale(1.1);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
}
.facebook-icon {
	background-color: #3b5998;
}

.facebook-icon:hover {
	transform: scale(1.1);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
}
[v-cloak] {
	display: none;
}
.cart-list{
	
}
.cart-item{
	display: flex;
}

@media (min-width: 768px) {
	.header-search-bar-wrapper {
		display:block;
	}
	.header-user-wrapper, .header-cart-wrapper, .header-menu-wrapper{
		padding: 0 20px;
	}
	.user-text, .cart-text{
		display:inline;
	}
	.header-menu-wrapper{
		display:none;
		
	}
	.header-menu{
		display:block;
	}
	.header-menu ul{

	}
	.header-menu .header-menu-item{
		display:inline;
		margin-right: 40px;
	}
	
}

@media (min-width: 992px) {
	.container {
		width:970px
	}
}

@media (min-width: 1200px) {
	.container {
		width:1170px
	}
}
:root {
	--primary: Aquamarine;
	--background-color: Teal;
}