/* =================================
   BASE STYLES
   ================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
		"Helvetica Neue", Arial, sans-serif;
	background: #f8f9fa;
	color: #1a1a1a;
	line-height: 1.5;
}

/* =================================
   BREADCRUMB
   ================================= */
.breadcrumb {
	background: #fff;
	padding: 12px 20px;
	font-size: 13px;
	color: #6b7280;
	border-bottom: 1px solid #e5e7eb;
}

.breadcrumb a {
	color: #6b7280;
	text-decoration: none;
	margin-right: 5px;
	transition: color 0.2s;
}

.breadcrumb a:hover {
	color: #1a1a1a;
}

/* =================================
   HEADER SECTION
   ================================= */
.header-section {
	background: #fff;
	padding: 30px 20px 20px;
	max-width: 1200px;
	margin: 0 auto;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	gap: 20px;
}

.shop-info h1 {
	font-size: 32px;
	margin-bottom: 8px;
	font-weight: 600;
	color: #1a1a1a;
}

.shop-tags {
	color: #6b7280;
	font-size: 14px;
	margin-bottom: 8px;
}

.shop-location {
	color: #6b7280;
	font-size: 14px;
	margin-bottom: 12px;
}

.shop-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 14px;
	color: #374151;
}

/* Status Badge */
.status-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
	gap: 6px;
	font-weight: 500;
	background: #f9fafb;
}

.status-badge.online {
	color: #059669;
	border-color: #d1fae5;
	background: #ecfdf5;
}

.status-badge.offline {
	color: #dc2626;
	border-color: #fecaca;
	background: #fef2f2;
}

/* Ratings Box */
.ratings-box {
	display: flex;
	gap: 15px;
}

.rating-card {
	text-align: center;
	min-width: 80px;
}

.rating-score {
	background: #22c55e;
	color: white;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.rating-label {
	font-size: 12px;
	color: #6b7280;
	margin-top: 4px;
}

.rating-count {
	font-weight: 600;
	display: block;
}

/* Contact Info */
.phone-number {
	color: #000080;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: opacity 0.2s;
}

.phone-number:hover {
	opacity: 0.8;
}

.eta-box {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background: #f3f4f6;
	border-radius: 6px;
	font-size: 14px;
	color: #374151;
	font-weight: 500;
}

/* =================================
   ACTION BUTTONS
   ================================= */
.action-buttons {
	display: flex;
	gap: 10px;
	margin: 20px 0;
	flex-wrap: wrap;
}

.btn {
	padding: 12px 20px;
	border: 1px solid #e5e7eb;
	background: white;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn:hover {
	background: #f9fafb;
	border-color: #d1d5db;
	transform: translateY(-1px);
}

.btn-primary {
	background: #000080;
	color: white;
	border-color: #000080;
}

.btn-primary:hover {
	background: #c92a36;
	border-color: #c92a36;
}

/* =================================
   GALLERY SECTION
   ================================= */
.gallery-section {
	background: white;
	padding: 0 20px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 200px 200px;
	gap: 12px;
	height: 412px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #f3f4f6;
}

.gallery-item:first-child {
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.view-gallery {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(0, 0, 0, 0.75);
	color: white;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
}

.view-gallery:hover {
	background: rgba(0, 0, 0, 0.85);
}

/* =================================
   NAVIGATION TABS
   ================================= */
.nav-tabs {
	background: white;
	padding: 0 20px;
	max-width: 100%;
	margin: 10px auto;
	border-bottom: 1px solid #e5e7eb;
	position: sticky;
	top: 72px;
	z-index: 100;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-tabs-list {
	display: flex;
	gap: 40px;
	list-style: none;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

.nav-tab {
	padding: 16px 0;
	color: #6b7280;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.nav-tab:hover {
	color: #374151;
}

.nav-tab.active {
	color: #000080;
	border-bottom-color: #000080;
}

/* =================================
   TAB CONTENT
   ================================= */
.tab-content {
	display: none;
	min-height: 500px;
	padding: 20px;
}

.tab-content.active {
	display: block;
}

.content-section {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 20px;
	padding: 0;
}

/* =================================
   MENU SIDEBAR
   ================================= */
.menu-sidebar {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	height: fit-content;
	position: sticky;
	top: 80px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.menu-category {
	padding: 12px 16px;
	cursor: pointer;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 6px;
	transition: all 0.2s ease;
	color: #374151;
}

.menu-category:hover {
	background: #f9fafb;
}

.menu-category.active {
	background: #fff5f5;
	color: #000080;
	font-weight: 600;
}

.menu-category-count {
	float: right;
	color: #9ca3af;
	font-size: 13px;
}

/* =================================
   MENU CONTENT
   ================================= */
.menu-content {
	background: white;
	border-radius: 12px;
	padding: 30px 40px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	width: 1200px;
	justify-self: center;
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.menu-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #1a1a1a;
}

.menu-meta {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 14px;
	color: #6b7280;
}

.search-box {
	width: 100%;
	padding: 14px 45px 14px 18px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	font-size: 15px;
	margin-bottom: 30px;
	background: #f9fafb
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>')
		no-repeat right 16px center;
	background-size: 20px;
	transition: all 0.2s ease;
}

.search-box:focus {
	outline: none;
	border-color: #000080;
	background-color: white;
}

/* Menu Sections */
.menu-section {
	margin-bottom: 40px;
}

.menu-section-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e7eb;
	color: #1a1a1a;
}

/* Menu Items */
.menu-item {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid #f3f4f6;
	transition: background 0.2s ease;
}

.menu-item:last-child {
	border-bottom: none;
}

.menu-item:hover {
	background: #fafafa;
	margin: 0 -20px;
	padding: 20px;
	border-radius: 8px;
}

.menu-item-info {
	flex: 1;
}

.menu-item-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #1a1a1a;
}

.menu-item-description {
	color: #6b7280;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.menu-item-price {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	margin-top: 4px;
}

.read-more {
	color: #000080;
	cursor: pointer;
	font-weight: 500;
}

.read-more:hover {
	text-decoration: underline;
}

/* Veg/Non-Veg Indicators */
.veg-indicator,
.non-veg-indicator {
	width: 18px;
	height: 18px;
	border: 2px solid;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.veg-indicator {
	border-color: #0f8a3e;
}

.non-veg-indicator {
	border-color: #000080;
}

.veg-indicator::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0f8a3e;
}

.non-veg-indicator::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 7px solid #000080;
}

/* =================================
   REVIEWS SECTION
   ================================= */
.reviews-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.review-card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s ease;
}

.review-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.review-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.reviewer-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 16px;
	flex-shrink: 0;
}

.reviewer-details {
	display: flex;
	flex-direction: column;
}

.reviewer-name {
	font-weight: 600;
	font-size: 16px;
	color: #1a1a1a;
	margin-bottom: 2px;
}

.reviewer-meta {
	font-size: 13px;
	color: #6b7280;
}

.review-rating-badge {
	background: #22c55e;
	color: white;
	padding: 6px 12px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 12px;
}

.review-category {
	display: inline-block;
	background: #f3f4f6;
	padding: 4px 12px;
	border-radius: 6px;
	font-size: 13px;
	color: #374151;
	font-weight: 500;
	margin-bottom: 12px;
}

.review-text {
	font-size: 15px;
	line-height: 1.6;
	color: #374151;
	margin-bottom: 12px;
}

.review-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
}

.review-action-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: #6b7280;
	font-size: 14px;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 6px;
	transition: all 0.2s ease;
	font-family: inherit;
}

.review-action-btn:hover {
	background: #f3f4f6;
	color: #374151;
}

.review-action-btn svg {
	width: 18px;
	height: 18px;
}

.follow-btn {
	padding: 8px 18px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.follow-btn:hover {
	background: #f9fafb;
	border-color: #d1d5db;
}

.review-date {
	color: #9ca3af;
	font-size: 13px;
	margin-bottom: 12px;
}

/* =================================
   PHOTOS SECTION
   ================================= */
.photos-section {
	padding: 0;
	background: transparent;
	max-width: 1200px;
	margin: 0 auto;
}

.photo-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 16px;
}

.photo-item {
	aspect-ratio: 1;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d1d5db;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.2s ease;
}

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

.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =================================
   CONTACT SECTION
   ================================= */
.contact-section {
	padding: 0;
	background: transparent;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-info {
	max-width: 800px;
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid #f3f4f6;
}

.contact-item:last-child {
	border-bottom: none;
}

.contact-icon {
	color: #000080;
	flex-shrink: 0;
}

.contact-label {
	font-weight: 600;
	margin-bottom: 4px;
	color: #1a1a1a;
	font-size: 14px;
}

.contact-value {
	color: #6b7280;
	font-size: 15px;
	line-height: 1.6;
}

/* =================================
   UTILITY CLASSES
   ================================= */
.hidden,
.page-path {
	display: none !important;
}

/* =================================
   RESPONSIVE STYLES
   ================================= */
@media (max-width: 1024px) {
	.header-section,
	.gallery-section {
		padding-left: 15px;
		padding-right: 15px;
	}

	.menu-content {
		padding: 25px 30px;
	}
}

@media (max-width: 768px) {
	.content-section {
		grid-template-columns: 1fr;
		padding: 20px 15px;
	}

	.menu-sidebar {
		position: static;
		display: flex;
		overflow-x: auto;
		gap: 8px;
		padding: 12px;
		border-radius: 8px;
		-webkit-overflow-scrolling: touch;
	}

	.menu-category {
		white-space: nowrap;
		flex-shrink: 0;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 150px 150px 150px;
		height: auto;
	}

	.gallery-item:first-child {
		grid-column: span 2;
	}

	.header-content {
		flex-direction: column;
		gap: 16px;
	}

	.shop-info h1 {
		font-size: 24px;
	}

	.ratings-box {
		align-self: flex-start;
	}

	.menu-content {
		padding: 20px;
		border-radius: 8px;
	}

	.nav-tabs-list {
		gap: 20px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		justify-content: flex-start;
	}

	.nav-tab {
		padding: 14px 0;
		font-size: 14px;
	}

	.action-buttons {
		width: 100%;
	}

	.btn {
		flex: 1;
		justify-content: center;
		min-width: 0;
	}

	.review-card {
		padding: 20px;
	}

	.reviewer-info {
		flex: 1;
	}

	.follow-btn {
		padding: 6px 14px;
		font-size: 13px;
	}

	.photo-gallery {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 12px;
	}

	.contact-info {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.shop-info h1 {
		font-size: 20px;
	}

	.menu-title {
		font-size: 22px;
	}

	.action-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.review-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.follow-btn {
		align-self: flex-start;
	}

	.review-actions {
		flex-wrap: wrap;
		gap: 12px;
	}
}
