	.cart-dropdown {
		position: absolute;
		top: 55px;
		right: -10px;
		background: white;
		box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		border-radius: 5px;
		width: 300px;
		padding: 15px;
		z-index: 1000;
		font-family: Arial, sans-serif;
	}
	
	.cart-dropdown .close {
		float: right;
		background: none;
		border: none;
		font-size: 16px;
		cursor: pointer;
	}
	
	.cart-item-a-wrapper {
		padding: 10px 0;
		display: flex;
		align-items: center;
		font-size: 14px;
    	flex-direction: column;
    	gap: 10px;
	}
	.gold-button, .orange-button {
		display: block;
		width: 100%;
		padding: 10px;
		text-align: center;
		border-radius: 5px;
		text-decoration: none;
		font-weight: bold;
		margin-top: 10px;
	}
	
	.gold-button {
		background: #c9a963;
		color: white;
	}
	
	.orange-button {
		background: #d56b4a;
		color: white;
	}
	.out-button {
    width: 24px;
    height: 24px;
    border: none;
    background-color: white;
	border: #333 2px solid;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.out-button:hover {
    background-color: #999;
}
.item-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    max-width: 600px;
    margin-bottom: 10px;
}

.primary-image2 {
    width: 45px; /* Adjust as needed */
    height: 45px;
    object-fit: cover;
    margin-right: 10px;
}

.item-info {
    flex-grow: 1; /* Allows it to take available space */
}

.item-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}

.item-price {
    font-size: 12px;
    color: #777;
    margin: 0;
}
.total-price{
	text-align: center;
}
