body {
	background-position: center;
	background-size: contain;
	background-image: url('/img/logo_25_transparent.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 100vh;
}

#loader {
	position: fixed;
	z-index: 999;
	overflow: hidden;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
}

#list {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

.product-card {
	border: 1px solid #ddd;
	padding: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	background: #fff;
}

.product-image-container {
	width: 130px;
	margin-right: 20px;
	position: relative;
}

.product-image {
	width: 130px;
	height: 200px;
	object-fit: contain;
	margin-right: 20px;
}

.product-details {
	margin-top: 0;
	flex-grow: 1;
}

.product-name {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 10px;
}
.product-info {
	font-size: 0.9em;
	margin-bottom: 5px;
}

.product-description {
	font-size: 0.9em;
	color: #666;
	margin-top: 10px;
}

.price-info {
margin-top: 10px;
font-size: 1.1em;
}
.wholesale-price {
font-weight: bold;
color: #e74c3c;
}
.msrp {
color: #27ae60;
}
.quantity-input {
display: flex;
align-items: center;
}
.quantity-input button {
width: 24px;
height: 24px;
background-color: #3498db;
color: white;
border: none;
cursor: pointer;
font-size: 1em;
display: flex;
justify-content: center;
align-items: center;
}
.quantity-input input {
width: 40px;
height: 24px;
text-align: center;
font-size: 0.9em;
border: 1px solid #ddd;
margin: 0 5px;
}

.product-price {
	text-align: center;
	margin-bottom: 0.25rem;
	color: #309060;
	font-weight: bold;
}

.product-image-overlay {
	position: absolute;
	display: flex;
	flex-direction: column;
	bottom: 10px;
	right: 10px;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 4px;
	padding: 5px;
}

.customer .obfuscated,
.customer:hover .obfuscator {
	display: none;
}

.customer .obfuscator,
.customer:hover .obfuscated {
	display: inline-block;
}

.customer {
	position: relative;
}

.customer .buttons {
	position: absolute;
	top: 25%;
	right: 2%;
}
