.wds-cart-container {
    position: relative; 
    display: inline-block;
    vertical-align: middle;
}

.wds-cart-toggle {
    background: transparent;
    color: inherit;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

.wds-cart-toggle:hover{
	background: #EFDFCC;
	color: black;
}

.wds-cart-toggle:focus{
	background: #EFDFCC;
	color: black;
}

.wds-cart-panel {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 999999;
    border-radius: 8px;
    margin-top: 10px;
}

.wds-cart-panel::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.wds-cart-header { 
	font-weight: bold; 
	margin-bottom: 10px; 
	border-bottom: 1px solid #eee; 
	padding-bottom: 5px; 
}

.wds-cart-list { 
	list-style: none; 
	padding: 0; 
	margin: 0 0 15px 0; 
	max-height: 300px; 
	overflow-y: auto; 
}

.wds-cart-list li {
	display: flex; 
	justify-content: space-between; 
	padding: 8px 0; 
	border-bottom: 1px solid #f9f9f9;
	font-size: 14px;
}
.wds-cart-actions {
	display: flex; 
	gap: 10px; 
}
.wds-btn { width: 100%; padding: 8px; background: #BA8E7A; color: #fff; border: none; border-radius: 4px; cursor: pointer; }
.wds-btn-secondary { background: #e0e0e0; color: #333; }