/* === Mini Cart Gelişmiş Görünüm === */

.mini-cart-row-top {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 15px;
}

.mini-cart-row-top .cart-item-image {
	flex-shrink: 0;
	width: 80px;
	display: block;
}

.mini-cart-row-top .cart-item-image img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.cart-info {
	flex-grow: 1;
	font-size: 14px;
	line-height: 1.5;
}

.cart-info .wd-entities-title {
	font-weight: bold;
	color: #333;
	display: block;
	margin-bottom: 5px;
}

.cart-info .dhl-shipping-info {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	font-size: 12px;
	color: #008000;
}

.cart-info .dhl-logo {
	width: 22px;
	height: auto;
}

.stock-info-message {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	font-size: 14px;
	color: #dc3545;
}

.mini-cart-row-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	padding-left: 100px;
}

.qty-wrapper {
	display: flex;
	align-items: center;
	gap: 5px;
}

.qty-btn {
	width: 28px;
	height: 28px;
	border: none;
	background-color: #f0f0f0;
	color: #333;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s ease-in-out;
}

.qty-btn:hover {
	background-color: #ddd;
}

.mini-cart-qty-input {
	width: 40px;
	text-align: center;
	padding: 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

.remove_from_cart_button svg {
	cursor: pointer;
	transition: transform 0.2s ease-in-out;
}

.remove_from_cart_button:hover svg {
	transform: scale(1.1);
	fill: #b30000;
}