		body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px;
            text-align: center;
        }
        .container {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .store-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
			
        }
        .store-item {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: calc(33.333% - 20px);
            box-sizing: border-box;
            text-align: center;
			width:100%;
        }
        .store-item img {
            max-width: 100%;
            border-radius: 10px;
        }
        .store-item h2 {
            font-size: 20px;
            margin: 10px 0;
        }
        .store-item p {
            font-size: 16px;
            color: #666;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            position: relative;
            bottom: 0;
            width: 100%;
        }
		.navlinks {
			text-decoration:none;
			color:#FFFFFF;
		}
		.navlinks:hover {
			text-decoration:underline;
			color:#FFFFFF;
		}
		.vendor-url {
			border:0px solid #FFFFFF;
		}
		 .product-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .product-item {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: calc(33.333% - 20px);
            box-sizing: border-box;
            text-align: center;
			width: 100%;
        }
		.page-title {
			padding-bottom:20px;
			text-align:center;
		}
		.product-item .product-title {
			padding-top:15px;
		}
        .product-item img {
            max-width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }
        .product-item h2 {
            font-size: 20px;
            margin: 10px 0;
            cursor: pointer;
            color: #3498db;
        }
        .product-item p {
            font-size: 16px;
            color: #666;
        }
        .product-item .price {
            font-size: 18px;
            color: #e74c3c;
            margin: 10px 0;
        }
        .add-to-cart {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        .add-to-cart:hover {
            background-color: #34495e;
        }
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            border-radius: 10px;
            width: 80%;
            max-width: 600px;
        }
        .popup img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .popup h2 {
            margin-top: 10px;
            font-size: 14px;
        }
        .popup p {
            font-size: 12px;
            margin: 10px 0;
        }
        .close-btn {
            background-color: #e74c3c;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        .close-btn:hover {
            background-color: #c0392b;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 999;
        }
		.admin .card-header {
			background-color: #2c3e50;
			border-radius: 0 !important;
			color: #FFFFFF;
		}
		.form-control {
			border-radius: 0 !important;
		}
		.form-control:focus {
			outline: 0 !important;
			box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25) !important;
		}
		.btn-primary {
			background-color: #2c3e50;
			color:#FFFFFF;
			border-radius:0px !important;
			box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25) !important;
		}
		.btn-primary:hover {
			background-color: #FFFFFF !important;
			color:#2c3e50 !important;
			border:1px solid #2c3e50 !important
		}
		.forgot-pass {
			color:#2c3e50 !important;
		}
		.forgot-pass:hover {
			color:#000000 !important;
		}

		h2, h3 {
            color: #2c3e50;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        table, th, td {
            border: 1px solid #ccc;
        }
        th, td {
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #2c3e50;
            color: white;
        }
        .total {
            font-weight: bold;
            font-size: 1.2em;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        label {
            font-size: 16px;
            color: #2c3e50;
        }
        input[type="text"], input[type="email"], input[type="tel"], .stripe-element {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 100%;
            box-sizing: border-box;
        }
        button {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        button:hover {
            background-color: #34495e;
        }
		.alert{
			margin-top:15px;
			padding: 5px 10px !important;
			font-size: 14px;
			border-radius: 0 !important;
		}