.bulk-widget {
	width: min(100%, 580px);
	margin-left: auto;
}

.bulk-widget__card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #dbeafe;
	box-shadow: 0 12px 48px rgba(30, 64, 175, 0.12);
	height: 520px;
	position: relative;
	overflow: hidden;
}

.bulk-widget__top-bar {
	height: 4px;
	background: #1d4ed8;
}

.bulk-widget__badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	background: #1d4ed8;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
}

.bulk-widget__panel {
	position: absolute;
	inset: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.38s ease;
}

.bulk-widget__panel.active {
	opacity: 1;
	pointer-events: auto;
}

.bulk-widget__eyebrow {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #93c5fd;
}

.bulk-widget__title {
	font-size: 15px;
	font-weight: 900;
	color: #1e293b;
	letter-spacing: -0.01em;
	margin-top: 2px;
}

.bulk-widget__sub {
	font-size: 11px;
	color: #64748b;
	margin-top: 1px;
}

.bulk-widget__dots {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	margin-top: 16px;
}

.bulk-widget__dot-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.bulk-widget__dot {
	height: 6px;
	border-radius: 999px;
	background: #bfdbfe;
	transition: width 0.3s, background 0.3s;
	width: 6px;
}

.bulk-widget__dot.active {
	width: 28px;
	background: #1d4ed8;
}

.bulk-widget__dot-label {
	font-size: 9px;
	font-weight: 600;
	color: #bfdbfe;
	transition: color 0.3s;
}

.bulk-widget__dot-label.active {
	color: #1d4ed8;
}

.bulk-widget__type-cards,
.bulk-widget__proof-actions,
.bulk-widget__delivery-opts {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.bulk-widget__type-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 12px 6px;
	border-radius: 12px;
	animation: bulkWidgetFadeUp 0.4s ease both;
}

.bulk-widget__type-emoji {
	font-size: 20px;
}

.bulk-widget__type-label {
	font-size: 10px;
	font-weight: 700;
}

.bulk-widget__type-check,
.bulk-widget__row-check,
.bulk-widget__stage-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: bulkWidgetPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.bulk-widget__type-check,
.bulk-widget__row-check {
	border-radius: 50%;
}

.bulk-widget__type-check {
	width: 14px;
	height: 14px;
	background: #1d4ed8;
}

.bulk-widget__vol-row,
.bulk-widget__price-badge,
.bulk-widget__import-bar,
.bulk-widget__reviewer-note,
.bulk-widget__bottom-stats {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border-radius: 12px;
	flex-shrink: 0;
}

.bulk-widget__vol-row,
.bulk-widget__reviewer-note {
	gap: 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.bulk-widget__vol-label {
	font-size: 11px;
	font-weight: 600;
	color: #475569;
	flex: 1;
}

.bulk-widget__vol-minus,
.bulk-widget__vol-plus {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.bulk-widget__vol-minus {
	background: #e2e8f0;
	color: #64748b;
}

.bulk-widget__vol-plus {
	background: #1d4ed8;
	color: #fff;
}

.bulk-widget__vol-num {
	font-size: 16px;
	font-weight: 900;
	color: #1d4ed8;
	width: 48px;
	text-align: center;
	animation: bulkWidgetPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.bulk-widget__disc-section,
.bulk-widget__stage-track {
	flex-shrink: 0;
}

.bulk-widget__disc-eyebrow {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin-bottom: 8px;
}

.bulk-widget__disc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.bulk-widget__disc-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 4px;
	border-radius: 12px;
	animation: bulkWidgetPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.bulk-widget__disc-range {
	font-size: 9px;
	font-weight: 600;
}

.bulk-widget__disc-val {
	font-size: 14px;
	font-weight: 900;
	margin-top: 2px;
}

.bulk-widget__price-badge,
.bulk-widget__import-bar,
.bulk-widget__bottom-stats {
	background: #eff6ff;
	border: 1.5px solid #bfdbfe;
}

.bulk-widget__price-badge {
	justify-content: space-between;
}

.bulk-widget__price-saving {
	font-size: 20px;
	font-weight: 900;
	color: #1d4ed8;
}

.bulk-widget__price-sub {
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #93c5fd;
	margin-bottom: 2px;
}

.bulk-widget__price-right {
	text-align: right;
}

.bulk-widget__price-units {
	font-size: 9px;
	color: #64748b;
}

.bulk-widget__price-ready {
	font-size: 11px;
	font-weight: 900;
	color: #1e293b;
	margin-top: 2px;
}

.bulk-widget__stats-trio {
	display: flex;
	justify-content: space-around;
	flex-shrink: 0;
	animation: bulkWidgetFadeIn 0.4s ease 1.1s both;
}

.bulk-widget__stat-c,
.bulk-widget__bs-item {
	text-align: center;
	flex: 1;
}

.bulk-widget__stat-v,
.bulk-widget__bs-val {
	font-weight: 900;
	color: #1d4ed8;
}

.bulk-widget__stat-v {
	font-size: 13px;
}

.bulk-widget__bs-val {
	font-size: 14px;
}

.bulk-widget__stat-l,
.bulk-widget__bs-lbl {
	font-size: 9px;
	color: #94a3b8;
}

.bulk-widget__sheet {
	flex: 1;
	border-radius: 12px;
	overflow: hidden;
	border: 1.5px solid #bfdbfe;
	display: flex;
	flex-direction: column;
	animation: bulkWidgetScaleIn 0.4s ease 0.1s both;
}

.bulk-widget__sheet-head,
.bulk-widget__data-row {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
}

.bulk-widget__sheet-head {
	background: #1d4ed8;
	flex-shrink: 0;
}

.bulk-widget__sh-cell {
	padding: 7px 10px;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #bfdbfe;
	border-right: 1px solid #3b82f6;
}

.bulk-widget__sheet-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.bulk-widget__data-row {
	border-bottom: 1px solid #f1f5f9;
	animation: bulkWidgetSlideLeft 0.4s ease both;
}

.bulk-widget__data-row:nth-child(odd) {
	background: #fff;
}

.bulk-widget__data-row:nth-child(even) {
	background: #f8fafc;
}

.bulk-widget__dc {
	padding: 7px 10px;
	font-size: 9px;
	border-right: 1px solid #f1f5f9;
}

.bulk-widget__dc-name {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
	color: #1e293b;
}

.bulk-widget__dc-major {
	color: #475569;
}

.bulk-widget__dc-num {
	font-family: monospace;
	color: #1d4ed8;
	font-weight: 600;
}

.bulk-widget__row-check {
	width: 14px;
	height: 14px;
	background: #dcfce7;
	border: 1px solid #86efac;
	flex-shrink: 0;
}

.bulk-widget__more-rows {
	padding: 8px;
	text-align: center;
	font-size: 9px;
	color: #94a3b8;
	border-top: 1px solid #f1f5f9;
	animation: bulkWidgetFadeIn 0.3s ease 1.1s both;
}

.bulk-widget__imp-head,
.bulk-widget__imp-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bulk-widget__imp-head {
	margin-bottom: 8px;
}

.bulk-widget__imp-title,
.bulk-widget__imp-count {
	font-size: 10px;
	font-weight: 700;
	color: #1d4ed8;
}

.bulk-widget__imp-count {
	font-weight: 900;
	animation: bulkWidgetFadeIn 0.3s ease 1.3s both;
}

.bulk-widget__imp-track {
	height: 8px;
	border-radius: 999px;
	background: #dbeafe;
	position: relative;
	overflow: hidden;
}

.bulk-widget__imp-fill {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background: #1d4ed8;
	border-radius: 999px;
	width: 0;
	animation: bulkWidgetFillBar 0.9s ease 1.1s both;
}

.bulk-widget__imp-foot {
	margin-top: 8px;
}

.bulk-widget__imp-sub {
	font-size: 9px;
	color: #64748b;
}

.bulk-widget__ready-pill {
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	background: #dcfce7;
	color: #16a34a;
	animation: bulkWidgetPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

.bulk-widget__proof-wrap {
	position: relative;
	flex-shrink: 0;
	height: 220px;
}

.bulk-widget__proof-cert {
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: #fff;
	border: 2.5px double #93c5fd;
	box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 14px;
	animation: bulkWidgetScaleIn 0.4s ease 0.1s both;
}

.bulk-widget__cert-gold {
	width: 100%;
	height: 4px;
	border-radius: 999px;
	background: #f59e0b;
}

.bulk-widget__cert-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 1;
	justify-content: center;
}

.bulk-widget__cert-seal {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #1d4ed8;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: bulkWidgetSpringIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.bulk-widget__cert-title {
	font-family: Georgia, serif;
	font-size: 13px;
	color: #1e3a8a;
	letter-spacing: 0.01em;
	animation: bulkWidgetFadeIn 0.3s ease 0.55s both;
}

.bulk-widget__cert-sub {
	font-size: 8px;
	letter-spacing: 0.22em;
	color: #60a5fa;
	text-transform: uppercase;
	animation: bulkWidgetFadeIn 0.3s ease 0.65s both;
}

.bulk-widget__cert-name-box {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 4px;
	padding: 4px 12px;
	animation: bulkWidgetScaleIn 0.3s ease 0.75s both;
}

.bulk-widget__cert-name-text {
	font-size: 12px;
	font-weight: 900;
	color: #1d4ed8;
}

.bulk-widget__cert-lines {
	display: flex;
	gap: 6px;
	margin-top: 4px;
}

.bulk-widget__cert-line {
	height: 1.5px;
	background: #e2e8f0;
	border-radius: 1px;
}

.bulk-widget__cert-sigs {
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.bulk-widget__cert-sig {
	text-align: center;
}

.bulk-widget__cert-sig-line {
	width: 40px;
	height: 1px;
	background: #94a3b8;
	margin: 0 auto 2px;
}

.bulk-widget__cert-sig-lbl {
	font-size: 7px;
	color: #94a3b8;
}

.bulk-widget__annot {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 8px;
	font-weight: 700;
	white-space: nowrap;
	animation: bulkWidgetSlideLeft 0.35s ease both;
}

.bulk-widget__reviewer-note {
	align-items: flex-start;
	animation: bulkWidgetFadeUp 0.35s ease 1s both;
}

.bulk-widget__rev-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #1d4ed8;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bulk-widget__rev-name {
	font-size: 10px;
	font-weight: 700;
	color: #1e293b;
}

.bulk-widget__rev-msg {
	font-size: 10px;
	color: #64748b;
	margin-top: 1px;
}

.bulk-widget__btn-rev,
.bulk-widget__btn-approve {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
	animation: bulkWidgetFadeIn 0.35s ease both;
}

.bulk-widget__btn-rev {
	border: 1.5px solid #e2e8f0;
	color: #64748b;
}

.bulk-widget__btn-approve {
	background: #1d4ed8;
	color: #fff;
	animation-name: bulkWidgetScaleIn;
}

.bulk-widget__pkg-box {
	position: relative;
	border-radius: 14px;
	flex-shrink: 0;
	height: 155px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	animation: bulkWidgetScaleIn 0.4s ease 0.1s both;
}

.bulk-widget__pkg {
	position: absolute;
	border-radius: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.bulk-widget__pkg-label {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.bulk-widget__pkg-line {
	background: rgba(255, 255, 255, 0.4);
	height: 1px;
}

.bulk-widget__pkg-qty {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
}

.bulk-widget__days-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #fff;
	border: 1.5px solid #bfdbfe;
	border-radius: 10px;
	padding: 6px 10px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
	animation: bulkWidgetPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s both;
}

.bulk-widget__days-num {
	font-size: 18px;
	font-weight: 900;
	color: #1d4ed8;
	line-height: 1;
}

.bulk-widget__days-lbl {
	font-size: 8px;
	font-weight: 700;
	color: #64748b;
}

.bulk-widget__truck-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	animation: bulkWidgetTruckMove 1.5s ease-in-out 1.2s infinite;
}

.bulk-widget__stage-row {
	display: flex;
	align-items: center;
}

.bulk-widget__stage-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	flex: 1;
	animation: bulkWidgetFadeUp 0.3s ease both;
}

.bulk-widget__stage-circle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
}

.bulk-widget__stage-lbl {
	font-size: 8px;
	font-weight: 700;
}

.bulk-widget__stage-connector,
.bulk-widget__price-div,
.bulk-widget__bs-div {
	width: 1px;
	align-self: stretch;
	background: #dbeafe;
}

.bulk-widget__stage-connector {
	flex: 1;
	height: 1px;
	margin-bottom: 18px;
	animation: bulkWidgetGrowX 0.3s ease both;
	transform-origin: left;
}

.bulk-widget__delivery-opts {
	gap: 8px;
}

.bulk-widget__del-opt {
	flex: 1;
	padding: 10px 12px;
	border-radius: 12px;
	animation: bulkWidgetSlideLeft 0.35s ease both;
}

.bulk-widget__del-name {
	font-size: 10px;
	font-weight: 900;
}

.bulk-widget__del-sub {
	font-size: 9px;
	color: #94a3b8;
	margin-top: 2px;
}

@keyframes bulkWidgetFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bulkWidgetFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bulkWidgetSlideLeft { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
@keyframes bulkWidgetScaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
@keyframes bulkWidgetSpringIn { from { opacity: 0; transform: scale(0) rotate(-90deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes bulkWidgetPopIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes bulkWidgetFillBar { to { width: var(--w); } }
@keyframes bulkWidgetGrowX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes bulkWidgetTruckMove { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
@keyframes bulkWidgetPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

@media (max-width: 921px) {
	.bulk-widget {
		width: min(100%, 520px);
		margin: 0 auto;
	}

	.bulk-widget__card {
		height: 430px;
	}
}

@media (max-width: 640px) {
	.bulk-widget {
		width: 100%;
	}

	.bulk-widget__card {
		height: 408px;
	}

	.bulk-widget__panel {
		padding: 16px;
	}

	.bulk-widget__disc-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bulk-widget__delivery-opts,
	.bulk-widget__proof-actions,
	.bulk-widget__type-cards {
		gap: 6px;
	}

	.bulk-widget__dots {
		gap: 10px;
	}
}
