.fixed-image {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	min-height: 100px;
}

#fixedImage {
	width: 100px;
}

/* Shopping Cart Styles */
.shopping-cart {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.shopping-cart h2 {
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f1f1;
}

.cart-items {
	margin-bottom: 20px;
}

.cart-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f1f1f1;
}

.cart-item-info {
	flex: 1;
}

.cart-item-info h4 {
	margin: 0 0 10px 0;
}

.quantity-controls {
	display: flex;
	align-items: center;
}

.quantity-btn {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent !important;
	color: #BF923F !important;
	border: none;
	cursor: pointer;
	font-weight: bold;
}

.quantity {
	margin: 0 10px;
	min-width: 20px;
	text-align: center;
}

.cart-item-price {
	display: flex;
	align-items: center;
	gap: 10px;
}

.remove-item {
	background-color: transparent !important;
	border: none;
	color: #ff0000;
	font-size: 18px;
	cursor: pointer;
}

.empty-cart {
	text-align: center;
	padding: 20px;
	color: #888;
}

.cart-total {
	margin-bottom: 20px;
}

.cart-total > div {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
}

.total {
	font-weight: bold;
	font-size: 1.2em;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #f1f1f1;
}

.checkout-button {
	display: block;
	width: 100%;
	padding: 10px;
	text-align: center;
	background-color: #2E2E2E;
	color: white;
	text-decoration: none;
	border-radius: 0;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.checkout-button:hover {
	color: white;
	background-color: #BF923F;
}

/* Generic Styles (from original CSS) */
.list-container {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	align-items: center;
}

.flex-container {
	display: flex;
	flex-direction: column;
}

.list-text {
	display: flex;
	align-items: center;
}

.list-title {
	flex: 1;
}

.list-item {
	padding: 20px 0;
	transition: all 1s ease;
}

.list-item:hover .list-title {
	font-weight: bold;
	font-style: italic;
}

.list-icons {
	margin-left: auto;
	margin: 0 10px 0 10px;
}

.list-icon {
	border: 1px solid;
	border-radius: 50%;
	text-align: center;
	width: 40px;
	height: 40px;
	padding: 4px 4px 1px 4px;
}

.list-icon-hover {
	border: 2px solid;
	border-radius: 50%;
	text-align: center;
	width: 30px;
	height: 30px;
	padding: 5px 0px 0px 0px;
	font-weight: bold;
}

.list-item:hover .list-icon {
	display: none;
}

.list-icon-hover, .list-read-more {
	display: none;
}

.list-item:hover .list-icon-hover, .list-item:hover .list-read-more {
	display: inline-block;
}

.list-item:hover .read-more {
	font-style: italic;
}