.ttl-bundle-builder {
	background: #fff;
	border-radius: 32px;
	padding: 48px;
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
	max-width: 1200px;
	margin: 0 auto;
	border: 1px solid #f0e9e0;
}

.ttl-bundle-builder__header {
	text-align: center;
	margin-bottom: 32px;
}

.ttl-bundle-builder__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.5em;
	font-size: 12px;
	color: #a68c74;
}

.ttl-bundle-builder__title {
	font-size: 32px;
	margin: 8px 0 0;
}

.ttl-bundle-builder__nav {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
	margin: 0 auto 28px;
	max-width: 1080px;
}

.ttl-bundle-builder__nav-step {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 12px;
	text-align: center;
	color: #98a0b5;
}

.ttl-bundle-builder__nav-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 34px;
	left: 50%;
	right: -50%;
	height: 1px;
	background: #d9deeb;
	z-index: 0;
}

.ttl-bundle-builder__nav-bullet {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 2px solid #d5dceb;
	background: #fff;
	color: #8d94a8;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 28px;
	line-height: 1;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ttl-bundle-builder__nav-label {
	display: block;
	margin-top: 14px;
	max-width: 220px;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: #20203d;
	transition: color 0.2s ease;
}

.ttl-bundle-builder__nav-desc {
	display: block;
	margin: 10px 0 0;
	max-width: 220px;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	color: #8d94a8;
}

.ttl-bundle-builder__nav-label-short {
	display: none;
}


.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-step {
	padding: 0 8px;
}

.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-step:not(:last-child)::after {
	top: 22px;
}

.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-bullet {
	width: 44px;
	height: 44px;
	font-size: 18px;
	box-shadow: none;
}

.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-step.is-active .ttl-bundle-builder__nav-bullet {
	box-shadow: none;
}

.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-label {
	display: none;
}

.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-label-short {
	display: block;
	margin-top: 10px;

	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	color: #8d94a8;
}

.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-step.is-active .ttl-bundle-builder__nav-label-short {
	color: #13132e;
}

.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-desc {
	display: none;
}

.ttl-bundle-builder__nav-step.is-active .ttl-bundle-builder__nav-bullet {
	background: #13132e;
	border-color: #13132e;
	color: #fff;
	box-shadow: 0 12px 30px rgba(19, 19, 46, 0.14);
}

.ttl-bundle-builder__nav-step.is-active .ttl-bundle-builder__nav-label {
	color: #13132e;
}

.ttl-bundle-builder__nav-step.is-active .ttl-bundle-builder__nav-desc {
	color: #7a8196;
}

.ttl-bundle-builder__progress {
	display: block;
	height: 3px;
	margin: 75px auto;
	max-width: 1080px;
	background: #e3e8f2;
	border-radius: 999px;
	overflow: hidden;
}

.ttl-bundle-builder__progress-fill {
	display: block;
	height: 100%;
	background: #13132e;
	width: 0;
	transition: width 0.3s ease;
}

.ttl-bundle-builder__steps {
	display: block;
}

.ttl-bundle-builder__step {
	display: none;
}

.ttl-bundle-builder__step.is-active {
	display: block;
}

.ttl-bundle-builder__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin: 24px 0;
	min-height: 180px;
	position: relative;
}

.ttl-bundle-builder__load-more {
	text-align: center;
	margin-bottom: 12px;
	display: none;
}

.ttl-bundle-builder__load-more-button {
	background: transparent;
	border: 1px solid #d6c9bd;
	color: #2c2230;
	padding: 10px 20px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.ttl-bundle-builder__load-more-button:hover {
	border-color: #2c2230;
	color: #050505;
}

.ttl-bundle-builder__grid.is-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 10;
}

.ttl-bundle-builder__card {
	border: 1px solid #f0e9e0;
	border-radius: 24px;
	padding: 18px;
	background: #fcfaf6;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	cursor: pointer;
}

.ttl-bundle-builder__card.is-selected {
	border-color: #2c2230;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ttl-bundle-builder__card-media {
	overflow: hidden;
}

.ttl-bundle-builder__card-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ttl-bundle-builder__card-body h4 {
	font-size: 20px;
	margin: 0 0 4px;
}

.ttl-bundle-builder__card-excerpt {
	font-size: 14px;
	color: #5b524a;
	margin: 0 0 12px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ttl-bundle-builder__card-price {
	font-weight: 600;
	margin: 0;
}

/* WooCommerce sale prices — undo theme float on currency symbols and normalize del/ins */
.ttl-bundle-builder .woocommerce-Price-currencySymbol {
	float: none;
	display: inline;
	margin: 0;
}

.ttl-bundle-builder__card-price,
.ttl-bundle-builder__card-price .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
}

.ttl-bundle-builder__card-price del,
.ttl-bundle-builder__card-price ins {
	display: inline-flex;
	align-items: baseline;
	margin: 0;
	text-decoration: none;
}

.ttl-bundle-builder__card-price del {
	text-decoration: line-through;
	opacity: 0.7;
}

.ttl-bundle-builder__card-price ins {
	background: transparent;
	font-weight: inherit;
}

.ttl-bundle-builder__card-price .woocommerce-Price-amount {
	display: inline-flex;
	align-items: baseline;
	white-space: nowrap;
}

.ttl-bundle-builder__select {
	border: none;
	background: #050505;
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
}

.ttl-bundle-builder__select:hover {
	background: #2c2230;
}

/* Step 1 — horizontal box cards */
.ttl-bundle-builder__grid.step-1 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] {
	flex-direction: row;
	align-items: stretch;
	padding: 12px;
	background: #fff;
	border: 1px solid #e8dfd4;
	border-radius: 16px;
	box-shadow: none;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"].is-selected {
	border-color: #9f2a2e;
	box-shadow: none;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-media {
	flex: 0 0 120px;
	border-radius: 12px;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-media img {
	width: 100%;
	height: 100%;
	min-height: 120px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-body {
	flex: 1;
	justify-content: center;
	padding: 4px 0 4px 16px;
	gap: 4px;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] h4 {
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 18px;
	font-weight: 500;
	color: #13132e;
	margin: 0;
}

.ttl-bundle-builder__card-size,
.ttl-bundle-builder__card-capacity {
	margin: 0;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(19, 19, 46, 0.6);
}

.ttl-bundle-builder__card-meta-label {
	color: rgba(19, 19, 46, 0.6);
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-price {
	margin-top: 6px;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 18px;
	font-weight: 500;
	color: #9f2a2e;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-price .amount,
.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-price .woocommerce-Price-currencySymbol {
	color: #9f2a2e;
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-price del .amount,
.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__card-price del .woocommerce-Price-currencySymbol {
	color: rgba(159, 42, 46, 0.55);
}

.ttl-bundle-builder__card[data-bundle-card-step="box"] .ttl-bundle-builder__select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Step 2 & 3 — default product card layout */
.ttl-bundle-builder__grid.step-2,
.ttl-bundle-builder__grid.step-3 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"],
.ttl-bundle-builder__card[data-bundle-card-step="card"] {
	padding: 0;
	background: #fff;
	border: 1px solid #e8dfd4;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"]:hover,
.ttl-bundle-builder__card[data-bundle-card-step="card"]:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(19, 19, 46, 0.08);
}

.ttl-bundle-builder__card[data-bundle-card-step="item"].is-selected,
.ttl-bundle-builder__card[data-bundle-card-step="card"].is-selected {
	border-color: #e8dfd4;
	box-shadow: 0 12px 28px rgba(19, 19, 46, 0.08);
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-media,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-media {
	aspect-ratio: 1 / 1;
	background: #fcfaf6;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-media img,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 15px 15px 0 0;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-body,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-body {
	padding: 16px 18px 18px;
	gap: 4px;
	flex: 1;
	background: #fff;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] h4,
.ttl-bundle-builder__card[data-bundle-card-step="card"] h4 {
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 18px;
	font-weight: 500;
	color: #13132e;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-excerpt,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-excerpt {
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 11px;
	line-height: 13.5px;
	color: rgba(19, 19, 46, 0.6);
	margin: 0;
	-webkit-line-clamp: 1;
}

.ttl-bundle-builder__card-footer {
	margin-top: auto;
	padding-top: 12px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
}

.ttl-bundle-builder__card-price-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1 1 auto;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-price,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-price {
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 18px;
	font-weight: 500;
	color: #13132e;
	line-height: 1.1;
	min-width: 160px;
	margin: 0;
}

.ttl-bundle-builder__card-qty-meta {
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgba(19, 19, 46, 0.65);
	white-space: nowrap;
}

.ttl-bundle-builder__card-qty-meta[hidden] {
	display: none;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-price .amount,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-price .amount,
.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-price .woocommerce-Price-currencySymbol,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-price .woocommerce-Price-currencySymbol {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-price del,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-price del {
	font-size: 14px;
	font-weight: 400;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-price del .amount,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-price del .amount,
.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-price del .woocommerce-Price-currencySymbol,
.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__card-price del .woocommerce-Price-currencySymbol {
	color: rgba(19, 19, 46, 0.45);
}

.ttl-bundle-builder__card-price-note {
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: rgba(19, 19, 46, 0.6);
	line-height: 1;
}

.ttl-bundle-builder__select--add {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	min-width: 30px;
	padding: 0;
	border-radius: 999px;
	background: #13132e;
	box-shadow: 0 4px 12px rgba(19, 19, 46, 0.15);
	flex-shrink: 0;
	font-size: 0;
	line-height: 0;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.ttl-bundle-builder__select--add svg {
	width: 16px;
	height: 16px;
	color: #fff;
	fill: #fff;
}

.ttl-bundle-builder__select--add:hover {
	background: #13132e;
	transform: scale(1.05);
}

.ttl-bundle-builder__select-icon--check {
	display: none;
}

.ttl-bundle-builder__card-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 30px;
	min-height: 30px;
	flex-shrink: 0;
}

.ttl-bundle-builder__card-cart[data-state="idle"] .ttl-bundle-builder__card-stepper {
	display: none !important;
}

.ttl-bundle-builder__card-cart[data-state="idle"] .ttl-bundle-builder__select--add {
	display: inline-grid !important;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-cart[data-state="qty"] .ttl-bundle-builder__select--add {
	display: none !important;
}

.ttl-bundle-builder__card[data-bundle-card-step="item"] .ttl-bundle-builder__card-cart[data-state="qty"] .ttl-bundle-builder__card-stepper {
	display: inline-flex !important;
}

.ttl-bundle-builder__card[data-bundle-card-step="card"] .ttl-bundle-builder__select-icon--check {
	display: none;
}

.ttl-bundle-builder__card[data-bundle-card-step="card"].is-selected .ttl-bundle-builder__select-icon--plus {
	display: none;
}

.ttl-bundle-builder__card[data-bundle-card-step="card"].is-selected .ttl-bundle-builder__select-icon--check {
	display: block;
}

.ttl-bundle-builder__card[data-bundle-card-step="card"].is-selected .ttl-bundle-builder__select--add {
	background: #1a7a4c;
}

.ttl-bundle-builder__card[data-bundle-card-step="card"].is-selected .ttl-bundle-builder__select--add:hover {
	background: #1a7a4c;
}

.ttl-bundle-builder__card-stepper {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	height: 30px;
	min-width: 88px;
	padding: 0 2px;
	border-radius: 999px;
	background: #13132e;
	color: #fff;
	box-shadow: 0 4px 12px rgba(19, 19, 46, 0.15);
}

.ttl-bundle-builder__card-step {
	width: 28px;
	height: 28px;
	min-width: 28px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #fff;
	display: inline-grid;
	place-items: center;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.ttl-bundle-builder__card-step:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: scale(1.06);
}

.ttl-bundle-builder__card-step svg {
	width: 14px;
	height: 14px;
	color: #fff;
	fill: #fff;
}

.ttl-bundle-builder__card-stepper-qty {
	min-width: 22px;
	padding: 0 4px;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.ttl-bundle-builder__card.is-selected {
	border-color: #d6c9bd;
}

.ttl-bundle-builder__actions {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
}

.ttl-bundle-builder__summary-strip {
	display: flex;
	align-items: stretch;
	gap: 16px;
	background: #fff;
	border: 1px solid #e8dfd4;
	border-radius: 20px;
	padding: 16px 20px;
	margin: 20px 0 8px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ttl-bundle-builder__summary-strip.is-hidden {
	display: none;
}

.ttl-bundle-builder__summary-items {
	display: flex;
	flex: 1;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 4px;
}

.ttl-bundle-builder__summary-entry {
	display: flex;
	gap: 12px;
	align-items: center;
	min-width: 180px;
	flex: 0 0 auto;
}

.ttl-bundle-builder__summary-media {
	position: relative;
	width: 72px;
	height: 72px;
	flex-shrink: 0;
}

.ttl-bundle-builder__summary-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.ttl-bundle-builder__summary-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	background: #f3ece4;
}

.ttl-bundle-builder__summary-remove {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #e3dcd1;
	background: #fff;
	color: #2c2230;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.ttl-bundle-builder__summary-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ttl-bundle-builder__summary-name {
	font-weight: 600;
	color: #050505;
	text-decoration: none;
	font-size: 15px;
}

.ttl-bundle-builder__summary-name:hover {
	text-decoration: underline;
}

.ttl-bundle-builder__summary-price {
	font-size: 13px;
	color: #6b6258;
}

.ttl-bundle-builder__summary-qty {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 2px;
}

.ttl-bundle-builder__summary-qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid #e3dcd1;
	background: #fff;
	color: #2c2230;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.ttl-bundle-builder__summary-qty-btn:hover {
	background: #f7f2eb;
}

.ttl-bundle-builder__summary-qty-value {
	min-width: 20px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #050505;
}

.ttl-bundle-builder__summary-total {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	padding-left: 20px;
	border-left: 1px solid #e8dfd4;
	min-width: 120px;
}

.ttl-bundle-builder__summary-total span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8c7b69;
}

.ttl-bundle-builder__summary-total strong {
	font-size: 22px;
	color: #050505;
}

.ttl-bundle-builder__review-table {
	background: #FAF5E6;
	border: 1px solid #EDE5D8;
	border-radius: 16px;
	padding: 8px 0;
	margin: 24px 0;
}

.ttl-bundle-builder__review-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 20px;
	border-bottom: 1px solid #efe6dc;
}

.ttl-bundle-builder__review-row:last-child {
	border-bottom: none;
}

.ttl-bundle-builder__review-row span {
	color: #8c7b69;
}

.ttl-bundle-builder__review-row strong {
	color: #050505;
	text-align: right;
}

.ttl-bundle-builder__review-row--total strong {
	font-size: 20px;
}

.ttl-bundle-builder__card.is-selected .ttl-bundle-builder__select {
	background: #1a7a4c;
}

.ttl-bundle-builder__button {
	border: none;
	background: #2c2230;
	color: #fff;
	padding: 12px 28px;
	border-radius: 999px;
	font-size: 16px;
	cursor: pointer;
}

.ttl-bundle-builder__button--ghost {
	background: transparent;
	color: #2c2230;
	border: 1px solid #2c2230;
}

.ttl-bundle-builder__step-heading {
	text-align: center;
}
.ttl-bundle-builder__step-heading-number {
	font-family: Barlow Condensed;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 1px;
	text-transform: uppercase;

}
.ttl-bundle-builder__step-heading h3 {
	font-family: Libre Baskerville;
	font-weight: 500;
	font-size: 50px;
	line-height: 100%;
	letter-spacing: 0px;

}
.ttl-bundle-builder__step-heading p,
.ttl-bundle-builder__desc {
	font-family: "DM Sans", system-ui, sans-serif;
	font-weight: 500;
	max-width: 520px;
	margin: 12px auto 0;
	font-size: 18px;
	line-height: 1.35;
	letter-spacing: 0;
	color: rgba(19, 19, 46, 0.6);
}

.ttl-bundle-builder__step[data-step-panel="3"] .ttl-bundle-builder__desc {
	font-family: "Libre Baskerville", Georgia, serif;
	font-weight: 400;
	font-size: 16px;
	color: rgba(19, 19, 46, 0.75);
}

.ttl-bundle-builder__form {
	max-width: 640px;
	margin: 28px auto 0;
	padding: 0 12px;
}

.ttl-bundle-builder__form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
}

.ttl-bundle-builder__form-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.ttl-bundle-builder__form-field--full {
	grid-column: 1 / -1;
}

.ttl-bundle-builder__form-label {
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: rgba(19, 19, 46, 0.85);
}

.ttl-bundle-builder__form input,
.ttl-bundle-builder__form textarea {
	width: 100%;
	border: 0;
	border-radius: 14px;
	padding: 16px 20px;
	background: #FAF5E6;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 15px;
	line-height: 1.4;
	color: #13132e;
	box-shadow: none;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ttl-bundle-builder__form input::placeholder,
.ttl-bundle-builder__form textarea::placeholder {
	color: rgba(19, 19, 46, 0.45);
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 15px;
}

.ttl-bundle-builder__form input:focus,
.ttl-bundle-builder__form textarea:focus {
	outline: none;
	background: #fff5e3;
	box-shadow: 0 0 0 2px rgba(159, 42, 46, 0.12);
}

.ttl-bundle-builder__form textarea {
	min-height: 140px;
	resize: vertical;
}

.ttl-bundle-builder__review {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin: 24px 0;
}

.ttl-bundle-builder__review-section {
	background: #f9f5f0;
	border-radius: 16px;
	padding: 16px;
	border: 1px solid #f0e9e0;
}

.ttl-bundle-builder__review-section strong {
	display: block;
	margin-bottom: 8px;
}

.ttl-bundle-builder__review-shelf {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: stretch;
	min-height: 120px;
}

.ttl-bundle-builder__review-shelf--items {
	min-height: 160px;
}

.ttl-bundle-builder__review-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e3dcd1;
	display: flex;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	width: 100%;
}

.ttl-bundle-builder__review-card-media {
	background: #fdfaf5;
	flex: 0 0 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
}

.ttl-bundle-builder__review-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ttl-bundle-builder__review-card-placeholder {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px dashed #d6c9bd;
	display: block;
}

.ttl-bundle-builder__review-card-body {
	flex: 1;
	padding: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ttl-bundle-builder__review-card-link {
	display: block;
	color: #050505;
	text-decoration: none;
}

.ttl-bundle-builder__review-card-link:hover {
	text-decoration: underline;
}

.ttl-bundle-builder__review-card-body h4 {
	margin: 0;
	font-size: 16px;
}

.ttl-bundle-builder__review-remove {
	border: none;
	background: transparent;
	color: #b3321d;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	align-self: flex-end;
}

.ttl-bundle-builder__message {
	margin-bottom: 16px;
	min-height: 24px;
	padding: 10px 14px;
	border-radius: 12px;
	background: #fff4f0;
	border: 1px solid #f1c1b5;
	color: #b3321d;
	font-weight: 500;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.2s ease;
}

.ttl-bundle-builder__message.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ttl-bundle-builder__empty {
	margin: 0;
	color: #847a70;
}

.ttl-bundle-builder__review-empty {
	margin: 0;
	color: #847a70;
}

@media (max-width: 768px) {
	.ttl-bundle-builder {
		padding: 24px;
	}
	.ttl-bundle-builder__nav {
		flex-wrap: wrap;
		gap: 18px 0;
	}
	.ttl-bundle-builder__nav-step {
		flex: 1 1 50%;
	}
	.ttl-bundle-builder__nav-step:not(:last-child)::after {
		display: none;
	}
	.ttl-bundle-builder__nav-bullet {
		width: 56px;
		height: 56px;
		font-size: 22px;
	}
	.ttl-bundle-builder.is-nav-expanded .ttl-bundle-builder__nav-label {
		font-size: 14px;
		margin-top: 10px;
		max-width: 140px;
	}
	.ttl-bundle-builder.is-nav-expanded .ttl-bundle-builder__nav-desc {
		display: none;
	}
	.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav {
		flex-wrap: nowrap;
		gap: 0;
	}
	.ttl-bundle-builder.is-nav-compact .ttl-bundle-builder__nav-step {
		flex: 1 1 0;
	}
	.ttl-bundle-builder__actions {
		flex-direction: column;
	}
	.ttl-bundle-builder__grid.step-1 {
		grid-template-columns: 1fr;
	}
	.ttl-bundle-builder__grid.step-2,
	.ttl-bundle-builder__grid.step-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
	.ttl-bundle-builder__form-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}
