@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Cormorant+Garamond:wght@600;700&display=swap");

.cv2-ship {
	--ship-bg: #FBF4F2;
	--ship-primary: #9D1A4C;
	--ship-primary-hover: #851540;
	--ship-plum: #3A1230;
	--ship-text: #5B4A52;
	--ship-label: #8B7A81;
	--ship-rose: #F8E9EC;
	--ship-rose2: #FBEEF1;
	--ship-green: #1F7A3B;
	--ship-green-bg: #EAF3EC;
	--ship-green-pill: #D8EADE;
	--ship-border: #F0DEE3;
	--ship-input: #E7D7DC;
	--ship-ph: #B9AAB0;
	--ship-font: "Nunito", "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
	--ship-display: "Cormorant Garamond", Georgia, serif;
	position: fixed;
	inset: 0;
	z-index: 12050;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 48px 20px;
	font-family: var(--ship-font);
	color: var(--ship-text);
	-webkit-font-smoothing: antialiased;
}
.cv2-ship[hidden] { display: none !important; }
.cv2-ship__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(58, 18, 48, 0.55);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.cv2-ship__dialog {
	position: relative;
	z-index: 1;
	background: var(--ship-bg);
	border-radius: 24px;
	width: 100%;
	max-width: 720px;
	max-height: calc(100vh - 64px);
	overflow: auto;
	box-shadow: 0 30px 80px rgba(58, 18, 48, 0.35);
	outline: none;
}
.cv2-ship__head {
	background: #fff;
	padding: 24px 28px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid var(--ship-border);
	position: sticky;
	top: 0;
	z-index: 2;
}
.cv2-ship__eye {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ship-label);
	margin-bottom: 6px;
}
.cv2-ship__title {
	font-family: var(--ship-display);
	font-weight: 700;
	font-size: 30px;
	color: var(--ship-plum);
	margin: 0;
	letter-spacing: -0.01em;
	line-height: 1.1;
}
.cv2-ship__intro {
	font-size: 15px;
	margin: 8px 0 0;
	color: var(--ship-text);
}
.cv2-ship__x {
	flex: none;
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
	border-radius: 50%;
	border: 1px solid var(--ship-border);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ship-plum);
	cursor: pointer;
	padding: 0;
}
.cv2-ship__x:hover { background: var(--ship-rose2); }
.cv2-ship__body {
	padding: 22px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.cv2-ship__card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(58, 18, 48, 0.06);
	overflow: hidden;
}
.cv2-ship__card--form { padding: 22px; }
.cv2-ship__sec {
	padding: 18px 22px 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ship-label);
}
.cv2-ship__card--form .cv2-ship__sec { padding: 0 0 16px; }
.cv2-ship__zones { list-style: none; margin: 0; padding: 0; }
.cv2-ship__zone {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px 16px;
	padding: 14px 22px;
	border-top: 1px solid var(--ship-border);
}
.cv2-ship__zone-l {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1 1 160px;
	min-width: 0;
}
.cv2-ship__zone-ico {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--ship-rose);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: var(--ship-primary);
}
.cv2-ship__zone-name {
	min-width: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--ship-plum);
	overflow-wrap: anywhere;
}
.cv2-ship__zone-v {
	flex: 0 0 auto;
	margin-left: auto;
	font-size: 16px;
	font-weight: 800;
	color: var(--ship-primary);
	white-space: nowrap;
}
.cv2-ship__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
}
.cv2-ship__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}
.cv2-ship__lbl {
	font-size: 13px;
	font-weight: 800;
	color: var(--ship-plum);
}
.cv2-ship__field select,
.cv2-ship__amount input {
	height: 50px;
	border: 1px solid var(--ship-input);
	border-radius: 12px;
	padding: 0 14px;
	font-size: 16px;
	font-family: inherit;
	color: var(--ship-plum);
	background: #fff;
	width: 100%;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}
.cv2-ship__field select:focus,
.cv2-ship__amount input:focus {
	outline: none;
	border-color: var(--ship-primary);
	box-shadow: 0 0 0 3px rgba(157, 26, 76, 0.12);
}
.cv2-ship__amount input::placeholder { color: var(--ship-ph); }
.cv2-ship__amount {
	position: relative;
	display: flex;
	align-items: center;
}
.cv2-ship__amount input { padding-right: 42px; }
.cv2-ship__eur {
	position: absolute;
	right: 16px;
	font-size: 16px;
	font-weight: 700;
	color: var(--ship-label);
	pointer-events: none;
}
.cv2-ship__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
}
.cv2-ship__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 52px;
	padding: 0 28px;
	border-radius: 999px;
	border: 0;
	background: var(--ship-primary);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(157, 26, 76, 0.28);
}
.cv2-ship__btn:hover { background: var(--ship-primary-hover); color: #fff; }
.cv2-ship__btn-ico { display: flex; color: #fff; }
.cv2-ship__btn-ico svg { stroke: #fff; }
.cv2-ship__disc {
	font-size: 13px;
	color: var(--ship-label);
	flex: 1;
	min-width: 200px;
	margin: 0;
}
.cv2-ship__result {
	border-radius: 18px;
	padding: 22px;
	background: var(--ship-rose);
}
.cv2-ship__result.is-free { background: var(--ship-green-bg); }
.cv2-ship__result[hidden] { display: none !important; }
.cv2-ship__result-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.cv2-ship__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	background: var(--ship-rose2);
	color: var(--ship-primary);
	margin-bottom: 10px;
}
.cv2-ship__result.is-free .cv2-ship__pill {
	background: var(--ship-green-pill);
	color: var(--ship-green);
}
.cv2-ship__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}
.cv2-ship__msg {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	color: var(--ship-plum);
}
.cv2-ship__result-cost { text-align: right; }
.cv2-ship__cost-lbl {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ship-label);
	margin-bottom: 4px;
}
.cv2-ship__cost-val {
	font-family: var(--ship-display);
	font-weight: 700;
	font-size: 34px;
	line-height: 1;
	color: var(--ship-primary);
}
.cv2-ship__result.is-free .cv2-ship__cost-val { color: var(--ship-green); }
.cv2-ship__bar-wrap[hidden] { display: none !important; }
.cv2-ship__bar {
	height: 8px;
	border-radius: 999px;
	background: rgba(157, 26, 76, 0.14);
	margin: 18px 0 8px;
	overflow: hidden;
}
.cv2-ship__bar-fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: var(--ship-primary);
	transition: width 0.25s ease;
}
.cv2-ship__hint { font-size: 13px; color: var(--ship-text); }

body.cv2-ship-open { overflow: hidden; }

@media (max-width: 560px) {
	.cv2-ship { padding: 16px; align-items: flex-end; }
	.cv2-ship__dialog {
		max-height: calc(100vh - 24px);
		border-radius: 20px 20px 16px 16px;
	}
	.cv2-ship__head { padding: 20px 18px; }
	.cv2-ship__body { padding: 16px 18px 22px; }
	.cv2-ship__title { font-size: 26px; }
	.cv2-ship__result-top { flex-direction: column; align-items: flex-start; }
	.cv2-ship__result-cost { text-align: left; }
	.cv2-ship__btn { width: 100%; justify-content: center; }
	.cv2-ship__actions { flex-direction: column; align-items: stretch; }
}

/* Triggers outside the modal */
a[data-cv2-ship-open],
.cv2-pd-ship__calc a,
#cv2_row_ship_calc a {
	color: #9D1A4C;
	font-weight: 700;
	text-decoration: none;
}
a[data-cv2-ship-open]:hover,
.cv2-pd-ship__calc a:hover,
#cv2_row_ship_calc a:hover {
	color: #851540;
	text-decoration: underline;
}
#cv2_row_ship_calc {
	margin-top: -4px;
	margin-bottom: 8px;
	font-size: 13px;
}
.cv2-pd-ship__calc {
	margin-top: 10px;
}

/* Modal copy alignment: keep the result card centered. */
.cv2-ship__head,
.cv2-ship__head-copy,
.cv2-ship__sec,
.cv2-ship__card--form,
.cv2-ship__form,
.cv2-ship__field,
.cv2-ship__actions,
.cv2-ship__disc,
.cv2-ship__field select,
.cv2-ship__amount input {
	text-align: left;
}
.cv2-ship__actions {
	justify-content: flex-start;
	align-items: flex-start;
}
.cv2-ship__result {
	text-align: center;
}
