:root {
	--primary-color: #f37b1d;
	--secondary-color: #FF8F8F;
	--background-color: #F5F5F5;
	--text-color: #333;
	--light-text: #999;
	--border-color: #EEE;
	--card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.shop-header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	padding: 15px;
	position: relative;
	border-radius: 0 0 15px 15px;
	box-shadow: var(--card-shadow);
	margin-bottom: 15px;
}

.shop-name {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.shop-rating {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.shop-location {
	font-size: 14px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.shop-location i {
	margin-right: 5px;
}

.shop-contact {
	font-size: 14px;
	margin-bottom: 10px;
}

.shop-description {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 10px;
}

.nav-tabs {
	background: white;
	border-radius: 10px;
	margin: 10px;
	box-shadow: var(--card-shadow);
}

.nav-tabs .nav-link {
	color: var(--text-color);
	font-weight: 500;
}

.nav-tabs .nav-link.active  {
	color: var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
}

.product-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	box-shadow: var(--card-shadow);
	transition: transform 0.2s;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.product-info {
	padding: 10px;
}

.product-price {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 16px;
}

.product-title {
	font-size: 14px;
	margin: 5px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-shop {
	font-size: 12px;
	color: var(--light-text);
}

.gallery-container {
	position: relative;
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--card-shadow);
}

.main-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.thumbnail-container {
	display: flex;
	padding: 10px;
	background: white;
	overflow-x: auto;
}

.thumbnail {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 5px;
	margin-right: 10px;
	border: 2px solid transparent;
	cursor: pointer;
}

.thumbnail.active  {
	border-color: var(--primary-color);
}

.action-button {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 20px;
	padding: 5px 15px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.action-button i {
	margin-right: 5px;
}

.bottom-navbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	display: flex;
	justify-content: space-around;
	padding: 10px 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--text-color);
	text-decoration: none;
	font-size: 12px;
}

.nav-item.active  {
	color: var(--primary-color);
}

.nav-icon {
	font-size: 20px;
	margin-bottom: 3px;
}

.section-title {
	font-size: 18px;
	font-weight: bold;
	margin: 15px 10px;
	color: var(--text-color);
}

.shop-status {
	background: rgba(255, 255, 255, 0.2);
	padding: 3px 8px;
	border-radius: 10px;
	font-size: 12px;
	margin-left: 10px;
}