:root {
    --bg-main: #faf8f5;
    --card-bg: #ffffff;
    --primary-red: #e50527;
    --red-hover: #af2439;
    --red-tint: #fde8e8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-light: #f1f0ec;
    --border-card: #e2e8f0;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lift: 0 16px 40px rgba(30, 41, 59, 0.1);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-text, .btn, .nav-btn {
    font-family: var(--font-heading);
}

a { color: inherit; }

button, input, textarea {
    font-family: inherit;
}

input:focus-visible, textarea:focus-visible, button:focus-visible {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.hidden { display: none !important; }

/* NAVBAR */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.brand-wordmark {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-badge {
    background: #fde8e8;
    padding: 6px;
    border-radius: 8px;
    font-size: 1.1rem;
}

.brand-text {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s;
}

.nav-btn:hover, .nav-btn.active {
    color: var(--text-dark);
    background: #f1f0ec;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle.mobile-only-flex {
    display: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-toggle {
    background: #f1f0ec;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    gap: 6px;
}

.lang-btn {
    border: none;
    background: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.lang-active {
    background: var(--primary-red);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
}

.lang-inactive {
    color: var(--text-muted);
    padding: 2px 4px;
}

/* MAIN CONTAINER */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* HERO SECTION */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fde8e8;
    color: var(--primary-red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-red {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.25);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(211, 47, 47, 0.3); }

.btn-white {
    background: white;
    border: 1px solid var(--border-card);
    color: var(--text-dark);
}
.btn-white:hover { background: #f8fafc; transform: translateY(-1px); }

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-img {
    width: min(100%, 400px);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    display: block;
}

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin: 2rem 0 4rem 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--red-tint);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #fde8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.icon-circle.small {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.825rem;
    margin: 0 0 1rem 0;
}

.card-arrow {
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: bold;
}

/* PROCESS SECTION */
.process-section {
    text-align: center;
    margin: 4rem 0;
}

.section-header h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* PROCESS VISUAL - icon timeline, replaces a photo so it never crops or misfits */
.process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, var(--red-tint), #fff6f0);
    border: 1px solid var(--red-tint);
    border-radius: var(--radius-lg);
}

.process-visual-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.process-visual-line {
    flex: 1;
    min-width: 16px;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary-red) 50%, transparent 50%);
    background-size: 10px 2px;
    opacity: 0.4;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.step-card {
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    text-align: left;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.step-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fca5a5;
}

.step-card h4 {
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* CONTENT BOX (Chat, Form, Status) */
.content-box {
    background: var(--card-bg);
    border: 1px solid var(--border-card);
    border-radius: 18px;
    padding: 2rem 2.2rem 1.8rem;
    box-shadow: var(--shadow-soft);
    max-width: 820px;
    margin: 2rem auto;
}

.service-form-wrapper {
    width: 100%;
}

.service-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.service-form-header h2 {
    margin: 0;
    font-size: clamp(2rem, 2vw, 2.4rem);
    color: #1f2937;
    font-weight: 700;
}

.back-link {
    background: transparent;
    border: none;
    color: #d63031;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0;
}

.service-start-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

.service-start-modal-card {
    width: min(92vw, 560px);
    background: #fff;
    border-radius: 18px;
    padding: 2.2rem 2rem 1.6rem;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.18);
    text-align: center;
}

.service-start-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    font-size: 2.2rem;
    background: #f7e7a0;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.5);
}

.service-start-modal-card h3 {
    margin: 0 0 0.8rem;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
    color: #1f2937;
}

.service-start-modal-card p {
    margin: 0 auto 1.6rem;
    max-width: 430px;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.5;
}

.service-start-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-start-actions .btn {
    min-height: 58px;
    font-size: 1.15rem;
    border-radius: 10px;
}

body.modal-open {
    overflow: hidden;
}

/* MODAL: NAVODILA ZA POŠILJANJE (daljša vsebina, levo poravnano) */
.shipping-modal-card {
    max-width: 620px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
}

.shipping-modal-card .service-start-icon {
    margin: 0 auto 1rem;
}

.shipping-modal-card h3 {
    text-align: center;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.shipping-steps {
    margin: 0 0 1.2rem;
    padding-left: 1.3rem;
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.6;
}

.shipping-steps li {
    margin-bottom: 0.7rem;
}

.shipping-steps strong {
    color: #1f2937;
}

.shipping-cost-note {
    background: var(--red-tint);
    border: 1px solid #f3d0d0;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
}

.shipping-cost-note strong {
    display: block;
    color: var(--primary-red);
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.shipping-cost-note p {
    margin: 0;
    max-width: none;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.55;
}

.shipping-alt {
    font-size: 0.92rem !important;
    color: var(--text-muted) !important;
    text-align: center;
}

.box-desc { color: var(--text-muted); margin-bottom: 1.5rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.95rem; font-weight: 700; color: #1f2937; }
.form-group label .required-mark { color: #d63031; }
.form-group .optional { color: #64748b; font-weight: 500; }
.form-group input, .form-group textarea {
    padding: 0.8rem 0.9rem;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8fafc;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.upload-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 110px;
    border: 2px dashed #d8dfe5;
    background: #f9fafb;
    color: #4b5563;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
}

.upload-emoji {
    font-size: 1.4rem;
    opacity: 0.8;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
    border-radius: 10px;
    min-height: 58px;
    font-size: 1.2rem;
}

.check-option {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.75rem 0;
}

.check-option input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-red);
    flex-shrink: 0;
    cursor: pointer;
}

.check-option label {
    display: block;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
}

.service-form {
    margin-top: 1.5rem;
}

/* SEKCIJE OBRAZCA */
.form-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-card);
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.field-hint {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* NAMIG OB PRIMIKU (TOOLTIP) */
.info-link {
    position: relative;
    color: var(--primary-red);
    font-weight: 600;
    cursor: help;
    text-decoration: underline dotted;
    text-underline-offset: 2px;
}

.tooltip-box {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    z-index: 20;
    width: 260px;
    max-width: 70vw;
    background: #1e293b;
    color: #f8fafc;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.5;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 14px;
    border: 6px solid transparent;
    border-top-color: #1e293b;
}

.info-link:hover .tooltip-box,
.info-link:focus .tooltip-box,
.info-link:focus-within .tooltip-box {
    display: block;
}

/* TELEFON */
.phone-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    background: #f8fafc;
    padding: 0 0.3rem 0 0.7rem;
}

.phone-flag {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 0.5rem;
    border-right: 1px solid #dfe4ea;
}

.phone-input input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0.5rem !important;
}

/* IZBIRA GARANCIJE */
.radio-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #f8fafc;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.radio-option input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

/* PRILOGE */
.upload-box.dragover {
    border-color: var(--primary-red);
    background: var(--red-tint);
}

.upload-choose {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: underline;
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.7rem;
}

.file-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red-tint);
    color: var(--primary-red);
    padding: 0.35rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.file-chip button {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    font-weight: 700;
    padding: 0;
    line-height: 1;
}

/* POTRDITEV PO ODDAJI OBRAZCA */
.form-confirm {
    text-align: center;
    padding: 1.5rem 0.5rem 0.5rem;
}

.confirm-icon {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
}

.form-confirm h3 {
    margin: 0 0 0.8rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.form-confirm p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 0.6rem;
    line-height: 1.6;
}

.confirm-question {
    font-weight: 700;
    color: var(--text-dark) !important;
    margin-top: 1.2rem !important;
}

.confirm-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.confirm-actions .btn {
    min-width: 200px;
}

.confirm-actions .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* AI CHAT */
.ai-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.ai-header .icon-circle {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.ai-header h2 { margin: 0 0 0.2rem 0; font-size: 1.4rem; }
.ai-header .box-desc { margin: 0; }

.ai-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.chip {
    background: var(--red-tint);
    color: var(--primary-red);
    border: 1px solid transparent;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.chip:hover {
    border-color: var(--primary-red);
    transform: translateY(-1px);
}

.chat-window {
    height: 320px;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #faf8f5;
}

.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg.user { justify-content: flex-end; }

.avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-card);
}

.chat-msg.user .avatar { background: var(--red-tint); }

.msg-content {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 75%;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid var(--border-card);
}
.chat-msg.user .msg-content {
    background: var(--primary-red);
    color: white;
    border: none;
}

.msg-content.error { color: var(--primary-red); }
.msg-content.italic { font-style: italic; color: var(--text-muted); }

.msg-cta {
    display: block;
    margin-top: 0.7rem;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease;
}
.msg-cta:hover { background: var(--red-hover); }

.chat-input-row { display: flex; gap: 10px; margin-top: 1rem; }
.chat-input-row input { flex: 1; padding: 0.75rem; border: 1px solid var(--border-card); border-radius: 20px; }

.ai-footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    flex-wrap: wrap;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
}
.btn-link:hover { text-decoration: underline; }

/* STATUS SEARCH */
.status-search { display: flex; gap: 10px; max-width: 450px; margin: 0 auto; }
.status-search input { flex: 1; padding: 0.75rem; border: 1px solid var(--border-card); border-radius: 20px; text-align: center; }

/* FOOTER */
.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.5px; color: var(--text-dark); margin-bottom: 1rem; }
.footer-col p, .footer-col a { display: block; color: var(--text-muted); font-size: 0.85rem; text-decoration: none; margin-bottom: 0.5rem; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ==================== ODZIVNOST (MOBILE) ====================
   Ta blok je namenoma na koncu datoteke: pri enaki specifičnosti
   zmaga poznejše pravilo v vrstnem redu, zato morajo @media
   preglasitve priti za osnovnimi pravili, ki jih spreminjajo. */

@media (max-width: 900px) {
    .feature-grid, .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-right .lang-toggle {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
        order: 3;
        padding-top: 12px;
        margin-top: 12px;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-btn {
        text-align: left;
        width: 100%;
        padding: 10px 12px;
    }

    .lang-toggle.mobile-only-flex {
        display: flex;
        justify-content: center;
        margin-top: 8px;
        align-self: center;
    }

    .brand-logo-img {
        width: 36px;
        height: 36px;
    }

    .brand-wordmark {
        height: 30px;
    }

    .main-container {
        padding: 1.2rem 1rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-img {
        width: 100%;
        max-width: 320px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .content-box {
        padding: 1.4rem 1.2rem 1.2rem;
        margin: 1rem auto;
        border-radius: 14px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-form-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .service-form-header h2 {
        font-size: 1.6rem;
    }

    .phone-input {
        flex-wrap: wrap;
    }

    .service-start-modal-card,
    .shipping-modal-card {
        padding: 1.6rem 1.3rem 1.3rem;
        width: 94vw;
    }

    .service-start-actions {
        grid-template-columns: 1fr;
    }

    .confirm-actions {
        flex-direction: column;
    }

    .confirm-actions .btn {
        width: 100%;
    }

    .status-search {
        flex-direction: column;
    }

    .ai-header {
        flex-wrap: wrap;
    }

    .chat-window {
        height: 260px;
    }

    .msg-content {
        max-width: 85%;
    }

    .tooltip-box {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 220px;
        max-width: 80vw;
    }

    .tooltip-box::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 560px) {
    .feature-grid, .steps-grid {
        grid-template-columns: 1fr;
    }

    .process-visual {
        flex-direction: column;
    }

    .process-visual-line {
        width: 2px;
        height: 16px;
        background-image: linear-gradient(to bottom, var(--primary-red) 50%, transparent 50%);
        background-size: 2px 10px;
    }

    .ai-quick-replies {
        flex-direction: column;
    }

    .chip {
        width: 100%;
        text-align: center;
    }
}

