/* =========================================================================
 * CCW Bundles Grid — luxury bundle cards linking to single product pages.
 * ===================================================================== */

.ccw-bndl { --ccw-bndl-accent: var(--ccw-rose-deep); position: relative; width: 100%; }
.ccw-bndl__inner { position: relative; margin: 0 auto; padding-block: var(--ccw-space-6); }

/* Header */
.ccw-bndl__head { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; margin-bottom: 30px; }
.ccw-bndl__eyebrow { font-family: var(--ccw-font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ccw-bndl-accent); }
.ccw-bndl__title { font-family: var(--ccw-font-display); font-size: var(--ccw-fs-h2); line-height: 1.14; color: #2A1E2C; margin: 0; }
.ccw-bndl__heart { display: inline-flex; color: var(--ccw-gold); }
.ccw-bndl__heart svg { width: 1em; height: 1em; fill: currentColor; }
.ccw-bndl__intro { font-size: 0.98rem; line-height: 1.6; color: #5A4F58; max-width: 60ch; margin: 0; }

/* Grid */
.ccw-bndl__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }

/* Card */
.ccw-bndl__card {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 10px;
	padding: 24px 22px 26px;
	background: rgba(255, 255, 255, 0.66);
	border: 1px solid rgba(201, 162, 75, 0.32);
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(42, 30, 44, 0.06);
	transition: transform 0.28s var(--ccw-ease-out), box-shadow 0.28s ease;
}
.ccw-bndl__card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(192, 57, 122, 0.16); }
.ccw-bndl__card.is-featured { border-color: var(--ccw-bndl-accent); box-shadow: 0 22px 50px rgba(192, 57, 122, 0.22); }

.ccw-bndl__badge {
	position: absolute;
	top: -12px; left: 50%;
	transform: translateX(-50%);
	padding: 6px 16px;
	font-family: var(--ccw-font-body);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: var(--ccw-bndl-accent);
	border-radius: 50px;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(192, 57, 122, 0.35);
}

.ccw-bndl__media { display: flex; align-items: center; justify-content: center; height: 200px; margin-bottom: 6px; }
.ccw-bndl__media img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.4s var(--ccw-ease-out); }
a.ccw-bndl__media:hover img { transform: scale(1.04); }

.ccw-bndl__name { font-family: var(--ccw-font-display); font-size: 1.25rem; line-height: 1.2; color: #2A1E2C; margin: 0; }

.ccw-bndl__inc { list-style: none; margin: 6px 0 4px; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 7px; }
.ccw-bndl__inc li { position: relative; padding-left: 24px; font-size: 0.88rem; line-height: 1.4; color: #4A3F49; }
.ccw-bndl__inc li::before {
	content: "";
	position: absolute;
	left: 0; top: 1px;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--ccw-gold);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 11px no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 11px no-repeat;
}

.ccw-bndl__pricing { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 2px; padding-top: 10px; }
.ccw-bndl__price { font-family: var(--ccw-font-display); font-size: 1.7rem; line-height: 1; color: var(--ccw-bndl-accent); }
.ccw-bndl__save { font-family: var(--ccw-font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ccw-gold-deep); }

.ccw-bndl__btn {
	margin-top: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: var(--ccw-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--ccw-bndl-accent);
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(192, 57, 122, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.ccw-bndl__btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 12px 26px rgba(192, 57, 122, 0.45); }
.ccw-bndl__btn-icon { display: inline-flex; align-items: center; color: var(--ccw-gold-soft); }
.ccw-bndl__btn-icon svg { width: 1em; height: 1em; fill: currentColor; }

.ccw-bndl__note { text-align: center; font-size: 0.85rem; color: #9C8AA0; margin: 26px 0 0; }

/* Responsive */
@media (max-width: 1024px) {
	.ccw-bndl__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.ccw-bndl__grid { grid-template-columns: 1fr; }
	.ccw-bndl__title { font-size: clamp(1.6rem, 8vw, 2.1rem); }
}
