/* =============================================================================
   BYOP — Caddy cart pack grouping (visual only)
   Styles the wrapper injected by js/byop-cart-group.js around pack items
   in the Caddy drawer. Mr. B's brand palette (locked 2026-06-26):
   accent #632317 · ink #250D09 · surface #F7ECDA
   ============================================================================= */

.byop-pack-marker { display: none !important; }

/* Sitewide: the hidden pack-ID entry emitted by woocommerce_get_item_data
   should never render — it exists only so the drawer-grouper JS can read
   it. Hides on the cart page, checkout, order emails, everywhere WC renders
   item meta with the .variation-{key} class convention. */
dl.variation dt.variation-PackId,
dl.variation dd.variation-PackId {
	display: none !important;
}

.byop-cart-pack {
	margin: 10px 8px 14px;
	border: 1.5px solid rgba(99, 35, 23, 0.35);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(247, 236, 218, 0.55), rgba(247, 236, 218, 0.25));
	overflow: hidden;
	text-align: left;
}

.byop-cart-pack__head {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 9px 14px;
	background: #632317;
	color: #F7ECDA;
}

.byop-cart-pack__icon {
	flex: 0 0 auto;
	color: #F7ECDA;
}

.byop-cart-pack__label {
	flex: 1 1 auto;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.byop-cart-pack__count {
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(247, 236, 218, 0.18);
	color: #F7ECDA;
	white-space: nowrap;
}

.byop-cart-pack__items {
	padding: 2px 6px 4px;
}

/* Caddy gives each item its own bottom border/padding — soften the last one
   inside a group so the wrapper reads as one unit. */
.byop-cart-pack__items .cc-cart-product-list:last-child .cc-cart-product {
	border-bottom: 0;
}

/* Slightly tighter item spacing inside a group. */
.byop-cart-pack__items .cc-cart-product-list {
	margin: 0;
}
