/**
 * PRO Shop the Look — "total price + Add all to cart" summary bar. Rendered
 * by product-list.php as its own exclusive layout icon (alongside None/Left/
 * Right/Below): no per-item cards, just this bar under the image.
 */
.lookbook-shopthelook {
	margin: 14px 0;
}
.lookbook-shopthelook .lbstl-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.lookbook-shopthelook .lbstl-info {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}
.lookbook-shopthelook .lbstl-label {
	font-weight: 700;
	font-size: 16px;
}
.lookbook-shopthelook .lbstl-meta {
	font-size: 13px;
	color: #666;
}
.lookbook-shopthelook .lbstl-total,
.lookbook-shopthelook .lbstl-total .amount {
	font-size: 14px;
	font-weight: 700;
	color: #1d2327;
}
.lookbook-shopthelook .lbstl-addall {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	border: 0;
	border-radius: 6px;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	background: #ffb818;
	transition: background .15s ease, opacity .15s ease;
}
.lookbook-shopthelook .lbstl-addall:hover {
	background: #dd9c09;
}
.lookbook-shopthelook .lbstl-addall .material-icons {
	font-size: 20px;
	line-height: 1;
}
.lookbook-shopthelook .lbstl-addall.loading {
	opacity: .85;
	cursor: progress;
}
.lookbook-shopthelook .lbstl-addall.loading .material-icons {
	visibility: hidden;
	width: 0;
}
.lookbook-shopthelook .lbstl-addall.loading::before {
	content: "";
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: lbstlSpin .6s linear infinite;
}
@keyframes lbstlSpin {
	to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
	.lookbook-shopthelook .lbstl-addall.loading::before {
		animation: none;
	}
}
.lookbook-shopthelook .lbstl-addall.added {
	background: #3858e9;
}
@media (max-width: 600px) {
	.lookbook-shopthelook .lbstl-head {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.lookbook-shopthelook .lbstl-addall {
		justify-content: center;
	}
}

/* Product-page "Shop the look" section (product-page.php, moved from the free stylesheet) */
.shoppablelookbook-product-page {
	clear: both;
	margin: 48px 0;
}
.shoppablelookbook-product-page-title {
	margin-bottom: 24px;
}

/* Note shown when some items need options (variable products).
   Appended after the header, so plain block flow. */
.lbstl-note {
    display: none;
    margin-top: 10px;
    font-size: 12px;
    color: #b45309;
}

