:root {
	--primary-color: #4a90e2;
	--secondary-color: #f8f9fa;
	--text-color: #2d3436;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }
 
 * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
 }
 
 body {
	font-family: Arial, sans-serif;
	background: #f5f5f5;
 }
 
 nav {
	background: linear-gradient(135deg, var(--primary-color), #5c6bc0);
	padding: 1.2rem;
	box-shadow: var(--shadow);
 }
 
 .nav-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 1rem;
	padding: 0 1rem;
 }
 
 .nav-right {
	display: flex;
	align-items: center;
	gap: 2rem;
 }
 
 .nav-menu {
	display: flex;
	gap: 1.5rem;
	align-items: center;
 }
 
 .nav-link {
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	transition: all 0.3s ease;
 }
 
 .nav-link:hover {
	transform: translateY(-2px);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
 }
 
 .nav-right .add-listing-link {
	color: white;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	transition: all 0.3s ease;
 }
 
 .nav-right .add-listing-link:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
 }
 
 .add-listing-link {
	color: white;
	text-decoration: none;
	font-weight: 600;
	padding: 0.8rem 1.2rem;
	border-radius: 20px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	justify-content: center;
	white-space: nowrap;
 }
 
 .add-listing-link:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
 }
 
 .logo {
	color: white;
	text-decoration: none;
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(45deg, #fff, #e3f2fd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.5s ease;
	position: relative;
 }
 
 .logo:hover {
	transform: scale(1.05);
	background: linear-gradient(45deg, #e3f2fd, #fff);
	-webkit-background-clip: text;
 }
 
 .logo::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transition: width 0.3s ease;
 }
 
 .logo:hover::after {
	width: 100%;
 }
 
 .menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 101;
 }
 
 .menu-toggle span {
	width: 25px;
	height: 3px;
	background: white;
	transition: all 0.3s ease;
 }
 
 .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
 }
 
 .menu-toggle.active span:nth-child(2) {
	opacity: 0;
 }
 
 .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
 }
 
 main {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 1rem;
 }
 
 .filters {
	background: white;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: var(--shadow);
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
	margin: 2rem auto;
	max-width: 600px;
 }
 
 .filter-btn {
	padding: 0.8rem 1.5rem;
	border: 2px solid var(--primary-color);
	border-radius: 25px;
	background: transparent;
	color: var(--primary-color);
	font-weight: 600;
	transition: all 0.3s ease;
 }
 
 .filter-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
 }
 
 .filter-btn.active {
	background: var(--primary-color);
	color: white;
 }
 
 .search-container {
	display: flex;
	gap: 1rem;
	max-width: 1200px;
	margin: 2rem auto;
	align-items: flex-start;
 }
 
 .filter-wrapper {
	width: 250px;
 }
 
 .filter-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--primary-color);
	border-radius: 10px;
	background: white;
	font-size: 1rem;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
 }
 
 .search-box {
	flex: 1;
	display: flex;
	gap: 1rem;
 }
 
 .search-box input {
	flex: 1;
	padding: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	font-size: 1rem;
	transition: all 0.3s ease;
 }
 
 .search-box input:focus {
	border-color: var(--primary-color);
	outline: none;
 }
 
 .search-box button {
	padding: 1rem 2rem;
	background: var(--primary-color);
	color: white;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
 }
 
 .search-box button:hover {
	background: #357abd;
	transform: translateY(-2px);
 }
 
 .add-listing {
	text-align: center;
	margin: 2rem 0;
 }
 
 .results {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
 }
 
 .card {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
 }
 
 .card h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-color);
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 0.5rem;
 }
 
 .card h3 i {
	color: var(--primary-color);
	font-size: 1.2rem;
 }
 
 .card-subtitle {
	color: #666;
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 500;
	text-transform: uppercase;
 }
 
 .card .description {
	color: #636e72;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed #e0e0e0;
 }
 
 
 
 .card .facebook {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #1877f2;
	text-decoration: none;
	margin-bottom: 1rem;
 }
 
 .card .address, .card .phone {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.8rem;
	color: #2d3436;
 }
 
 .card .address {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px dashed #e0e0e0;
 }
 
 .section-title {
	width: 100%;
	color: var(--primary-color);
	font-size: 1.8rem;
	margin-bottom: 2rem;
	text-align: center;
	grid-column: 1 / -1;
 }
 
 .no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 10px;
	color: #666;
	font-size: 1.2rem;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
 }
 
 .no-results i {
	color: var(--primary-color);
	font-size: 1.5rem;
 }
 
 .modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
 }
 
 .modal-content {
	background: white;
	margin: 15% auto;
	padding: 2rem;
	width: 90%;
	max-width: 500px;
	border-radius: 10px;
	position: relative;
 }
 
 .close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	font-size: 1.5rem;
	cursor: pointer;
 }
 
 .form-group {
	margin-bottom: 1rem;
 }
 
 .form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-color);
 }
 
 .form-group input {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
 }
 
 .form-group select {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
	cursor: pointer;
 }
 
 .modal button {
	width: 100%;
	padding: 1rem;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
 }
 
 .mobile-only {
	display: none;
 }
 
 .hidden {
	display: none !important;
 }
 
 .shopping-section {
	padding: 2rem;
	background: white;
	margin-top: 2rem;
	border-radius: 10px;
	box-shadow: var(--shadow);
 }
 
 .list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
 }
 
 .list-controls {
	display: flex;
	gap: 1rem;
 }
 
 .date-filter {
	padding: 0.5rem;
	border-radius: 5px;
	border: 1px solid #ddd;
 }
 
 .btn-add {
	padding: 0.5rem 1rem;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
 }
 
 .table-responsive {
	overflow-x: auto;
 }
 
 .shopping-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
 }
 
 .shopping-table th,
 .shopping-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #ddd;
 }
 
 .shopping-table th {
	background: #f8f9fa;
 }
 
 .action-btn {
	padding: 0.5rem;
	border: none;
	background: none;
	cursor: pointer;
	color: var(--primary-color);
 }
 
 .main-footer {
	background: linear-gradient(135deg, var(--primary-color), #5c6bc0);
	padding: 2rem 0;
	color: white;
	margin-top: 3rem;
 }
 
 .footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1rem;
	gap: 2rem;
 }
 
 .footer-left .logo {
	font-size: 1.5rem;
 }
 
 .footer-center .footer-link {
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
 }
 
 .footer-right {
	font-size: 0.9rem;
	opacity: 0.8;
 }
 
 @media (max-width: 768px) {
	.nav-content {
	    padding: 0.5rem 1rem;
	}
 
	.menu-toggle {
	    display: flex;
	}
 
	.add-listing-link {
	    display: none;
	}
 
	.filters {
	    margin: 1rem;
	    padding: 0.8rem;
	    flex-direction: column;
	}
 
	.filter-btn {
	    width: 100%;
	    margin-bottom: 0.5rem;
	}
 
	.search-container {
	    flex-direction: column;
	    padding: 0 1rem;
	}
 
	.search-box {
	    flex-direction: row;
	    margin: 1rem 0;
	}
 
	.search-box input {
	    flex: 1;
	    border-radius: 25px 0 0 25px;
	}
 
	.search-box button {
	    width: auto;
	    border-radius: 0 25px 25px 0;
	    padding: 1rem;
	}
 
	.filter-wrapper {
	    width: 100%;
	}
 
	.search-box {
	    margin: 1rem;
	}
 
	.results {
	    grid-template-columns: 1fr;
	    padding: 1rem;
	}
 
	.nav-right {
	    display: none;
	    position: fixed;
	    top: 60px;
	    left: 0;
	    right: 0;
	    background: linear-gradient(135deg, var(--primary-color), #5c6bc0);
	    padding: 1rem;
	    flex-direction: column;
	    align-items: stretch;
	    transform: translateY(-100%);
	    transition: all 0.3s ease;
	    opacity: 0;
	    z-index: 100;
	    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	}
 
	.nav-right.active {
	    display: flex;
	    transform: translateY(0);
	    opacity: 1;
	}
 
	.nav-menu {
	    flex-direction: column;
	    gap: 1rem;
	}
 
	.nav-link {
	    padding: 1rem;
	    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	    border-radius: 8px;
	    background: rgba(255, 255, 255, 0.1);
	}
 
	.nav-link i {
	    font-size: 1.2rem;
	}
 
	.nav-right .add-listing-link {
	    display: none;
	}
 
	.nav-right.active .add-listing-link {
	    display: flex;
	    width: 100%;
	    margin: 0.5rem 0;
	    background: rgba(255, 255, 255, 0.1);
	    border-radius: 8px;
	}
 
	.nav-right .add-listing-link.mobile-only {
	    display: block;
	    margin: 1rem 0;
	    width: 100%;
	    text-align: center;
	}
 
	.mobile-only {
	    display: block;
	}
 
	.list-header {
	    flex-direction: column;
	    gap: 1rem;
	}
 
	.list-controls {
	    flex-direction: column;
	    width: 100%;
	}
 
	.btn-add {
	    width: 100%;
	    justify-content: center;
	}
 
	.shopping-table {
	    font-size: 0.9rem;
	}
 
	.footer-content {
	    flex-direction: column;
	    text-align: center;
	    gap: 1rem;
	}
 
	.footer-center .footer-link {
	    width: 100%;
	    justify-content: center;
	    margin: 1rem 0;
	}
 }
 