.luxury-widget {
	width: min(100%, 420px);
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.luxury-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;
}

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

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

.luxury-widget__panel {
	position: absolute;
	inset: 0;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

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

.luxury-widget__cert {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	animation: luxuryWidgetCertEntry 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.luxury-widget__cert-inner {
	position: absolute;
	border-radius: 8px;
}

.luxury-widget__cert--gold {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.luxury-widget__gold-border {
	position: absolute;
	inset: 0;
	border: 4px solid;
	border-image: linear-gradient(45deg, #f59e0b, #fbbf24, #f59e0b) 1;
	border-radius: 12px;
	animation: luxuryWidgetFadeIn 0.3s ease 0.2s both;
}

.luxury-widget__gold-inner {
	position: absolute;
	inset: 12px;
	border: 2px solid #d97706;
	border-radius: 8px;
	animation: luxuryWidgetScaleIn 0.3s ease 0.3s both;
}

.luxury-widget__gold-corner {
	position: absolute;
	width: 16px;
	height: 16px;
	background: #f59e0b;
	clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
	animation: luxuryWidgetPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.luxury-widget__gold-corner:nth-child(1) { top: -2px; left: -2px; animation-delay: 0.5s; }
.luxury-widget__gold-corner:nth-child(2) { top: -2px; right: -2px; transform: rotate(90deg); animation-delay: 0.6s; }
.luxury-widget__gold-corner:nth-child(3) { bottom: -2px; right: -2px; transform: rotate(180deg); animation-delay: 0.7s; }
.luxury-widget__gold-corner:nth-child(4) { bottom: -2px; left: -2px; transform: rotate(270deg); animation-delay: 0.8s; }

.luxury-widget__gold-title {
	position: absolute;
	top: 33%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.luxury-widget__gold-bar1 {
	height: 6px;
	width: 55%;
	background: #d97706;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 0.7s both;
}

.luxury-widget__gold-bar2 {
	height: 4px;
	width: 40%;
	background: #f59e0b;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 0.9s both;
}

.luxury-widget__gold-seal {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	background: #d97706;
	border: 2px solid #f59e0b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: luxuryWidgetSpinIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

.luxury-widget__gold-seal-inner {
	width: 28px;
	height: 28px;
	background: #fbbf24;
	border-radius: 50%;
}

.luxury-widget__cert--embossed {
	background: #f8fafc;
}

.luxury-widget__cert-inner--embossed {
	inset: 16px;
	border: 2px solid #cbd5e1;
}

.luxury-widget__emboss-seal {
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 64px;
	animation: luxuryWidgetPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.luxury-widget__emboss-outer {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle, #e2e8f0 0%, #cbd5e1 100%);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.luxury-widget__emboss-inner {
	position: absolute;
	inset: 8px;
	border-radius: 50%;
	background: #94a3b8;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
	animation: luxuryWidgetScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.luxury-widget__emboss-content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.luxury-widget__emboss-line {
	height: 4px;
	background: #64748b;
	border-radius: 999px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	animation: luxuryWidgetGrowX 0.4s ease both;
}

.luxury-widget__emboss-line:nth-child(1) { width: 60%; animation-delay: 0.7s; }
.luxury-widget__emboss-line:nth-child(2) { width: 45%; animation-delay: 0.85s; }
.luxury-widget__emboss-line:nth-child(3) { width: 35%; animation-delay: 1s; }

.luxury-widget__emboss-stamp {
	position: absolute;
	bottom: 24px;
	right: 24px;
	padding: 8px 16px;
	background: #e2e8f0;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	animation: luxuryWidgetFadeUp 0.4s ease 1.2s both;
}

.luxury-widget__emboss-stamp-bar {
	width: 48px;
	height: 4px;
	background: #94a3b8;
	border-radius: 999px;
}

.luxury-widget__cert--velvet {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.luxury-widget__cert-inner--velvet {
	inset: 16px;
	border: 2px solid #d97706;
}

.luxury-widget__velvet-corner {
	position: absolute;
	width: 8px;
	height: 8px;
	background: #f59e0b;
	border-radius: 50%;
	animation: luxuryWidgetPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.luxury-widget__velvet-corner:nth-child(1) { top: 4px; left: 4px; animation-delay: 0.3s; }
.luxury-widget__velvet-corner:nth-child(2) { top: 4px; right: 4px; animation-delay: 0.4s; }
.luxury-widget__velvet-corner:nth-child(3) { bottom: 4px; right: 4px; animation-delay: 0.5s; }
.luxury-widget__velvet-corner:nth-child(4) { bottom: 4px; left: 4px; animation-delay: 0.6s; }

.luxury-widget__velvet-title {
	position: absolute;
	top: 33%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.luxury-widget__velvet-bar1 {
	height: 6px;
	width: 50%;
	background: #fbbf24;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 0.6s both;
}

.luxury-widget__velvet-bar2 {
	height: 4px;
	width: 35%;
	background: #f59e0b;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 0.8s both;
}

.luxury-widget__velvet-content {
	position: absolute;
	bottom: 33%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.luxury-widget__velvet-line {
	height: 2px;
	background: #cbd5e1;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.3s ease both;
}

.luxury-widget__velvet-line:nth-child(1) { width: 55%; animation-delay: 1s; }
.luxury-widget__velvet-line:nth-child(2) { width: 45%; animation-delay: 1.15s; }

.luxury-widget__velvet-ribbon {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 4px;
	animation: luxuryWidgetFadeUp 0.4s ease 1.3s both;
}

.luxury-widget__velvet-strip {
	width: 6px;
	height: 24px;
	border-radius: 999px;
}

.luxury-widget__velvet-strip--light { background: #fbbf24; }
.luxury-widget__velvet-strip--gold { background: #f59e0b; }

.luxury-widget__cert--ornate {
	background: #fffbeb;
}

.luxury-widget__ornate-border {
	position: absolute;
	inset: 12px;
	border: 3px double #d97706;
	border-radius: 8px;
	animation: luxuryWidgetFadeIn 0.3s ease 0.2s both;
}

.luxury-widget__ornate-deco {
	position: absolute;
	background: #f59e0b;
	border-radius: 999px;
}

.luxury-widget__ornate-top { top: -1px; left: 50%; transform: translateX(-50%); width: 24px; height: 8px; animation: luxuryWidgetGrowX 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both; }
.luxury-widget__ornate-bottom { bottom: -1px; left: 50%; transform: translateX(-50%); width: 24px; height: 8px; animation: luxuryWidgetGrowX 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both; }
.luxury-widget__ornate-left { top: 50%; left: -1px; transform: translateY(-50%); width: 8px; height: 24px; animation: luxuryWidgetGrowY 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both; }
.luxury-widget__ornate-right { top: 50%; right: -1px; transform: translateY(-50%); width: 8px; height: 24px; animation: luxuryWidgetGrowY 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both; }

.luxury-widget__ornate-center {
	position: absolute;
	top: 33%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.luxury-widget__ornate-seal {
	width: 56px;
	height: 56px;
	border: 2px solid #d97706;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: luxuryWidgetSpinIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.luxury-widget__ornate-seal-inner {
	width: 32px;
	height: 32px;
	background: #fbbf24;
	border-radius: 50%;
}

.luxury-widget__ornate-bar {
	height: 4px;
	width: 45%;
	background: #d97706;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 1s both;
}

.luxury-widget__cert-inner--badge {
	inset: 16px;
	border: 2px solid #1e40af;
}

.luxury-widget__badge-emblem {
	position: absolute;
	top: 32px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	animation: luxuryWidgetSpinIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.luxury-widget__badge-base {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #3b82f6, #1e40af);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.luxury-widget__badge-ray {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 10px;
	background: #60a5fa;
	transform-origin: center;
}

.luxury-widget__badge-ray:nth-child(2) { transform: translate(-50%, -50%) rotate(0deg) translateY(-25px); }
.luxury-widget__badge-ray:nth-child(3) { transform: translate(-50%, -50%) rotate(45deg) translateY(-25px); }
.luxury-widget__badge-ray:nth-child(4) { transform: translate(-50%, -50%) rotate(90deg) translateY(-25px); }
.luxury-widget__badge-ray:nth-child(5) { transform: translate(-50%, -50%) rotate(135deg) translateY(-25px); }
.luxury-widget__badge-ray:nth-child(6) { transform: translate(-50%, -50%) rotate(180deg) translateY(-25px); }
.luxury-widget__badge-ray:nth-child(7) { transform: translate(-50%, -50%) rotate(225deg) translateY(-25px); }
.luxury-widget__badge-ray:nth-child(8) { transform: translate(-50%, -50%) rotate(270deg) translateY(-25px); }
.luxury-widget__badge-ray:nth-child(9) { transform: translate(-50%, -50%) rotate(315deg) translateY(-25px); }

.luxury-widget__badge-center {
	position: absolute;
	inset: 16px;
	border-radius: 50%;
	background: #dbeafe;
	border: 2px solid #1e40af;
	animation: luxuryWidgetScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.luxury-widget__badge-title {
	position: absolute;
	bottom: 33%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.luxury-widget__badge-bar1 {
	height: 4px;
	width: 50%;
	background: #1e40af;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 0.9s both;
}

.luxury-widget__badge-bar2 {
	height: 4px;
	width: 35%;
	background: #3b82f6;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 1.1s both;
}

.luxury-widget__badge-ribbon {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	animation: luxuryWidgetFadeUp 0.4s ease 1.3s both;
}

.luxury-widget__badge-ribbon-strip {
	width: 8px;
	height: 32px;
	border-radius: 4px;
}

.luxury-widget__badge-ribbon-strip--blue { background: #3b82f6; }
.luxury-widget__badge-ribbon-strip--light { background: #60a5fa; }

.luxury-widget__cert--premium {
	background: linear-gradient(135deg, #7c2d12 0%, #431407 100%);
}

.luxury-widget__premium-texture {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.1) 4px);
}

.luxury-widget__premium-inner {
	position: absolute;
	inset: 24px;
	border-radius: 8px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border: 2px solid #d97706;
	animation: luxuryWidgetScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.luxury-widget__premium-frame {
	position: absolute;
	inset: 12px;
	border: 1px solid #f59e0b;
	border-radius: 6px;
}

.luxury-widget__premium-seal {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: radial-gradient(circle, #fbbf24 0%, #f59e0b 100%);
	box-shadow: 0 2px 8px rgba(217, 119, 6, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: luxuryWidgetSpinIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.luxury-widget__premium-seal-inner {
	width: 28px;
	height: 28px;
	background: #d97706;
	border-radius: 50%;
}

.luxury-widget__premium-content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.luxury-widget__premium-bar1 {
	height: 6px;
	width: 45%;
	background: #d97706;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 0.8s both;
}

.luxury-widget__premium-bar2 {
	height: 4px;
	width: 30%;
	background: #f59e0b;
	border-radius: 999px;
	animation: luxuryWidgetGrowX 0.4s ease 1s both;
}

.luxury-widget__premium-clasp {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 16px;
	background: #f59e0b;
	border: 1px solid #d97706;
	border-radius: 8px 8px 0 0;
	animation: luxuryWidgetGrowY 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

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

.luxury-widget__dot-item,
.luxury-widget__dot-item:hover,
.luxury-widget__dot-item:focus,
.luxury-widget__dot-item:focus-visible,
.luxury-widget__dot-item:active {
	appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	box-shadow: none;
	outline: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

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

.luxury-widget__dot.active {
	width: 24px;
	background: #1d4ed8;
}

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

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

@keyframes luxuryWidgetCertEntry { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes luxuryWidgetFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes luxuryWidgetFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes luxuryWidgetPopIn { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes luxuryWidgetScaleIn { from { transform: scale(0.85); } to { transform: scale(1); } }
@keyframes luxuryWidgetSpinIn { from { transform: scale(0) rotate(-180deg); } to { transform: scale(1) rotate(0); } }
@keyframes luxuryWidgetGrowX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes luxuryWidgetGrowY { from { transform: scaleY(0); } to { transform: scaleY(1); } }

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

	.luxury-widget__card {
		height: 470px;
	}
}

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

	.luxury-widget__card {
		height: 450px;
	}

	.luxury-widget__panel {
		padding: 18px;
	}
}


body.astra-child-material-page .inner-page .inner-cta.inner-cta--luxury .section-header__title {
	color: #fff !important;
}

body.astra-child-material-page .inner-page .inner-cta.inner-cta--luxury .inner-cta__text {
	color: rgba(255, 255, 255, 0.75) !important;
}
