/* =========================================================
   Subscription Builder — bloemenvandeteler (child theme)
   Uses CSS vars defined in kadence-child/src/scss/style.scss
   ========================================================= */

/* ── Builder wrapper ── */
.bvdt-builder {
	font-family: inherit;
	color: var(--ink);
}

/* ── Steps ── */
.bvdt-step {
	border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2.5rem;
}

.bvdt-step:last-of-type {
	border-bottom: none;
}

.bvdt-step-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
}

.bvdt-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.bvdt-step-optional {
	font-weight: 400;
	color: var(--muted-foreground);
	font-size: 14px;
}

/* ── Tooltip icon ── */
.bvdt-tooltip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1.5px solid var(--border);
	background: transparent;
	color: var(--muted-foreground);
	font-size: 11px;
	font-weight: 700;
	font-style: italic;
	cursor: help;
	flex-shrink: 0;
	margin-left: 2px;
	position: relative;
	line-height: 1;
	padding: 0;
}

.bvdt-tooltip-icon:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--ink);
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	padding: 8px 12px;
	border-radius: 6px;
	white-space: normal;
	max-width: 220px;
	line-height: 1.4;
	z-index: 10;
	pointer-events: none;
	width: 220px;
	text-align: center;
}

.bvdt-tooltip-icon:hover::before {
	content: '';
	position: absolute;
	bottom: calc(100% + 2px);
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: var(--ink);
	z-index: 10;
}

/* ── Frequency grid ── */
.bvdt-frequency-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.bvdt-freq-btn {
	border-radius: 1rem; /* rounded-2xl */
	border-width: 2px; /* border-2 */
	border-style: solid;
	border-color: var(--border); /* border-border */
	padding: 0.75rem 0.75rem; /* px-3 py-3 */
	font-size: 0.875rem; /* text-sm */
	line-height: 1.25rem;
	font-weight: 600; /* font-semibold */
	transition-property: color, background-color, border-color, text-decoration-color,
	fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	background-color: var(--card); /* bg-card */
	color: rgb(from var(--ink) r g b / 0.7);
}

.bvdt-freq-btn:hover {
	border-color: rgb(from var(--rose) r g b / 0.6);
	background-color: var(--card); /* bg-card */
	color: rgb(from var(--ink) r g b / 0.7);
}

.bvdt-freq-btn.active {
	border-color: var(--rose);
	background-color: color-mix(in oklab, var(--peach) 40%, transparent);
	color: var(--ink);
}

/* Mobile custom frequency dropdown */

.bvdt-freq-dropdown {
	display: none;
	position: relative;
}

.bvdt-freq-trigger {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	border-radius: 1rem;
	border: 2px solid var(--border);
	background-color: var(--card);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	font-family: inherit;
	color: var(--ink);
	cursor: pointer;
	transition: border-color 150ms ease;
}

.bvdt-freq-trigger:focus {
	outline: none;
	border-color: var(--rose);
}

.bvdt-freq-chevron {
	flex-shrink: 0;
	transition: transform 150ms ease;
}

.bvdt-freq-trigger[aria-expanded="true"] .bvdt-freq-chevron {
	transform: rotate(180deg);
}

.bvdt-freq-panel {
	position: absolute;
	z-index: 20;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	border-radius: 1rem;
	border: 2px solid var(--border);
	background-color: var(--card);
	box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.bvdt-freq-option {
	display: block;
	width: 100%;
	padding: 0.75rem 1rem;
	text-align: left;
	font-size: 0.875rem;
	font-weight: 600;
	font-family: inherit;
	background: transparent;
	border: none;
	cursor: pointer;
	color: rgb(from var(--ink) r g b / 0.7);
	transition: background-color 150ms ease, color 150ms ease;
}

.bvdt-freq-option:hover {
	background-color: color-mix(in oklab, var(--peach) 25%, transparent);
	color: var(--ink);
}

.bvdt-freq-option.active {
	color: var(--rose);
}

/* ── Product grid (bouquets + vases) ── */
.bvdt-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

/* ── Product card ── */
.bvdt-product-card {
	overflow: hidden;
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1rem; /* rounded-2xl */
	border: 2px solid var(--border); /* border-2 + border-border */
	background-color: var(--card); /* bg-card */
	transition-property: color, background-color, border-color, text-decoration-color,
		fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.bvdt-product-card:hover {
	border-color: var(--rose-60);
}

.bvdt-product-card.selected {
	border: 2px solid var(--rose);
	box-shadow: 0 20px 50px -25px rgba(201, 148, 172, 0.6);
}

.bvdt-vase-check {
	position: absolute;
	top: calc(var(--spacing) * 3);
	right: calc(var(--spacing) * 3);
	width: calc(var(--spacing) * 6);
	height: calc(var(--spacing) * 6);
	border-radius: 50%;
	border: 2px solid var(--border);
	background: var(--card);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, border-color 0.15s;
	z-index: 1;
	color: #fff;
}

.bvdt-product-card.selected .bvdt-vase-check {
	background: var(--rose);
	border-color: var(--rose);
}

.bvdt-card-img {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--muted);
}

.bvdt-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.bvdt-product-card:hover .bvdt-card-img img {
	transform: scale(1.04);
}

/* Vase card: padded, contain */


.bvdt-card-info {
    padding: 0.75rem;
    text-align: center;
}
.dot-heading {
	background-color: var(--rose);
	border-radius: calc(infinity * 1px);
	width: calc(var(--spacing) * 1.5);
	height: calc(var(--spacing) * 1.5);
	display: inline-block;
}
.heading-bvdt-step {
	margin-bottom: 0.25rem !important;
}
.bvdt-card-info .title-prod-card {
	gap: calc(var(--spacing) * 1);
    display: flex;
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
    justify-content: center;
    align-items: center;
}
.bvdt-vase-grid .bvdt-card-img {
	background: var(--background);
	box-sizing: border-box;
}
.bvdt-vase-grid .bvdt-card-info {
    text-align: left;
}
.bvdt-vase-grid .title-prod-card {
	display: block;
}
.bvdt-vase-grid .bvdt-card-img img {
	object-fit: contain;
}
.bvdt-card-desc {
	padding-top: 0.25rem;
    color: color-mix(in oklab, var(--ink) 65%, transparent);
}
.bvdt-card-price {
	font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
	padding-top: 0.25rem;
}

/* ── Delivery date input ── */
.bvdt-step .bvdt-delivery-date-input {
	display: block;
	padding: 0.75rem 1rem;
	border-radius: 1rem;
	border: 2px solid var(--border);
	background: var(--card);
	font-size: 0.875rem;
	color: var(--ink);
	font-family: inherit;
	transition: border-color 150ms ease;
	cursor: pointer;
	width: 100%;
	max-width: var(--container-xs);
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.bvdt-step .bvdt-delivery-date-input-full {
	max-width: 100%;
}
}
.bvdt-step .bvdt-delivery-date-input:focus {
	outline: none;
	border-color: var(--rose);
}

/* ── Delivery options ── */
/*
 * Same treatment as .blb-option in the boeket builder: 10px rows, a custom rose
 * dot and a peach wash when selected. This markup has no separate radio span, so
 * the native input is restyled into the dot instead of being hidden behind one.
 */
.bvdt-delivery-option {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.8rem 1rem;
	border: none;
	border-radius: 10px;
	margin-bottom: 0.5rem;
	background: transparent;
	cursor: pointer;
	transition: background-color 150ms ease, border-color 150ms ease;
}

.bvdt-delivery-option input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	margin: 0;
	flex: none;
	border: 2px solid color-mix(in oklab, var(--ink) 30%, transparent);
	border-radius: 50%;
	background: transparent;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: border-color 150ms ease;
}

.bvdt-delivery-option input[type="radio"]::after {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rose);
	transform: scale(0);
	transition: transform 150ms ease;
}

/* `.active` is set by the script; `:checked` keeps it right without JS too. */
.bvdt-delivery-option.active,
.bvdt-delivery-option:has(input[type="radio"]:checked) {
	background: color-mix(in oklab, var(--peach) 30%, transparent);
}

.bvdt-delivery-option input[type="radio"]:checked {
	border-color: var(--rose);
}

.bvdt-delivery-option input[type="radio"]:checked::after {
	transform: scale(1);
}

.bvdt-delivery-option input[type="radio"]:focus-visible {
	outline: 2px solid var(--rose);
	outline-offset: 2px;
}

.bvdt-delivery-option-label {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.bvdt-delivery-option-label strong {
	font-size: var(--text-sm);
	line-height: var(--tw-leading, var(--text-sm--line-height));
	font-weight: inherit;
}

.bvdt-delivery-sub {
	font-size: var(--text-xs);
	line-height: var(--tw-leading, var(--text-xs--line-height));
	color: var(--muted-foreground);
}

.bvdt-delivery-price {
	font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));font-weight: var(--font-weight-semibold);
	color: var(--rose);
	font-weight: 400;
}

.bvdt-delivery-price .amount {
	color: inherit;
}

.bvdt-delivery-note {
    font-size: 0.75rem;
    color: color-mix(in oklab, var(--ink) 75%, transparent);
    margin-top: 12px;
    margin-bottom: 0;
    line-height: var(--tw-leading, var(--text-xs--line-height));
    font-weight: var(--font-weight-semibold);
    background: color-mix(in oklab, var(--peach) 30%, transparent);
    padding: calc(var(--spacing) * 2) calc(var(--spacing) * 3);
    border-radius: calc(var(--radius) + 4px);
}

/* ── Add-on items ── */
#bvdt-addons {
	gap: calc(var(--spacing) * 3);
	display: grid;
	@media (width >= 40rem) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.bvdt-addon-wrapper {
	display: flex;
	flex-direction: column;
}

/* ── Card design section — full-width block after the addon grid ── */
.bvdt-card-design-section {
	margin-top: 1.25rem;
	padding: 1rem;
	border: 2px solid color-mix(in oklab, var(--rose) 50%, transparent);
	border-radius: 1rem;
	background: color-mix(in oklab, var(--peach) 20%, transparent);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bvdt-addon-field-group {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.bvdt-addon-field-label {
	font-size: 0.875rem;
	font-weight: 600;
}

/* ── Variation card grid (CA_CARD design picker) ── */
.bvdt-addon-var-heading {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ink);
}

.bvdt-addon-var-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.625rem;
}

.bvdt-addon-var-card {
	position: relative;
	cursor: pointer;
	border: 2px solid var(--border);
	border-radius: 0.75rem;
	background: var(--card);
	overflow: hidden;
	transition: border-color 0.15s;
}

.bvdt-addon-var-card:hover {
	border-color: color-mix(in oklab, var(--rose) 60%, transparent);
}

.bvdt-addon-var-card.selected {
	border-color: var(--rose);
}

.bvdt-addon-var-check {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	border: 2px solid var(--border);
	background: var(--card);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, border-color 0.15s;
	z-index: 1;
	color: #fff;
}

.bvdt-addon-var-card.selected .bvdt-addon-var-check {
	background: var(--rose);
	border-color: var(--rose);
}

.bvdt-addon-var-img {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--muted);
}

.bvdt-addon-var-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.bvdt-addon-var-card:hover .bvdt-addon-var-img img {
	transform: scale(1.03);
}

.bvdt-addon-var-name {
	padding: 0.375rem 0.5rem;
	font-size: 0.75rem;
	font-weight: 500;
	text-align: center;
	color: var(--ink);
}

.bvdt-addon-var-subtitle {
	font-size: 0.75rem;
	color: color-mix(in oklab, var(--ink) 60%, transparent);
	margin-bottom: 1rem !important;
}

.bvdt-addon-note-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.375rem;
}

.bvdt-addon-note-counter {
	font-size: 0.75rem;
	color: color-mix(in oklab, var(--ink) 45%, transparent);
}

.bvdt-addon-note-textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	border: 2px solid var(--border);
	border-radius: 12px;
	font-size: 0.875rem;
	font-family: inherit;
	color: var(--ink);
	background: var(--card);
	resize: vertical;
	min-height: 80px;
	box-sizing: border-box;
	transition: border-color 0.15s;
	line-height: 1.5;
}

.bvdt-addon-note-textarea:focus {
	outline: none;
	border-color: var(--rose);
}

.bvdt-addon-note-textarea::placeholder {
	color: color-mix(in oklab, var(--ink) 40%, transparent);
}

.bvdt-addon-item {
  display: flex;                    /* flex */
  align-items: flex-start;          /* items-start */
  gap: 0.75rem;                     /* gap-3 */
  overflow: hidden;    
  cursor: pointer;
  border: 2px solid var(--border);  /* border-2 + border-border */
  border-radius: 1rem;              /* rounded-2xl */
  background-color: var(--card);    /* bg-card */
  padding: 0.75rem;                 /* p-3 */
  text-align: left;                 /* text-left */
  transition-property: color, background-color, border-color, text-decoration-color,
    fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.bvdt-addon-item:hover {
	border-color: rgb(from var(--rose) r g b / 0.6);
}

.bvdt-addon-item.selected {
	border-color: var(--rose);
}

.bvdt-addon-img {
	width: calc(var(--spacing) * 16);
	height: calc(var(--spacing) * 16);
	border-radius: calc(var(--radius) + 4px);
	object-fit: cover;
	flex-shrink: 0;
}

.bvdt-addon-info {
	flex: 1;
}

.bvdt-addon-info strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}

.bvdt-addon-info span {
	font-size: 13px;
	color: var(--rose);
	font-weight: 600;
}
/* ── Summary panel ── */
.bvdt-summary {
    margin-top: 40px;
    padding: calc(var(--spacing) * 8);
    border: 2px solid var(--border);
    border-radius: calc(var(--radius) + 12px);
    background-color: color-mix(in oklab, var(--peach) 25%, transparent);
    border-color: color-mix(in oklab, var(--rose) 40%, transparent);
	display: flex;            /* flex */
	flex-direction: column;   /* flex-col */
	gap: 1.25rem;   
}
.bvdt-summary-header {
  font-size: 0.75rem;      /* text-xs = 12px */
  line-height: 1rem;       /* 16px */
  text-transform: uppercase; /* uppercase */
  letter-spacing: 0.1em;    /* tracking-widest */
  color: rgb(from var(--ink) r g b / 0.6);
}


.bvdt-summary-price-row {
    color: color-mix(in oklab, var(--ink) 75%, transparent);
}
.bvdt-summary-price {
	color: var(--ink);
}

.bvdt-summary-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
@media (min-width: 640px) {
	.bvdt-summary-actions {
		flex-direction: row;
	}
}
@media (min-width: 768px) {
	.bvdt-summary-actions {
		flex: none;
	}
	.bvdt-summary {
		flex-direction: row;         /* md:flex-row */
		align-items: center;         /* md:items-center */
		justify-content: space-between;
	}
}
/* ── Buttons ── */
.bvdt-btn-cart {
	display: inline-flex;           /* inline-flex */
	align-items: center;            /* items-center */
	justify-content: center;        /* justify-center */
	gap: 0.5rem;                    /* gap-2 */

	border-radius: 9999px;          /* rounded-full */

	border: 2px solid var(--ink);   /* border-2 + border-[color:var(--ink)] */

	background-color: var(--card);  /* bg-card */

	padding: 0.75rem 1.5rem;        /* py-3 px-6 */

	font-size: 0.875rem;            /* text-sm */
	line-height: 1.25rem;
	font-weight: 600;               /* font-semibold */

	color: var(--ink);              /* text-[color:var(--ink)] */

	transition-property: color, background-color, border-color, text-decoration-color,
		fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.bvdt-btn-cart:hover:not(:disabled) {
	background-color: var(--cream);
	color: var(--ink);
}

.bvdt-btn-cart:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.bvdt-btn-checkout {
    color: #fcf8f1;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    transition: transform .2s, background .2s;
    display: inline-flex;
}

.bvdt-btn-checkout:hover:not(:disabled) {
	transform: translateY(-1px);
	background: color-mix(in oklab, var(--ink) 88%, var(--rose));
}

.bvdt-btn-checkout:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* ── Sticky bottom bar ── */
.bvdt-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: color-mix(in oklab, var(--card) 95%, transparent);
	z-index: 999;
	display: none;
	--tw-backdrop-blur: blur(8px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
	border-top-style: solid;
    border-top-width: 1px;
	border-color: var(--border);
	padding-block: calc(var(--spacing) * 4);
}

.bvdt-sticky-bar.visible {
	display: block;
}

.bvdt-sticky-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
}

.bvdt-sticky-info {
	display: block;
}
.bvdt-sticky-left {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: color-mix(in oklab, var(--ink) 55%, transparent);
	display: flex;
	gap: 0.5rem;
}

.bvdt-sticky-name {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bvdt-sticky-price {
	--tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
	color: var(--ink);
	white-space: nowrap;
}
.bvdt-sticky-price-faq {

}
.bvdt-sticky-below {
	color: color-mix(in oklab, var(--ink) 75%, transparent);
}

.bvdt-sticky-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.bvdt-sticky-actions .bvdt-btn-cart,
.bvdt-sticky-actions .bvdt-btn-checkout {
	font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
	flex: none;
	padding-inline: calc(var(--spacing) * 6);
}

/* ── Loading placeholder ── */
.bvdt-product-grid:empty::after {
	content: 'Producten laden...';
	color: var(--muted-foreground);
	font-size: 14px;
	grid-column: 1 / -1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.bvdt-frequency-grid {
		display: none;
	}

	.bvdt-freq-dropdown {
		display: block;
	}

	.bvdt-product-grid {
		grid-template-columns: 1fr;
	}

	.bvdt-summary {
		padding: 20px 18px;
	}

	.bvdt-summary-actions {
		flex-direction: column;
	}

	.bvdt-sticky-inner {
		flex-direction: column;
		gap: 10px;
	}

	.bvdt-sticky-info {
		display: none;
	}

	.bvdt-sticky-actions {
		width: 100%;
	}

	.bvdt-sticky-actions .bvdt-btn-cart,
	.bvdt-sticky-actions .bvdt-btn-checkout {
		flex: 1;
	}

	.bvdt-sticky-bar {
		padding: 12px 16px;
	}
}
@media (max-width: 719px) {
	.bvdt-builder {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}
@media (max-width: 480px) {
	.bvdt-step {
		padding: 24px 0;
	}

	.bvdt-step-label {
		font-size: 15px;
	}
	.bvdt-sticky-actions {
        flex-direction: column;
    }

	.bvdt-builder {
		padding: 0 1.25rem 1.25rem;
	}
}

.bvdt-no-vase-link {
	display: block;
	margin-top: 10px;
	background: none;
	border: none;
	padding: 0;
	font-size: 0.75rem;
	color: color-mix(in oklab, var(--ink) 60%, transparent);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bvdt-no-vase-link:hover {
	color: var(--rose);
}
