﻿/* =============================================================================
   C:\VinDXit\frontend\styles\base.css
   VinDXit Base (Readable & Annotated)
   -----------------------------------------------------------------------------
   â€¢ Tabs for indentation (project standard)
   â€¢ Ordered: Variables â†’ Keyframes â†’ Reset â†’ Layout â†’ Components â†’ Theme â†’ Utils
   â€¢ De-duplicated selectors; preserved behaviors from your snippets
   ============================================================================= */


/* ============================================================================
	1) GLOBAL TOKENS
   ============================================================================ */

:root {
	/* Brand palette */
	--VinDXit-blue: #0047AB;
	--VinDXit-sky: #00AEEF;
	--VinDXit-yellow: #FFCC00;
	--VinDXit-silver: #C0C0C0;
	--VinDXit-dark: #002F6C;

	/* N64 skin palette */
	--n64-blue: #0055ff;
	--n64-red: #e60012;
	--n64-green: #00a030;
	--n64-yellow: #ffd400;
	--n64-dark: #0a0f1c;
	--n64-panel: #121a2a;
	--n64-panel-2: #1d2a44;

	/* XP blues (used in gradients/effects) */
	--xp-blue-700: #245edb;
	--xp-blue-600: #2d6ae3;
	--xp-blue-500: #3a7bf2;
	--xp-blue-300: #8db2e3;
	--xp-blue-200: #cde0ff;
	--xp-ink: #0b1220;
	--xp-ink-soft: #1f2a44;
	--xp-panel-900: #0c1324;
	--xp-panel-800: #111a2f;
	--xp-panel-700: #17213b;
	--xp-panel-650: #1b2645;
	--xp-green: #2aa84;

	/* Type scale */
	--base-font: clamp(17px, 1.4vw + 14px, 20px);
	--title-font: clamp(24px, 1.6vw + 18px, 32px);

	/* Surfaces / FX */
	--card-radius: 22px;
	--card-width: clamp(320px, 70vw, 760px);
	--card-min-h: 180px;

	--glow: 0 0 .75rem rgba(0,85,255,.35);
	--glow-strong: 0 0 1.25rem rgba(0,85,255,.55);
	--shadow: 0 10px 28px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.35) inset;
	--bevel: inset 0 2px 0 rgba(255,255,255,.07), inset 0 -2px 0 rgba(0,0,0,.35);
}


/* ============================================================================
	2) KEYFRAMES
   ============================================================================ */

@keyframes animatedBackground {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes skyShift {
	0% { filter: hue-rotate(0deg); }
	100% { filter: hue-rotate(20deg); }
}

@keyframes titleBob {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

@keyframes pulseRecall {
	0%, 100% { text-shadow: 0 0 6px rgba(255, 0, 0, 0.5); transform: scale(1); }
	50% { text-shadow: 0 0 14px rgba(255, 0, 0, 1); transform: scale(1.02); }
}

/* Slide-in animation used by reasons card */
@keyframes vxFadeSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }


/* ============================================================================
	3) BASE ELEMENTS & RESET
   ============================================================================ */

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	font-size: var(--base-font);
	line-height: 1.55;
	color: #e6f0ff;
	background:
		radial-gradient(1200px 600px at 50% 120%, rgba(0,0,0,.55), transparent 60%) no-repeat,
		linear-gradient(180deg, #1e6aff 0%, #1a4fff 40%, #1437b5 75%, #0c1b4a 100%);
	background-size: 400% 400%;
	animation: animatedBackground 15s ease infinite;
	display: flex;
	flex-direction: column;
	text-align: center;
	overflow-x: hidden;
}

/* Floor grid sheen */
body::before {
	content: "";
	position: fixed;
	inset: 55vh 0 0 0;
	pointer-events: none;
	background: repeating-conic-gradient(from 45deg, rgba(255,255,255,.06) 0 25%, rgba(0,0,0,.06) 0 50%) 0 0/80px 80px;
	transform: perspective(800px) rotateX(55deg);
	filter: blur(1px) saturate(1.2);
	opacity: .55;
}

/* Ambient color daubs */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(18vmax 12vmax at 10% -10%, rgba(255,212,0,.10), transparent 60%),
		radial-gradient(14vmax 10vmax at 90% 10%, rgba(0,160,48,.12), transparent 60%),
		radial-gradient(20vmax 16vmax at 50% -20%, rgba(230,0,18,.10), transparent 70%);
	mix-blend-mode: screen;
	animation: skyShift 18s ease-in-out infinite alternate;
}

html { -ms-touch-action: manipulation; touch-action: manipulation; }

/* Mobile input zoom fix */
input, select, textarea {
	font-size: 16px !important;
	width: 100%;
	box-sizing: border-box;
}

ul { list-style: none; padding-left: 0; }

.hidden { display: none !important; }


/* ============================================================================
	4) LAYOUT: HEADER & NAV
   ============================================================================ */

header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;			/* Center contents horizontally */
	padding: 10px 14px;
	min-height: 80px;
	background: linear-gradient(180deg, rgba(20,31,58,.92), rgba(6,10,22,.75));
	border-bottom: 2px solid rgba(255,255,255,.06);
	box-shadow: 0 8px 18px rgba(0,0,0,.35);
}

/* ðŸŸ£ **TASK (in pink): Make header logo centered in DOS theme** */
.logo-link {
	margin: 0 auto;                      /* Push logo to center */
	display: flex;
	align-items: center;
	justify-content: center;             /* Ensure flex aligns center */
}

.logo-img {
	display: block;
	margin: 0 auto;                      /* Extra safeguard for centering */
	height: 250px;                       /* unit-fixed */
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   ðŸ’— **TASK**: Enlarge logo on desktop by 25%
   - Only affects wider viewports
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 901px) {
	header {
		height: 150px;              /* lock header height */
		min-height: 150px;          /* reinforce min height */
	}
	.logo-img {
		height: 250px;             /* keep intrinsic size (desktop baseline) */
	}
}

/* Decorative underline (kept) */
nav a {
	position: relative;
	text-decoration: none;
}
nav a:hover::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background: var(--VinDXit-yellow);
	bottom: -4px;
	left: 0;
}
button:not(#menu-toggle, #menu-close, .menu-item), .button, .ux-btn, .sort-btn, .delete-btn, .cmp-primary, .n64-green {
  height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.25);
  font-weight: 900;
  letter-spacing: .25px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(12,19,36,.28), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .05s ease, filter .12s ease, box-shadow .18s ease;
  cursor: pointer;
}

/* ============================================================================
	5) GENERAL LAYOUT CONTAINERS
   ============================================================================ */

.full-height-main { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.container { flex: 1; max-width: 100%; margin: 2rem auto; padding: 0 1.5rem; width: 100%; }
.input-wrapper { display: flex; width: 100%; max-width: 100%; }

.garage-toolbar,
#garageList,
.bulk-toolbar {
	width: 95vw;
	max-width: 95vw;
	margin: 0 auto;
	box-sizing: border-box;
	border-radius: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.garage-toolbar {
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 20px 20px;
	margin: 8px auto 12px;
}

.bulk-toolbar { padding: 10px 14px; }


/* ============================================================================
	6) TITLES
   ============================================================================ */

h1 {
	margin: 20px auto 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-family: "Russo One", "Kanit", sans-serif;
	font-weight: 900;
	font-size: clamp(40px, 3.5vw + 26px, 64px);
	color: #fff;
	text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 0 18px rgba(0,85,255,.45);
	transform: translateZ(0);
	animation: titleBob 3.2s ease-in-out infinite;
}
h1 span { display: inline-block; transform: perspective(400px) rotateX(6deg); }
.subh1 { color: var(--VinDXit-yellow); text-align: center; }


/* ============================================================================
	7) RESULTS & SCORE PRESENTATION
   ============================================================================ */

#resultSection {
	position: relative;
	transform: none;
	left: auto;
	top: auto;
	width: 94%;
	max-width: 720px;
	margin: 1rem auto;
	padding: 1rem;
	box-sizing: border-box;
}

/* Expandable â€œWhy this score?â€ card */
.vx-reasons {
	background: #fff;
	border: 1px solid #000;
	border-radius: 18px;
	box-shadow:
		10px 12px 0 rgba(0,0,0,.10),
		18px 22px 34px rgba(0,0,0,.28);
	max-width: 700px;
	margin: 1rem auto;
	overflow: hidden;
	text-align: left;
	color: #000;
}

.vx-reasons > summary {
	font-size: 3rem;
	color: #000;
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: 4rem 1.25rem;
	user-select: none;
}

/* Caret rotation */
.vx-reasons > summary .vx-caret {
	order: -1;
	display: inline-block;
	width: 1em;
	text-align: center;
	transform: rotate(0);
	transition: transform .2s ease;
}
.vx-reasons[open] > summary .vx-caret { color: #000; transform: rotate(180deg); }

/* Accordion blocks inside reasons */
.vx-reasons details.why-block {
	margin: .4rem 0;
	border-top: 1px solid rgba(0,0,0,.08);
	padding-top: .2rem;
}
.vx-reasons details.why-block:first-child { border-top: 0; padding-top: 0; }
.vx-reasons details.why-block > summary {
	cursor: pointer;
	font-weight: 700;
	list-style: none;
	display: flex;
	align-items: center;
	gap: .45rem;
	outline: none;
}
.vx-reasons details.why-block > summary::-webkit-details-marker { display: none; }
.vx-reasons details.why-block > summary::before {
content: '▸';
display: inline-block;
transform: rotate(0deg);
transition: transform .18s ease;
opacity: .95;
}
.vx-reasons details.why-block[open] > summary::before { transform: rotate(-90deg); }
.vx-reasons details.why-block > summary:focus-visible {
	outline: 2px solid rgba(0,0,0,.35);
	outline-offset: 2px;
	border-radius: 6px;
}
.vx-reasons details.why-block > ul {
	margin: .4rem 0 .25rem 1.1rem;
	padding-left: 0;
	list-style: none;
}

/* Card body inside reasons (moved from base-logo-motion.css) */
.vx-reasons .reasons-card { padding: 1rem 1.25rem; border-top: 1px solid rgba(0,0,0,.12); animation: vxFadeSlide .25s ease both; }
.vx-reasons .reasons-card ul { color: #000; margin: 0; padding-left: 1rem; list-style: none; }
.vx-reasons .reasons-card li { margin: .35rem 0; }

/* Make ALL nested lists match safety style */
.vx-reasons details ul > li {
	position: relative;
	padding-left: 1.5rem;
	margin: .2rem 0;
}
.vx-reasons details ul > li::before {
	content: "🦴";
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(1px);
}


/* ============================================================================
	8) LIST STYLES (Dog-bone motif)
   ============================================================================ */

/* Base bone list */
.bone-bullets { text-align: left; color: #000; }
.bone-bullets li {
	list-style: none;
	position: relative;
	padding-left: 1.6rem;
	margin: .35rem 0;
	color: #000;
}
.bone-bullets li::before {
	content: "🦴";
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(2px);
}

/* Safety section uses bone markers */
.safety-section { text-align: left; color: #000; }
.safety-section ul { list-style: none; padding-left: 1.25rem; color: var(--VinDXit-yellow); }
.safety-section li {
	position: relative;
	padding-left: 1.5rem;
	margin: .35rem 0;
	color: #000;
}
.safety-section li::before {
	content: "🦴";
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(1px);
}
.safety-section summary { font-weight: 600; cursor: pointer; color: #000; }

/* Keep dog-bone bullets in the main reasons list */
#ladyReasonList.bone-bullets > li::before {
	content: "🦴";
	left: -1.25rem;
	top: 0;
	line-height: 1;
	opacity: 1;
	transform: translateY(2px);
}

/* Bones for nested lists inside details */
#ladyReasonList details ul {
	margin: 0.25rem 0 0.5rem 1.1rem;
	padding-left: 0;
	list-style: none;
}
#ladyReasonList details ul > li {
	position: relative;
	padding-left: 1.5rem;
	margin: 0.2rem 0;
}
#ladyReasonList details ul > li::before {
	content: "🦴";
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(1px);
}


/* ============================================================================
	9) CRASH-TEST PANEL (Group 20 UI)
   ============================================================================ */

#vxCrashPanel {
	background: #fff;
	border: 2px solid #000;
	border-radius: 18px;
	box-shadow:
		10px 12px 0 rgba(0,0,0,.10),
		18px 22px 34px rgba(0,0,0,.28);
	max-width: 700px;
	margin: 1.5rem auto;
	padding: 1.5rem 1.75rem;
	text-align: left;
	color: #000;
}

#vxCrashPanel h3 {
	font-size: 1.75rem;
	font-weight: 800;
	margin: 0 0 .75rem 0;
	color: #000;
	text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

/* Crash list uses stars */
#vxCrashList { list-style: none; padding-left: 1.25rem; color: #000; }
#vxCrashList li {
	position: relative;
	padding-left: 1.5rem;
	margin: .4rem 0;
	font-weight: 600;
}
#vxCrashList li::before {
	content: "â­";
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(1px);
	opacity: .9;
}
/* Half-star entries via PNG */
#vxCrashList li.half-star::before {
	content: "";
	width: 1em;
	height: 1em;
	display: inline-block;
	background: url("/assets/images/star.png") center/contain no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(2px);
}

/* Optional accordion variant inside reasons */
.vx-reasons .crash-section > summary { color: var(--n64-green); }


/* ============================================================================
	10) RECALL ALERT (VIN-aware warnings)
   ============================================================================ */

.recall-alert {
	color: #ff4d4d !important;
	font-weight: 700;
	text-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
	animation: pulseRecall 2s ease-in-out infinite;
}
.bone-bullets li.recall-alert::before {
	content: "🚨";
	font-size: 1rem;
	position: absolute;
	left: -1.25rem;
	top: 0;
	transform: translateY(2px);
}


/* ============================================================================
	11) THEME: N64 SKIN
   ============================================================================ */

.n64-skin {
	color: #e6f0ff;
	min-height: 100%;
	background:
		radial-gradient(1200px 600px at 50% 120%, rgba(0,0,0,.55), transparent 60%) no-repeat,
		linear-gradient(180deg, #1e6aff 0%, #1a4fff 40%, #1437b5 75%, #0c1b4a 100%);
}


/* ============================================================================
	12) COMPONENT SCALES & MISC
   ============================================================================ */

.car-card, .cmp-card { max-width: 100%; padding: 10px; border-radius: 14px; box-sizing: border-box; }
.car-row { gap: 8px; }
.car-main { gap: 8px; }
.car-select { width: 20px; height: 20px; }
.paw-btn { width: 36px; height: 36px; border-radius: 12px; }
.paw-icon { width: 20px; height: 20px; }
.cmp-wrap { display: block; padding: 0 10px; }
.cmp-col { margin-bottom: 16px; }
.cmp-middle { padding: 0 10px; }
.cmp-actions { gap: 10px; flex-direction: column; align-items: stretch; }
.cmp-actions .cmp-primary { width: 100%; }




#vxTechPanel {
	display: none;
	max-width: 720px;
	margin: 12px auto 18px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid rgba(0,0,0,.12);
	box-shadow: 0 8px 20px rgba(0,0,0,.12);
	color: #000;
}

.vx-tech h3 {
	margin: 0 0 8px 0;
	font-family: "Russo One","Kanit",system-ui,-apple-system,sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	letter-spacing: .2px;
	color: #0b1220;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.vx-tech-group {
	margin: .4rem 0;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 10px;
	padding: .25rem .6rem;
	background: #fff;
}
.vx-tech-group>summary { cursor: pointer; outline: none; font-weight: 700; color: #0b1220; }

.vx-tech-list {
	list-style: none;
	padding: 0;
	margin: 6px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vx-tech-item {
	background: rgba(0,0,0,.035);
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 10px;
	padding: 8px 10px;
	line-height: 1.35;
	color: #000;
}
.vx-tech-title { font-weight: 600; color: #0b1220; display: block; }
.vx-tech-reason { opacity: .92; font-size: .98rem; margin-top: 2px; color: #000; }

@media (max-width: 560px) {
	#vxTechPanel { padding: 12px; }
}
/* Transmission dropdown visual cue */
.transmission-section summary {
	cursor: pointer;
	list-style: none;
}
.transmission-section summary::marker { content: ''; } /* hide default if present */
.transmission-section summary::before {
	content: '▸';
	display: inline-block;
	margin-right: .5rem;
	transition: transform .2s ease;
}
.transmission-section[open] summary::before {
	transform: rotate(90deg);
}
/* Indented blue explanations (match safety) */
.transmission-section li span {
	display: block;
	margin-left: 4rem;
	color: #000dfa;
	font-weight: 400;
}
/* =============================================================================
   13) TECHNOLOGY & CONNECTIVITY (matches safety/crash look)
   ============================================================================= */

.technology-section { text-align: left; color: #000; }
.technology-section summary {
	cursor: pointer;
	list-style: none;
	font-weight: 700;
}
.technology-section summary::marker { content: ''; } /* hide default marker */
.technology-section summary::before {
	content: '▸';
	display: inline-block;
	margin-right: .5rem;
	transition: transform .2s ease;
}
.technology-section[open] summary::before { transform: rotate(90deg); }

.technology-section li span {
	display: block;
	margin-left: 4rem;
	color: #000dfa;
	font-weight: 400;
}


/* nested Included / Premium subgroups */
.tech-subgroup { 
	margin:.4rem 0; 
	border:1px solid rgba(0,0,0,.08); 
	border-radius:10px; 
	padding:.25rem .6rem; 
	background:#fff; 
}
.tech-subgroup > summary { cursor:pointer; font-weight:700; list-style:none; }
.tech-subgroup > summary::marker { content:''; }
.tech-subgroup > summary::before {
	content:'▾';
	display:inline-block;
	margin-right:.4rem;
	transform: rotate(0deg);
	transition: transform .18s ease;
	opacity:.95;
}
.tech-subgroup[open] > summary::before { transform: rotate(-90deg); }
.tech-subgroup ul { 
	list-style:none; 
	margin:.25rem 0 .5rem 1.1rem; 
	padding-left:0; 
}
.tech-subgroup li {
	position:relative; 
	padding-left:1.5rem; 
	margin:.2rem 0;
}
.tech-subgroup li::before {
	content:"🦴";
	position:absolute; left:0; top:0; transform: translateY(1px);
}

/* make sure tech bullets dedupe nicely with main list bone style already present */
/* =============================================================================
   15) VERDICT TWEAKS (small helpers used by JS)
   ============================================================================= */

.lady-intro-line { 
	font-weight: 800; 
	margin: .25rem auto .5rem; 
	text-shadow: 0 1px 0 rgba(255,255,255,.55);
	color: #fff;
}
#ladyVerdictText p { margin: .35rem 0 .55rem; }

.vx-linklike {
	background: none;
	border: none;
	padding: 0;
	color: var(--VinDXit-sky);
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}
.vx-linklike:hover { filter: brightness(1.1); }










/* Engine & Powertrain dropdown visuals */
.engine-section summary {
	cursor: pointer; list-style: none; font-weight: 700;
}
.engine-section summary::marker { content: ''; }
.engine-section summary::before { content: '▸'; display: inline-block; margin-right: .5rem; transition: transform .2s ease; }
.engine-section[open] summary::before { transform: rotate(90deg); }
.engine-section li span { display: block; margin-left: 4rem; color: #000dfa; font-weight: 400; }
.VinDXit-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(240,240,240,0.95) 100%);
	border: 2px solid rgba(255, 208, 0, 0.8);
	border-radius: 20px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	padding: 1.5rem;
	margin: 1.5rem auto;
	max-width: 700px;
	transition: all 0.25s ease;
}

.VinDXit-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.static-card { cursor: default; }

.warranty-summary {
	font-size: 1rem;
	line-height: 1.6;
	color: #1f1f1f;
	margin: 0 0 0.75rem;
}

.warranty-bullets {
	list-style: disc;
	padding-left: 1.25rem;
	margin: 0 0 0.75rem;
	color: #1f1f1f;
}

.warranty-bullets li {
	margin-bottom: 0.5rem;
}

.warranty-legal {
	text-align: center;
	font-size: 0.78rem;
	color: #333;
	opacity: 0.7;
	margin: 0;
}

#warranty-card h2 {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	color: #2b2b2b;
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
}

.VinDXit-card-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	color: #222;
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.price-values {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: left;
}
.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0.75rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.price-label {
	font-weight: 600;
	color: #333;
}
.price-amount {
	font-weight: 700;
	color: #007BFF;
	font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
	.VinDXit-card {
		max-width: 90%;
		padding: 1rem;
	}
	.VinDXit-card-title {
		font-size: 1.2rem;
	}
}

.VinDXit-legal{
	text-align: center;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 300;
	opacity: 0.6;
	margin: 2rem auto 0.5rem;
	line-height: 1.3;
	max-width: 80%;
}
.legal-p{
	color: white;
}
      .cmp-primary, .vx-btn{
        font-size: 1.5rem;
      }
      .score-title{
        color: rgb(0, 0, 0);
		font-size: xx-large;
      }