:root {
	--hej-red: #f2652b;
	--hej-red-dark: #d34f15;
	--hej-text: #2b2b2b;
	--hej-muted: #848484;
	--hej-bg: #f8f8f8;
	--hej-border: #e5e5e5;
}

body {
	margin: 0;
	font-family: 'Roboto', 'Maven Pro', Arial, sans-serif;
	color: var(--hej-text);
	background: #fff;
}

.hej-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

.hej-page h1 {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-weight: 700;
	font-size: 48px;
	color: var(--hej-text);
	margin: 0 0 12px;
	text-align: center;
}

.hej-intro {
	max-width: 720px;
	margin: 0 auto 32px;
	font-family: 'Roboto', 'Maven Pro', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--hej-muted);
	text-align: center;
}

.hej-packages {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 40px;
}

.hej-package {
	background: #fff;
	border: 1px solid var(--hej-border);
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	text-align: center;
    overflow: hidden;
}

.hej-package img {
	max-width: 280px;
	height: auto;
	border-radius: 8px;
	margin: 10px auto 20px;
}

.hej-package h3 {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 30px;
	font-weight: 600;
	margin: 0;
	color: var(--hej-text);
}

.hej-package .price, .hej-details-intro .price {
	font-size: 19px;
	font-weight: 700;
	/* color: var(--hej-red); */
	margin: 0;
}

.hej-package .price small, .hej-details-intro .price small {
	font-size: 16px;
	color: var(--hej-muted);
	font-weight: 400;
	margin-left: 4px;
}

.hej-package p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--hej-muted);
	margin: 0 0 20px;
}

.hej-package ul {
	list-style: none;
	padding: 0;
	margin: 0 auto 0px;
	width: fit-content;
	text-align: left;
}

.hej-package ul li {
	position: relative;
	padding-left: 32px;
	font-size: 21px;
	line-height: 1.5;
	color: var(--hej-red);
	margin-bottom: 0px;
}

.hej-package ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-image: url(/assets/images/icon-checkbox.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

@media (min-width: 769px) {
	.hej-package ul {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.hej-package ul li {
		line-height: 1.15;
		margin-bottom: 10px;
		min-width: 250px;
		max-width: 250px;
	}
	.hej-package ul li::before {
		top: 12px;
	}
}

.hej-package .hej-buy-wrap {
	margin-top: auto;
}

.hej-buy-card {
	width: 100%;
	padding: 12px 24px;
	font-size: 16px;
}

.hej-package-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
    height: 100%;
}

.hej-package-wrap .hej-package {
	width: 100%;
    height: 100%;
}

.hej-details-link {
	display: block;
	width: fit-content;
	margin: 14px auto 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--hej-red);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	padding-bottom: 1px;
	transition: border-color .15s ease, color .15s ease;
}

.hej-details-link:hover,
.hej-details-link:focus-visible {
	color: var(--hej-red-dark);
	border-bottom-color: var(--hej-red-dark);
	outline: none;
}

.hej-details-link::after {
	content: ' \2192';
}

.hej-info {
	background: var(--hej-bg);
	border-radius: 12px;
	padding: 28px;
	margin-bottom: 28px;
}

.hej-info p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hej-text);
	margin: 0;
}

.hej-buy-wrap {
	text-align: center;
}

.hej-buy {
	display: inline-block;
	background: var(--hej-red);
	color: #fff;
	border: none;
	padding: 14px 56px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	letter-spacing: .5px;
	transition: background .2s ease;
    width: 80%;
}

.hej-buy:hover {
	background: var(--hej-red-dark);
}

.hej-buy:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.hej-back-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--hej-muted);
	text-decoration: none;
	margin-bottom: 24px;
	transition: color .15s ease;
}

.hej-back-link:hover,
.hej-back-link:focus-visible {
	color: var(--hej-red);
	outline: none;
}

.hej-details-card {
	background: #fff;
	border: 1px solid var(--hej-border);
	border-radius: 12px;
	overflow: hidden;
}

.hej-details-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 40px;
	padding: 32px;
	align-items: center;
	background: #fff;
}

.hej-details-media {
	margin: 0;
    overflow: hidden;
    background: #fff;
}

.hej-details-media img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

.hej-details-media figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--hej-muted);
	text-align: center;
}

.hej-details-intro h1 {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: var(--hej-text);
	margin: 0 0 3px;
	text-align: left;
}

.hej-details-intro .lead {
	font-size: 17px;
	line-height: 1.5;
	color: var(--hej-text);
	margin: 0 0 24px;
	font-weight: 500;
}

.hej-details-intro .hej-buy-wrap {
	text-align: left;
}

.hej-details-intro ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.hej-details-intro ul li {
	position: relative;
	padding-left: 32px;
	font-size: 23px;
	line-height: 1.5;
	color: var(--hej-red);
	margin-bottom: 0px;
}

.hej-details-intro ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-image: url(/assets/images/icon-checkbox.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.hej-details-body {
	padding: 32px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--hej-text);
}

.hej-details-body h2,
.hej-details-body h3 {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	color: var(--hej-text);
	margin: 24px 0 12px;
}

.hej-details-body h2 { font-size: 22px; }
.hej-details-body h3 { font-size: 18px; }

.hej-details-body p { margin: 0 0 16px; }
.hej-details-body p:last-child { margin-bottom: 0; }

.hej-details-body a {
	color: var(--hej-red);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.hej-details-body a:hover { color: var(--hej-red-dark); }

.hej-details-body ul,
.hej-details-body ol {
	margin: 0 0 16px;
	padding-left: 22px;
}

.hej-details-body li { margin-bottom: 6px; }

.hej-details-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.hej-form-page .hej-details-card {
	margin: 0 auto;
}

.hej-form-header {
	padding: 22px 32px;
	background: var(--hej-bg);
	border-bottom: 1px solid var(--hej-border);
}

.hej-summary-label {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .8px;
	color: var(--hej-muted);
	margin-bottom: 12px;
}

.hej-summary {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
    border: 1px solid var(--hej-border);
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
}

.hej-summary-img {
	width: 90px;
	object-fit: cover;
	background: #fff;
	display: block;
}

.hej-summary-info {
	min-width: 0;
}

.hej-summary-name {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--hej-text);
	margin-bottom: 4px;
}

.hej-summary-desc {
	font-size: 13px;
	line-height: 1.4;
	color: var(--hej-muted);
}

.hej-summary-desc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hej-summary-desc ul li {
	position: relative;
	padding-left: 22px;
	color: var(--hej-red);
	margin-bottom: 4px;
}

.hej-summary-desc ul li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hej-red);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.hej-summary-price {
	font-size: 22px;
	font-weight: 700;
	color: var(--hej-red);
	white-space: nowrap;
    margin-right: 15px;
}

.hej-summary-price small {
	font-size: 12px;
	color: var(--hej-muted);
	font-weight: 400;
	margin-left: 3px;
}

.hej-form {
	padding: 28px 32px 32px;
}

.hej-field {
	margin-bottom: 18px;
}

.hej-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--hej-text);
	margin-bottom: 6px;
	letter-spacing: .2px;
}

.hej-field input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	color: var(--hej-text);
	background: #fff;
	border: 1px solid var(--hej-border);
	border-radius: 8px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.hej-field input:focus {
	outline: none;
	border-color: var(--hej-red);
	box-shadow: 0 0 0 3px rgba(242, 101, 43, 0.15);
}

.hej-field input.is-invalid,
.hej-field input.is-invalid:focus {
	border-color: var(--hej-red);
	box-shadow: 0 0 0 3px rgba(242, 101, 43, 0.15);
}

.hej-field .invalid-feedback {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.3;
	color: var(--hej-red);
}

.hej-field-check {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 22px;
}

.hej-field-check .invalid-feedback {
	flex-basis: 100%;
	margin-top: 4px;
}

.hej-field-check input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin: 1px 10px 0 0;
	padding: 0;
	background: #fff;
	border: 2px solid var(--hej-border);
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.hej-field-check input[type="checkbox"]:hover {
	border-color: var(--hej-red);
}

.hej-field-check input[type="checkbox"].is-invalid {
	border-color: var(--hej-red);
	box-shadow: 0 0 0 3px rgba(242, 101, 43, 0.15);
}

.hej-field-check input[type="checkbox"]:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(242, 101, 43, 0.25);
}

.hej-field-check input[type="checkbox"]:checked {
	background: var(--hej-red);
	border-color: var(--hej-red);
}

.hej-field-check input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.hej-terms-link {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--hej-red);
	text-decoration: none;
	border-bottom: 1px solid var(--hej-border);
	padding-bottom: 1px;
    padding-left: 5px;
    padding-right: 5px;
	transition: border-color .15s ease, color .15s ease;
}

.hej-terms-link:hover,
.hej-terms-link:focus-visible {
	color: var(--hej-text);
	border-bottom-color: var(--hej-text);
	outline: none;
}

.hej-form .hej-buy-wrap {
	text-align: center;
	margin-top: 24px;
}

.hej-form .hej-buy {
	width: 100%;
}

.hej-alert {
	max-width: 720px;
	margin: 0 auto 24px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.hej-alert-error {
	background: #fdecea;
	color: #8b2018;
	border: 1px solid #f5c2c0;
}

/* Maintenance / informativni banner (statusi_odrzavanja) */
.hej-alert-info {
	background: #fff4e0;
	color: #8a5a00;
	border: 1px solid #f3d49a;
}

/* Onemogućen "Kupi" gumb tijekom održavanja (status 2) */
.hej-buy--disabled,
.hej-buy:disabled {
	opacity: .5;
	cursor: not-allowed;
	pointer-events: none;
}

/* eSIM maintenance banner (status 1 — problem s plaćanjem, kupnja moguća).
   Stoji iznad "Podaci za plaćanje" na kupi-esim formi. */
.hej-maint-banner {
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	gap: 12px;
	margin: 0 auto 22px;
	padding: 16px 18px;
	background: rgb(189, 1, 1);
	border: 1px solid  rgb(189, 1, 1);
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	line-height: 1.55;
	text-align: center;
    width: fit-content;
    min-width: 500px;
    @media (max-width: 600px) {
        min-width: unset;
        width: 100%;
    }
}

.hej-maint-banner__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	color: rgb(189, 1, 1);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
}

.hej-maint-banner__text {
	flex: 1 1 auto;
}

/* user_message je HTML iz baze — poravnaj rubne margine <p>-ova s ikonom */
.hej-maint-banner__text > :first-child {
	margin-top: 0;
}

.hej-maint-banner__text > :last-child {
	margin-bottom: 0;
}

/* Blokirajuća maintenance stranica (status 2) — prikaže se umjesto funnel forme */
.hej-maint-state {
	max-width: 560px;
	margin: 48px auto;
	padding: 44px 32px;
	background: #fff;
	border: 1px solid #f3d49a;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 10px 34px rgba(0, 0, 0, .06);
}

.hej-maint-state__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: #fff4e0;
	color: #e8a33d;
}

.hej-maint-state__icon svg {
	width: 34px;
	height: 34px;
}

.hej-maint-state__text {
	color: #4a4a4a;
	font-size: 17px;
	line-height: 1.6;
}

.hej-maint-state__text > :first-child {
	margin-top: 0;
}

.hej-maint-state__text > :last-child {
	margin-bottom: 0;
}

.hej-maint-state__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
	padding: 12px 24px;
	background: #e8a33d;
	color: #fff;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: background .15s ease;
}

.hej-maint-state__back:hover {
	background: #d8922c;
	color: #fff;
}

/* Povećani alert (home page error box) */
.hej-alert--lg {
	max-width: 860px;
	padding: 24px 30px;
	font-size: 17px;
	line-height: 1.6;
	border-radius: 10px;
}

.hej-alert--lg strong {
	font-size: 20px;
	margin-bottom: 6px;
}

.hej-alert strong {
	display: block;
	margin-bottom: 2px;
}

.hej-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hej-code-intro {
	text-align: center;
	margin-bottom: 24px;
}

.hej-code-lead {
	font-size: 15px;
	color: var(--hej-text);
	margin: 0 0 6px;
}

.hej-code-sub {
	font-size: 13px;
	color: var(--hej-muted);
	margin: 0;
}

.hej-field-code {
	margin-bottom: 22px;
}

.hej-field-code input {
	width: 100%;
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 8px;
	padding: 16px 12px;
}

.hej-code-resend-form {
	margin-top: 20px;
	text-align: center;
	font-size: 13px;
	color: var(--hej-muted);
    padding-bottom: 20px;
}

.hej-code-resend-form span {
	margin-right: 4px;
}

.hej-code-resend-link {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	color: var(--hej-red);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid currentColor;
}

.hej-code-resend-link:hover:not(:disabled) {
	color: var(--hej-red-dark);
}

.hej-code-resend-link:disabled {
	color: var(--hej-muted);
	cursor: not-allowed;
	opacity: 0.6;
}

.hej-status-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(43, 43, 43, 0.65);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	animation: hej-fade-in .2s ease;
	box-sizing: border-box;
	padding: 20px;
}

.hej-status-box {
	background: #fff;
	border-radius: 12px;
	padding: 32px 36px;
	text-align: center;
	max-width: 420px;
	width: calc(100% - 40px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hej-status-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	color: #fff;
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 56px;
	text-align: center;
}

.hej-status-icon--error {
	background: var(--hej-red);
}

.hej-status-icon--success {
	background: #2ea44f;
	font-size: 28px;
}

.hej-status-title {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--hej-text);
	margin: 0 0 10px;
}

.hej-status-text {
	font-size: 15px;
	line-height: 1.5;
	color: var(--hej-muted);
	margin: 0;
}

.hej-status-text [data-countdown] {
	font-weight: 700;
	display: inline-block;
	min-width: 12px;
}

.hej-status-overlay--error .hej-status-text [data-countdown] {
	color: var(--hej-red);
}

.hej-status-overlay--success .hej-status-text [data-countdown] {
	color: #2ea44f;
}

/* ============================================================
   Payment form (kupi-esim)
   ============================================================ */

.hej-payment-page .hej-details-card {
	max-width: 640px;
}

.hej-payment-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 32px 8px;
	gap: 12px;
}

.hej-payment-title h2 {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--hej-text);
	margin: 0;
}

.hej-payment-cards {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hej-payment-cards img {
	height: 24px;
	width: auto;
	display: block;
	border-radius: 4px;
}

.hej-row {
	display: grid;
	gap: 14px;
	margin-bottom: 0;
}

.hej-row > .hej-field {
	margin-bottom: 18px;
}

.hej-row--1-1 {
	grid-template-columns: 1fr 1fr;
}

.hej-row--7-5 {
	grid-template-columns: 7fr 5fr;
}

@media (max-width: 600px) {
	.hej-row--7-5 {
		grid-template-columns: 1fr;
	}

	.hej-payment-title {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 20px 20px 4px;
	}
}

.hej-input-icon {
	display: inline-block;
	margin-right: 4px;
	color: var(--hej-muted);
}

.hej-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-left: 4px;
	border: 1px solid var(--hej-muted);
	border-radius: 50%;
	background: transparent;
	color: var(--hej-muted);
	font-family: 'Times New Roman', serif;
	font-style: italic;
	font-size: 11px;
	line-height: 1;
	cursor: help;
	padding: 0;
	vertical-align: middle;
	position: relative;
}

.hej-info-icon:hover,
.hej-info-icon:focus-visible {
	color: var(--hej-red);
	border-color: var(--hej-red);
	outline: none;
}

.hej-info-icon[data-tooltip]:hover::after,
.hej-info-icon[data-tooltip]:focus-visible::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--hej-text);
	color: #fff;
	font-family: 'Roboto', Arial, sans-serif;
	font-style: normal;
	font-size: 12px;
	font-weight: 400;
	padding: 6px 10px;
	border-radius: 6px;
	white-space: nowrap;
	z-index: 100;
	pointer-events: none;
}

.hej-select {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	color: var(--hej-text);
	background: #fff;
	border: 1px solid var(--hej-border);
	border-radius: 8px;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' width='12' height='8'%3E%3Cpath fill='%23848484' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
	transition: border-color .15s ease, box-shadow .15s ease;
	cursor: pointer;
}

.hej-select:focus {
	outline: none;
	border-color: var(--hej-red);
	box-shadow: 0 0 0 3px rgba(242, 101, 43, 0.15);
}

.hej-select.is-invalid,
.hej-select.is-invalid:focus {
	border-color: var(--hej-red);
	box-shadow: 0 0 0 3px rgba(242, 101, 43, 0.15);
}

.hej-field input[readonly] {
	background: var(--hej-bg);
	color: var(--hej-muted);
	cursor: not-allowed;
}

/* ============================================================
   Finish page (kupi-esim completed)
   ============================================================ */

.hej-finish-page .hej-details-card {
	max-width: 560px;
}

.hej-finish-hero {
	text-align: center;
	padding: 40px 32px 24px;
	background: var(--hej-bg);
	border-bottom: 1px solid var(--hej-border);
}

.hej-finish-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #2ea44f;
	color: #fff;
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

.hej-finish-title {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--hej-text);
	margin: 0 0 10px;
}

.hej-finish-subtitle {
	font-size: 15px;
	line-height: 1.5;
	color: var(--hej-muted);
	margin: 0;
}

.hej-finish-subtitle strong {
	color: var(--hej-text);
}

.hej-finish-summary {
	padding: 24px 32px;
}

.hej-finish-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 12px 0;
	border-bottom: 1px solid var(--hej-border);
	gap: 16px;
}

.hej-finish-row:last-child {
	border-bottom: none;
}

.hej-finish-label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--hej-muted);
}

.hej-finish-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--hej-text);
	text-align: right;
	word-break: break-word;
}

.hej-finish-value--accent {
	font-size: 20px;
	color: var(--hej-red);
}

.hej-finish-value--accent small {
	font-size: 12px;
	color: var(--hej-muted);
	font-weight: 400;
	margin-left: 3px;
}

.hej-finish-value--mono {
	font-family: 'Courier New', Courier, monospace;
	letter-spacing: 1px;
}

.hej-finish-actions {
	padding: 0 32px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.hej-finish-actions .hej-buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 80%;
	margin: 0;
}

/* Sekundarni gumb (npr. "Povratak na početnu") — outline umjesto punog reda. */
.hej-buy--secondary {
	background: transparent;
	color: var(--hej-red);
	border: 2px solid var(--hej-red);
	/* padding -2px po osi da vanjska visina ostane ista kao kod primarnog gumba */
	padding: 12px 54px;
}

.hej-buy--secondary:hover {
	background: var(--hej-red);
	color: #fff;
}

section {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-4 {
    background: url(/assets/images/section4-background.jpg);
}

.section-5 {
    background: url(/assets/images/section5-background.jpg);
        position: relative;
}

.section5-dropdown-section-text a {
    color: #cf3f31;
    text-decoration: none;
}

.section-3 .inner-section-wrapper , .section-5 .inner-section-wrapper {
    min-height: unset;
    padding-top: 25px;
}

.section-5-text-wrapper {
    max-width: 690px;
    width: 690px;
    margin-right: 75px;
}

section p {
    font-size: 18px;
}

.section5-dropdown-holder {
    padding: 15px 0 20px;
    margin: 0 0 10px;
    width: 100%;
}

.bordered-holder {
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
}

.section5-dropdown-holder h3 {
    font-size: 26px;
}

.dropdown-trigger {
    max-width: 33px;
    margin-left: 20px;
    cursor: pointer;
}

.section-4-text-wrapper {
    color: #fff;
}

.section-4-logo-holder {
    margin: 15px 0;
}

.section-4-logo {
    max-width: 60px;
    margin-right: 20px;
}

.section-4-logo {
    max-width: 60px;
    margin-right: 20px;
}

.section-4-text-wrapper h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.section-3 {
    margin-bottom: 60px;
}

.section-3 h2 {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    margin: 0 0 65px;
}

.section-4-text-wrapper p {
    margin-bottom: 0;
    font-size: 18px;
}

.inner-section-wrapper {
    min-height: 630px;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    padding: 50px 75px;
}

.how-wrapper {
    background: var(--hej-red);
    color: #fff;
    padding: 30px 30px 30px;
    border-radius: 12px;
    height: 100%;
    text-align: center;
}

.how-icon {
    display: block;
    margin: -60px auto 20px;
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #d34f15;
    border-radius: 50%;
    border: 2px solid #fff;
    padding: 15px;
}


.section-3 .inner-section-wrapper {
    flex-direction: column;
    padding-top: 0;
}

.phone-swiper-wrapper {
    position: relative;
}

.swiper-button-prev:after, .swiper-button-next:after {
    color: #000;
}

.swiper-button-prev {
    left: -50px !important;
}

.swiper-button-next {
    right: -50px !important;
}

.swiper-phone-overlay {
    position: absolute;
    z-index: 500;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 580px;
    width: 350px;
    background: url(/assets/images/mockup-mobile-new.png);
    background-size: 100% !important;
    background-repeat: no-repeat;
    pointer-events: none;
}

.swiper {
    height: 535px;
    width: 240px;
    border-radius: 50px !important;
}

.swiper-slide-1 {
    background: url(/assets/images/mob-01-new.jpg);
}

.swiper-slide-2 {
    background: url(/assets/images/mob-02-new.jpg);
}

.swiper-slide-3 {
    background: url(/assets/images/mob-03-new.jpg);
}


@media (max-width: 1199px) {
    .how-wrapper {
        padding: 15px;
    }
    .section-3 h2, .section-4-text-wrapper h2 {
        font-size: 40px;
    }
    .how-wrapper h3 {
        font-size: 19px;
    }
    section p {
        font-size: 16px;
    }
    .how-icon {
        width: 75px;
        height: 75px;
        margin: -40px auto 20px;
    }
    .section-4-text-wrapper p {
        font-size: 16px;
    }
    .dropdown-trigger {
        max-width: 30px;
    }
    .hej-page h1 {
        font-size: 40px;
    }
    .section-5-text-wrapper {
        margin-right: 40px;
    }
}

@media (max-width: 600px) {
	.hej-finish-hero,
	.hej-finish-summary,
	.hej-finish-actions {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hej-finish-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.hej-finish-value {
		text-align: left;
	}
}

@keyframes hej-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.hej-loader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.88);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	box-sizing: border-box;
}

.hej-loader[hidden] {
	display: none;
}

.hej-loader-box {
	text-align: center;
}

.hej-loader-spinner {
	width: 56px;
	height: 56px;
	margin: 0 auto;
	border: 4px solid var(--hej-border);
	border-top-color: var(--hej-red);
	border-radius: 50%;
	animation: hej-spin 0.8s linear infinite;
}

.hej-loader-text {
	margin-top: 16px;
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--hej-text);
	letter-spacing: .3px;
}

@keyframes hej-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hej-loader-spinner {
		animation-duration: 2s;
	}
}

@media (max-width: 768px) {
    .section-5-text-wrapper {
        margin-right: 0;
        width: auto;
        max-width: 500px;
    }
    .hej-buy {
        width: 100%;
    }
    .hej-package ul li {
        font-size: 16px;
        padding-left: 25px;
        margin-bottom: 8px;
    }
    .hej-package ul li::before {
        top: 10px;
        width: 19px;
        height: 19px;
    }
    .hej-page h1 {
        font-size: 30px;
    }
    .section-3 h2, .section-4-text-wrapper h2 {
        font-size: 30px;
    }
    .how-wrapper {
        padding: 20px;
    }
    .section-4-logo {
        max-width: 45px;
    }
    .hej-page {
        padding: 40px 40px 30px;
    }
    .hej-package ul li {
        line-height: 1.15;
    }
    .section-3 {
        margin-bottom: 30px;
    }
    .section-4 .inner-section-wrapper {
        padding: 55px 75px 85px;
    }
    .section-4-text-wrapper h2 {
        margin-bottom: 40px;
    }
    .section-4-logo-holder {
        margin: 0 0 25px;
    }
    .section5-dropdown-holder h3 {
        font-size: 23px;
    }
}

/* === Language switcher (Bootstrap dropdown override) === */
.hej-lang-bar {
	max-width: 1100px;
	margin: 0 auto;
	padding: 16px 20px 0;
	box-sizing: border-box;
}

.hej-lang-bar .dropdown-language {
	font-family: 'Maven Pro', 'Roboto', Arial, sans-serif;
}

.hej-lang-bar .dropdown-language > .btn,
.hej-lang-bar .dropdown-language > .btn.btn-light {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	background: #fff;
	border: 1px solid var(--hej-border);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: var(--hej-muted);
	line-height: 1;
	box-shadow: 0 2px 8px rgba(43, 43, 43, 0.06);
	transition: border-color .15s ease, box-shadow .15s ease, color .15s ease;
}

.hej-lang-bar .dropdown-language > .btn:hover,
.hej-lang-bar .dropdown-language > .btn:focus,
.hej-lang-bar .dropdown-language > .btn[aria-expanded="true"] {
	background: #fff;
	border-color: var(--hej-red);
	color: var(--hej-text);
	box-shadow: 0 0 0 3px rgba(242, 101, 43, 0.15);
	outline: none;
}

.hej-lang-bar .dropdown-language > .btn::after {
	margin-left: 4px;
	border-top-color: var(--hej-muted);
	transition: transform .15s ease;
}

.hej-lang-bar .dropdown-language > .btn[aria-expanded="true"]::after {
	transform: rotate(180deg);
	border-top-color: var(--hej-red);
}

.hej-lang-bar .dropdown-language .active-language {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 6px;
	color: var(--hej-text);
}

.hej-lang-bar .dropdown-language .active-language img {
	width: 18px;
	height: 12px;
	margin: 0;
	object-fit: cover;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.hej-lang-bar .dropdown-language .dropdown-menu {
	min-width: 160px;
	margin-top: 6px;
	padding: 6px;
	background: #fff;
	border: 1px solid var(--hej-border);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(43, 43, 43, 0.12);
}

.hej-lang-bar .dropdown-language .dropdown-menu li {
	cursor: pointer;
	list-style: none;
}

.hej-lang-bar .dropdown-language .dropdown-menu li a,
.hej-lang-bar .dropdown-language .dropdown-menu li a.dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--hej-text);
	text-decoration: none;
	letter-spacing: .3px;
	transition: background .15s ease, color .15s ease;
}

.hej-lang-bar .dropdown-language .dropdown-menu li a:hover,
.hej-lang-bar .dropdown-language .dropdown-menu li a:focus,
.hej-lang-bar .dropdown-language .dropdown-menu li a.dropdown-item:hover,
.hej-lang-bar .dropdown-language .dropdown-menu li a.dropdown-item:focus {
	background: var(--hej-bg);
	color: var(--hej-red);
	outline: none;
}

.hej-lang-bar .dropdown-language .dropdown-menu li a img {
	width: 18px;
	height: 12px;
	margin: 0;
	object-fit: cover;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

@media (max-width: 767px) {
    .hej-summary-img {
        width: 110px;
    }
    .section-5-text-wrapper {
        max-width: 360px;
    }
    .section-4-logo {
        margin-bottom: 10px;
    }
    .section-3 h2 {
        margin-bottom: 50px;
    }
    .mt-custom-5 {
        margin-top: 40px;
    }
    .section-3 h2, .section-4-text-wrapper h2 {
        font-size: 22px;
        text-align: center;
    }
    .section-4 .inner-section-wrapper {
        padding: 50px 20px 70px;
    }
    .section-3 {
        margin-bottom: 7px;
    }
    .section-4-text-wrapper p {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    .phone-swiper-wrapper {
        transform: scale(.7);
        transform-origin: top center;
        margin-bottom: -165px;
        margin-top: -30px;
    }
    .inner-section-wrapper {
        padding: 50px 20px;
    }
    .hej-page {
        padding: 40px 20px 10px;
    }
    .section5-dropdown-holder h3 {
        font-size: 18px;
    }
    .dropdown-trigger {
        max-width: 23px;
    }
    .section5-dropdown-holder {
        padding: 10px 0 10px;
    }
    .hej-package {
        padding: 15px;
    }
    .hej-package img {
        max-width: 100%;
        margin: 0 auto 15px;
    }
    .hej-package .price, .hej-details-intro .price {
        font-size: 14px;
        text-align: center;
    }
    .hej-buy-card {
        padding: 12px 20px;
        font-size: 15px;
        letter-spacing: 0;
    }
	.hej-form-header,
	.hej-form {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hej-summary {
		grid-template-columns: auto minmax(0, 1fr);
		row-gap: 8px;
	}

	.hej-summary-price {
		grid-column: 1 / -1;
		text-align: right;
	}

	.hej-intro {
		font-size: 14px;
	}

	.hej-package h3 {
		font-size: 17px;
	}

	.hej-page h1 {
		font-size: 22px;
	}

	.hej-details-hero {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 20px;
	}

	.hej-details-intro h1 {
		font-size: 26px;
		text-align: center;
	}

	.hej-details-intro .lead {
		text-align: center;
	}

	.hej-details-intro .hej-buy-wrap {
		text-align: center;
	}

	.hej-details-intro ul {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hej-details-intro ul li {
		font-size: 21px;
		line-height: 1.15;
		margin-bottom: 10px;
		max-width: 250px;
		min-width: 250px;
	}

	.hej-details-intro ul li::before {
		top: 13px;
	}

	.hej-details-body {
		padding: 10px 20px 20px;
	}

	.hej-lang-bar {
		padding: 20px 16px 0;
	}
    .dropdown-language {
        margin-bottom: 0;
    }

	.hej-lang-bar .dropdown-language > .btn,
	.hej-lang-bar .dropdown-language > .btn.btn-light {
		padding: 6px 12px;
		font-size: 11px;
		letter-spacing: .6px;
	}

	.hej-lang-bar .dropdown-language .active-language {
		gap: 6px;
		margin-left: 4px;
	}

	.hej-lang-bar .dropdown-language .active-language img,
	.hej-lang-bar .dropdown-language .dropdown-menu li a img {
		width: 16px;
		height: 11px;
	}
}

/* === DEBUG: countdown preostalog vremena purchase-sessiona (samo debug/test okruženje) === */
.hej-debug-timer {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9000; /* ispod .hej-loader (9999) */
	display: flex;
	align-items: stretch;
	font-family: 'Roboto', 'Maven Pro', Arial, sans-serif;
	background: #1f1f1f;
	color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
	opacity: .92;
	user-select: none;
	pointer-events: none; /* ne blokira klikove na formi */
}

.hej-debug-timer__tag {
	display: flex;
	align-items: center;
	padding: 0 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	background: var(--hej-red);
	color: #fff;
}

.hej-debug-timer__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6px 12px;
	line-height: 1.2;
}

.hej-debug-timer__label {
	font-size: 10px;
	color: #c9c9c9;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.hej-debug-timer__clock {
	font-size: 18px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	letter-spacing: .02em;
}

.hej-debug-timer.is-warning .hej-debug-timer__tag { background: var(--hej-red-dark); }
.hej-debug-timer.is-warning .hej-debug-timer__clock { color: #ffcf6b; }
.hej-debug-timer.is-expired .hej-debug-timer__clock { color: #ff6b6b; }