		.product_cards {
			padding: 2rem;
		}

		.prdt_crdt {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 1rem;
		}

		.crdsprd {
			background: #fff;
			border-radius: 12px;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			padding: 1rem;
			transition: 0.3s ease;
			display: flex;
			flex-direction: column;
		}

		.crdsimg img {
			width: 100%;
			height: 200px;
			object-fit: cover;
			border-radius: 10px;
		}

		.crdshed {
			font-size: 1.2rem;
			margin: 0.5rem 0;
			font-weight: bold;
		}

		.crdstxt {
			font-size: 0.9rem;
			color: #555;
			flex-grow: 1;
		}

		.prdsbtn {
			display: flex;
			justify-content: space-between;
			gap: 0.5rem;
			margin-top: 1rem;
		}

		.prdsbtn button {
			flex: 1;
			padding: 8px;
			border: none;
			border-radius: 8px;
			cursor: pointer;
			background: #007bff;
			color: #fff;
			transition: background 0.3s;
		}

		.prdsbtn button:hover {
			background: #0056b3;
		}

		.cart-btn {
			position: fixed;
			bottom: 20px;
			right: 20px;
			background: #007bff;
			color: white;
			border: none;
			border-radius: 50%;
			width: 50px;
			height: 50px;
			font-size: 24px;
			cursor: pointer;
			z-index: 1000;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		}

		.cart-popup {
			display: none;
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background: white;
			border-radius: 10px;
			box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
			padding: 20px;
			z-index: 1001;
			width: 90%;
			max-width: 400px;
		}

		.cart-popup.show {
			display: block;
		}

		.cart-popup-content h2 {
			margin-top: 0;
		}

		.cart-popup-content ul {
			list-style: none;
			padding: 0;
		}

		.cart-popup-content li {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin: 10px 0;
			font-size: 0.9rem;
		}

		.close-btn {
			position: absolute;
			top: 10px;
			right: 15px;
			font-size: 20px;
			cursor: pointer;
		}

		.send-quote-options {
			margin-top: 1rem;
			display: flex;
			gap: 1rem;
			justify-content: center;
		}

		.send-quote-options button {
			padding: 8px 15px;
			border-radius: 20px;
			border: none;
			cursor: pointer;
			background: #28a745;
			color: white;
			transition: 0.3s ease;
		}

		.send-quote-options button:hover {
			background: #218838;
		}

		.toast {
			position: fixed;
			bottom: 80px;
			left: 50%;
			transform: translateX(-50%);
			background: #333;
			color: #fff;
			padding: 10px 20px;
			border-radius: 5px;
			opacity: 0;
			transition: opacity 0.5s;
			z-index: 1002;
		}

		.toast.show {
			opacity: 1;
		}

		.quote-modal {
			position: fixed;
			bottom: 100px;
			left: 50%;
			transform: translateX(-50%);
			background: white;
			padding: 1rem;
			border: 1px solid #ccc;
			border-radius: 8px;
			z-index: 1100;
			display: flex;
			flex-direction: column;
			gap: 10px;
			align-items: center;
		}
	