html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
	font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.main-logo{width:100%;max-width:200px;}
	.main-logo img, .main-logo svg
	{
		color: rgb(229, 0, 189);
	}

/* Product Cards */
.product-card {
	/*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
	border: none;
	border-radius: 3px;
	overflow: hidden;
}

.product-card img {
	max-width: 90%; 
	height: auto;
	border-radius: 4px;
}

.card-img-top-wrapper {
	height: 200px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
}

.product-card .card-img-top {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*transition: transform 0.3s ease;*/
}

/*.product-card:hover .card-img-top {
	transform: scale(1.05);
}*/

.product-card .card-body {
	padding: 1.5rem;
}

.product-card .card-title {
	/*color: #aaaaaa;*/
	font-weight: 600;
	margin-bottom: 1rem;
}

.product-card .card-text {
	/*color: #aaaaaa;*/
	line-height: 1.6;
}

/* Responsive adjustments for product cards */
@media (max-width: 767px) {
	.card-img-top-wrapper {
		height: 180px;
	}
}

@media (min-width: 1200px) {
	.card-img-top-wrapper {
		height: 220px;
	}
}

/* Product container for product detail pages */
.product-container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.product-container img {
	max-width: 100%;
	height: auto;
}