﻿/* Broska.si site styles - extracted from includes/_glava.php on 2026-05-30. */
:root {
            --primary-color: #D2691E;
            --primary-dark: #b55a1a;
            --primary-light: #fff5ef;
            --secondary-color: #1f2937;
            --text-color: #4b5563;
            --light-gray: #f9fafb;
            --border-color: #e5e7eb;
            --border-radius-lg: 16px;
            --border-radius-md: 12px;
            --transition: all 0.3s ease-in-out;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 20px 30px -5px rgba(210, 105, 30, 0.15);
            /* Privzeta barva povezav (Bootstrap) → blagovna oranžna namesto modre */
            --bs-link-color-rgb: 210, 105, 30;
            --bs-link-hover-color-rgb: 181, 90, 26;
        }

        /* Vsebinske povezave brez svojega razreda naj bodo oranžne (Bootstrap reboot) */
        a {
            color: var(--primary-color);
        }

        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        .skip-link {
            position: absolute;
            left: 12px;
            top: -48px;
            z-index: 1200;
            background: var(--secondary-color);
            color: white;
            padding: 10px 14px;
            border-radius: 8px;
            text-decoration: none;
            transition: top 0.2s ease;
        }
        .skip-link:focus {
            top: 12px;
            color: white;
        }

        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Poppins', sans-serif;
            color: var(--secondary-color);
            line-height: 1.2;
        }

        /* Buttons */
        .btn {
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            box-shadow: var(--shadow-sm);
        }
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            background-color: transparent;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Navbar */
        .navbar {
            padding: 1rem 0;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid transparent;
        }
        .navbar.scrolled {
            padding: 0.7rem 0;
            box-shadow: var(--shadow-md);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand-logo-picture {
            display: block;
            line-height: 0;
        }
        .brand-logo {
            width: 174px;
            max-width: 42vw;
            height: auto;
            display: block;
        }
        .brand-mark {
            width: 34px;
            height: 34px;
            display: block;
            flex: 0 0 auto;
        }
        .mobile-nav-toggle {
            width: 46px;
            height: 46px;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            padding: 0;
            border-radius: 12px;
            background: rgba(255, 245, 239, 0.96);
            border: 1px solid rgba(210, 105, 30, 0.22);
            box-shadow: var(--shadow-sm);
            position: fixed;
            top: 16px;
            right: 16px;
            z-index: 1201;
        }
        .mobile-nav-toggle:focus {
            box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.14);
        }
        .navbar-toggler-bars {
            width: 24px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .navbar-toggler-bars span {
            display: block;
            height: 2px;
            width: 100%;
            border-radius: 999px;
            background: var(--secondary-color);
        }
        .nav-link {
            font-weight: 500;
            color: var(--secondary-color) !important;
            margin: 0 5px;
            position: relative;
            transition: var(--transition);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Dropdown toggles: caret na desni namesto podčrtaja */
        .nav-link.dropdown-toggle::after {
            display: none;
        }
        .nav-caret {
            display: inline-block;
            margin-left: 0.34rem;
            font-size: 0.72em;
            vertical-align: middle;
            opacity: 0.75;
            transition: transform 0.2s ease;
        }
        .nav-item.dropdown:hover .nav-caret,
        .nav-item.dropdown.show .nav-caret {
            transform: rotate(180deg);
            opacity: 1;
        }
        .dropdown-menu {
            margin-top: 0.55rem;
            padding: 0.5rem;
            border: 1px solid rgba(31, 41, 55, 0.08);
            border-radius: 12px;
            box-shadow: 0 18px 40px rgba(31, 41, 55, 0.14);
        }
        .dropdown-menu .dropdown-item {
            border-radius: 8px;
            padding: 0.5rem 0.8rem;
            font-weight: 500;
            color: var(--secondary-color);
            transition: var(--transition);
        }
        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus {
            background: rgba(210, 105, 30, 0.1);
            color: var(--primary-color);
        }
        @media (min-width: 992px) {
            .mobile-nav-toggle {
                display: none !important;
            }
            /* Hover-odpiranje dropdownov na namizju za bolj odziven občutek */
            .nav-item.dropdown:hover > .dropdown-menu,
            .nav-item.dropdown:focus-within > .dropdown-menu {
                display: block;
            }
            /* Nevidni most čez režo, da se dropdown ob premiku miške navzdol ne zapre */
            .nav-item.dropdown > .dropdown-menu::before {
                content: "";
                position: absolute;
                bottom: 100%;
                left: 0;
                right: 0;
                height: 0.7rem;
            }
        }

        /* Sections */
        section { padding: 100px 0; }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h1,
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        .section-title h1::after,
        .section-title h2::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .section-title p {
            color: var(--text-color);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .bg-light-section { background-color: var(--light-gray); }

        /* Hero */
        #hero {
            min-height: 740px;
            padding: 150px 0 110px;
            background: linear-gradient(135deg, #fff1e4 0%, #fdf6f0 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        #hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(34rem 34rem at 4% 6%, rgba(210,105,30,0.24), transparent 58%),
                radial-gradient(30rem 30rem at 52% 0%, rgba(245,158,11,0.18), transparent 60%),
                linear-gradient(90deg, rgba(255,243,232,0.96) 0%, rgba(255,243,232,0.90) 34%, rgba(255,247,240,0.58) 64%, rgba(255,247,240,0.26) 100%),
                linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,246,238,0.6) 100%);
            z-index: 1;
            pointer-events: none;
        }
        #hero::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 38%;
            background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .hero-bg__slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            filter: saturate(1.22) contrast(1.08) brightness(1.06);
            animation: heroBgFade 30s infinite;
        }
        .hero-bg__slide--one {
            background-image: image-set(
                url('/slike/izdelava-brosk-priponk-za-podjetja-organizacije-866.webp') type('image/webp'),
                url('/slike/izdelava-brosk-priponk-za-podjetja-organizacije.jpg') type('image/jpeg')
            );
            background-position: center center;
        }
        .hero-bg__slide--two {
            background-image: image-set(
                url('/slike/izdelava-brosk-priponk-darilo-zabava-poroka-rojstni-dan-1200.webp') type('image/webp'),
                url('/slike/izdelava-brosk-priponk-darilo-zabava-poroka-rojstni-dan.jpg') type('image/jpeg')
            );
            background-position: center center;
            animation-delay: -20s;
        }
        .hero-bg__slide--three {
            background-image: image-set(
                url('/slike/izdelava-brosk-priponk-za-rojstni-dan-zabavo-darilo-zabavne-broske-999.webp') type('image/webp'),
                url('/slike/izdelava-brosk-priponk-za-rojstni-dan-zabavo-darilo-zabavne-broske.jpg') type('image/jpeg')
            );
            background-position: center bottom;
            animation-delay: -10s;
        }
        @keyframes heroBgFade {
            0% { opacity: 1; }
            23.333% { opacity: 1; }
            33.333% { opacity: 0; }
            56.666% { opacity: 0; }
            66.666% { opacity: 0; }
            90% { opacity: 0; }
            100% { opacity: 1; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-bg__slide {
                animation: none;
                opacity: 0;
            }
            .hero-bg__slide--one {
                opacity: 1;
            }
        }
        #hero .container { position: relative; z-index: 2; }
        #hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: 0;
            text-shadow: 0 1px 0 rgba(255,255,255,0.8);
        }
        #hero h1 span { color: var(--primary-color); }
        #hero p.lead {
            font-size: 1.25rem;
            margin-bottom: 30px;
            color: #374151;
            line-height: 1.6;
            max-width: 660px;
        }
        .hero-img-wrapper {
            position: relative;
            width: min(560px, 100%);
            aspect-ratio: 4 / 3;
            border-radius: 28px;
            padding: 10px;
            background: rgba(255,255,255,0.88);
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(4px);
            overflow: hidden;
        }
        .hero-img-wrapper img {
            border-radius: 20px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(1.05) brightness(1.08);
        }
        .hero-img-wrapper picture,
        .gallery-item picture {
            display: block;
            width: 100%;
            height: 100%;
        }
        .hero-img-wrapper::after {
            content: "";
            position: absolute;
            inset: 12px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
            pointer-events: none;
        }
        .trust-badges {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary-color);
            background: rgba(255,255,255,0.92);
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(3px);
        }
        .trust-badge i { color: var(--primary-color); font-size: 1.2rem; }
        .quick-facts {
            padding: 0;
            background: white;
            position: relative;
            z-index: 3;
        }
        .quick-facts-panel {
            margin-top: -42px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            padding: 24px;
        }
        .quick-fact {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            height: 100%;
        }
        .quick-fact i {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary-color);
            flex: 0 0 auto;
        }
        .quick-fact strong {
            display: block;
            color: var(--secondary-color);
            margin-bottom: 2px;
        }
        .quick-fact span {
            display: block;
            font-size: 0.92rem;
            color: var(--text-color);
            line-height: 1.45;
        }

        /* Why Us */
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
            height: 100%;
            transition: var(--transition);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }
        .feature-card .icon-box {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .feature-card:hover .icon-box { background: var(--primary-color); }
        .feature-card .icon-box i {
            font-size: 28px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        .feature-card:hover .icon-box i { color: white; }
        .feature-card h3 { font-size: 1.3rem; margin-bottom: 15px; }

        /* Sizes */
        .size-card {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            height: 100%;
        }
        .size-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }
        .size-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: var(--light-gray);
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px dashed var(--primary-color);
            position: relative;
        }
        .size-circle span {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        .size-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
        .size-card p { font-size: 0.95rem; color: var(--text-color); margin-bottom: 0; }
        
        /* Proportional visual sizing: 58 mm is the largest reference. */
        .size-25 .size-circle {
            width: 78px;
            height: 78px;
            margin-top: 102px;
        }
        .size-37 .size-circle {
            width: 115px;
            height: 115px;
            margin-top: 65px;
        }
        .size-44 .size-circle {
            width: 137px;
            height: 137px;
            margin-top: 43px;
        }
        .size-58 .size-circle {
            width: 180px;
            height: 180px;
            margin-top: 0;
        }
        .size-25 .size-circle span { font-size: 1.35rem; }
        .size-37 .size-circle span { font-size: 1.65rem; }
        .size-44 .size-circle span { font-size: 1.85rem; }
        .size-58 .size-circle span { font-size: 2.2rem; }

        /* Pricing */
        .pricing-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            padding: 40px 30px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        .pricing-card.popular {
            border: 2px solid var(--primary-color);
            box-shadow: var(--shadow-md);
            transform: scale(1.03);
            z-index: 2;
        }
        .pricing-card.popular:hover { transform: scale(1.03) translateY(-5px); }
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .pricing-header { text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
        .pricing-header h3 { font-size: 1.5rem; color: var(--secondary-color); }
        .price-value { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); line-height: 1; margin: 15px 0; }
        .price-value span { font-size: 1rem; font-weight: 500; color: var(--text-color); }
        .pricing-list { list-style: none; padding: 0; margin: 0 0 30px; flex-grow: 1; }
        .pricing-list li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed #eee; font-size: 0.95rem; }
        .pricing-list li:last-child { border-bottom: none; }
        .pricing-list li i { color: #10b981; margin-right: 10px; font-size: 1.1rem; }
        .pricing-list li .qty { font-weight: 600; color: var(--secondary-color); }
        .pricing-list li.recommended-tier {
            margin: 0 -10px;
            padding: 10px;
            border-radius: 10px;
            background: var(--primary-light);
            border-bottom-color: transparent;
            color: var(--primary-dark);
            font-weight: 700;
        }
        .pricing-list li.recommended-tier .qty,
        .pricing-list li.recommended-tier span:last-child {
            color: var(--primary-dark);
        }
        .pricing-list li.recommended-tier .qty::after {
            content: " priporočeno";
            display: inline-block;
            margin-left: 6px;
            color: var(--primary-color);
            font-size: 0.76rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0;
        }
        .pricing-card--single {
            max-width: 820px;
            margin: 0 auto;
        }
        .pricing-table-wrap {
            overflow-x: auto;
            margin-bottom: 22px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: #fff;
        }
        .pricing-table {
            width: 100%;
            margin: 0;
            border-collapse: collapse;
        }
        .pricing-table th,
        .pricing-table td {
            padding: 14px 18px;
            border-bottom: 1px solid #eef2f7;
            text-align: left;
            vertical-align: middle;
        }
        .pricing-table th:last-child,
        .pricing-table td:last-child {
            text-align: right;
        }
        .pricing-table thead th {
            background: #f8fafc;
            color: var(--secondary-color);
            font-size: 0.92rem;
        }
        .pricing-table tbody tr:last-child td {
            border-bottom: 0;
        }
        .pricing-table tbody tr.is-recommended {
            background: var(--primary-light);
            color: var(--primary-dark);
        }
        .pricing-table tbody tr.is-recommended td:first-child::after {
            content: " priporočeno";
            display: inline-block;
            margin-left: 8px;
            color: var(--primary-color);
            font-size: 0.76rem;
            font-weight: 800;
            text-transform: uppercase;
        }
        .pricing-size-note {
            margin-bottom: 20px;
            padding: 14px 16px;
            border-radius: 8px;
            background: #fff8f0;
            color: var(--secondary-color);
        }
        .pricing-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: auto;
        }
        .pricing-info { text-align: center; font-size: 0.85rem; color: #6b7280; margin-top: 15px; }

        /* Delivery */
        .delivery-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-md);
            padding: 28px;
            height: 100%;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
        }
        .delivery-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .delivery-icon {
            width: 58px;
            height: 58px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary-color);
            font-size: 1.6rem;
            margin-bottom: 16px;
        }
        .delivery-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }
        .delivery-price {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .delivery-note {
            background: #f9fafb;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-md);
            padding: 18px 22px;
            color: var(--text-color);
        }

        .leadtime-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-md);
            padding: 24px;
            height: 100%;
            box-shadow: var(--shadow-sm);
        }
        .leadtime-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }
        .leadtime-icon {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary-color);
            font-size: 1.45rem;
            margin-bottom: 14px;
        }
        .leadtime-days {
            color: var(--primary-dark);
            font-size: 1.55rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        /* How to Order */
        .step-wrapper { text-align: center; position: relative; }
        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0 auto 25px;
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }
        .step-wrapper:hover .step-number { background: var(--primary-color); color: white; transform: scale(1.1); }
        .step-wrapper h3 { font-size: 1.4rem; margin-bottom: 15px; }
        @media (min-width: 992px) {
            .step-wrapper::after {
                content: '';
                position: absolute;
                top: 40px;
                right: -50%;
                width: 100%;
                height: 2px;
                border-top: 2px dashed var(--border-color);
                z-index: 1;
            }
            .col-lg-4:last-child .step-wrapper::after { display: none; }
        }

        /* Use Cases */
        .use-case-tag {
            display: inline-block;
            padding: 12px 25px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-weight: 500;
            color: var(--secondary-color);
            margin: 8px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: default;
        }
        .use-case-tag:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Gallery */
        .gallery-item {
            display: block;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-sm);
            cursor: default;
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.45s ease;
        }
        .gallery-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(210, 105, 30, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        .gallery-overlay i { font-size: 2.5rem; color: white; transform: scale(0.5); transition: var(--transition); }
        .gallery-item:hover img { transform: scale(1.25); }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-item:hover .gallery-overlay i { transform: scale(1); }
        /* FAQ */
        .accordion-item {
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-md) !important;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .accordion-button {
            font-weight: 600;
            color: var(--secondary-color);
            padding: 20px;
            background-color: white;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-light);
            color: var(--primary-color);
            box-shadow: none;
        }
        .accordion-button:focus { box-shadow: none; border-color: transparent; }
        .accordion-body { padding: 20px; color: var(--text-color); background: white; }

        /* Contact Form */
        .contact-box {
            background: white;
            padding: 50px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }
        .form-label { font-weight: 500; color: var(--secondary-color); }
        .form-control, .form-select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #d1d5db;
            transition: var(--transition);
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.1);
        }
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        /* Artwork Guidelines */
        .artwork-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-md);
            padding: 28px;
            height: 100%;
            box-shadow: var(--shadow-sm);
        }
        .artwork-card i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 16px;
        }
        .artwork-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .artwork-card p {
            margin-bottom: 0;
        }
        .artwork-note {
            background: var(--primary-light);
            border: 1px solid rgba(210, 105, 30, 0.2);
            border-radius: var(--border-radius-md);
            padding: 20px 24px;
        }
        .artwork-note strong {
            color: var(--primary-dark);
        }
        .conditional-fields {
            display: none;
            padding: 18px;
            border: 1px solid rgba(210, 105, 30, 0.18);
            border-radius: 12px;
            background: var(--primary-light);
        }
        .conditional-fields.active {
            display: block;
        }
        .form-section-note {
            display: flex;
            gap: 12px;
            padding: 16px 18px;
            border-radius: 12px;
            background: #f9fafb;
            border: 1px solid var(--border-color);
            color: var(--text-color);
            font-size: 0.95rem;
            line-height: 1.45;
        }
        .form-section-note i {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-top: 2px;
        }
        .price-estimate {
            display: none;
            padding: 16px 18px;
            border: 1px solid rgba(16, 185, 129, 0.28);
            border-radius: 12px;
            background: #ecfdf5;
            color: #065f46;
            font-weight: 600;
        }
        .price-estimate.active {
            display: block;
        }
        .price-estimate small {
            display: block;
            margin-top: 4px;
            color: #047857;
            font-weight: 500;
        }
        .form-honeypot {
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        
        /* Form Messages */
        #form-loading, #form-error-message, #form-sent-message { display: none; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; text-align: center; }
        #form-loading { background: #e0f2fe; color: #0284c7; }
        #form-error-message { background: #fee2e2; color: #dc2626; }
        #form-sent-message { background: #dcfce7; color: #16a34a; }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: #d1d5db;
            padding: 60px 0 30px;
        }
        .footer-title { color: white; font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 10px; }
        footer a { color: #d1d5db; text-decoration: none; transition: var(--transition); }
        footer a:hover { color: var(--primary-color); }
        footer .navbar-brand {
            display: inline-flex;
            padding: 0;
        }
        .footer-brand-logo {
            width: 180px;
            max-width: 100%;
        }
        .footer-links a { color: #d1d5db; text-decoration: none; transition: var(--transition); }
        .footer-links a:hover { color: var(--primary-color); padding-left: 5px; }
        .footer-contact i { color: var(--primary-color); margin-right: 10px; width: 20px; text-align: center; }
        .footer-review-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; color: #fff; text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
        .footer-review-btn:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
        .footer-review-btn i { color: inherit; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.9rem; }
        .footer-bottom a { color: var(--primary-color); text-decoration: none; }
        .footer-bottom a:hover { text-decoration: underline; }

        .use-case-link {
            color: var(--secondary-color);
            background: #ffffff;
            border: 1px solid var(--border-color) !important;
            transition: var(--transition);
        }
        .use-case-link:hover {
            color: var(--primary-color);
            border-color: var(--primary-color) !important;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .use-case-link strong {
            color: inherit;
            font-family: 'Poppins', sans-serif;
        }

        .page-hero {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: 145px 0 70px;
            background:
                radial-gradient(38rem 38rem at 6% 8%, rgba(210, 105, 30, 0.20), transparent 60%),
                radial-gradient(34rem 34rem at 94% 2%, rgba(245, 158, 11, 0.20), transparent 60%),
                radial-gradient(42rem 42rem at 82% 96%, rgba(37, 99, 235, 0.12), transparent 60%),
                radial-gradient(30rem 30rem at 16% 102%, rgba(16, 185, 129, 0.10), transparent 60%),
                linear-gradient(180deg, #fff1e4 0%, #fbf6f1 55%, #ffffff 100%);
            text-align: center;
        }
        /* Naključno okrasje (broške) – generira ga site.js, drugačno ob vsaki osvežitvi */
        .hero-decor {
            position: absolute;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
            -webkit-mask-image: radial-gradient(150% 130% at 50% -10%, #000 42%, transparent 88%);
            mask-image: radial-gradient(150% 130% at 50% -10%, #000 42%, transparent 88%);
        }
        .hero-badge {
            position: absolute;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        .hero-badge--ring {
            border-style: solid;
            background: transparent;
        }
        .page-hero > .container {
            position: relative;
            z-index: 1;
        }
        .page-hero h1 {
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            margin-bottom: 16px;
        }
        .page-hero p {
            max-width: 760px;
            margin: 0 auto;
            color: var(--text-color);
            font-size: 1.08rem;
        }
        .legal-content {
            max-width: 920px;
            margin: 0 auto;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-md);
            padding: 34px;
            box-shadow: var(--shadow-sm);
        }
        .legal-content h2 {
            font-size: 1.35rem;
            margin-top: 28px;
        }
        .legal-content h2:first-child {
            margin-top: 0;
        }
        .order-help-card {
            position: sticky;
            top: 110px;
            background: white;
            border: 1px solid rgba(210, 105, 30, 0.18);
            border-radius: var(--border-radius-md);
            padding: 26px;
            box-shadow: var(--shadow-sm);
        }
        .order-help-card .help-icon {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary-color);
            font-size: 1.55rem;
            margin-bottom: 14px;
        }
        .order-help-card h2 {
            font-size: 1.35rem;
            margin-bottom: 10px;
        }
        .help-list {
            list-style: none;
            padding: 0;
            margin: 18px 0 0;
        }
        .help-list li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--text-color);
        }
        .help-list i {
            color: var(--primary-color);
            margin-top: 2px;
        }
        .cookie-consent {
            position: fixed;
            left: 22px;
            bottom: 22px;
            z-index: 1100;
            width: min(360px, calc(100vw - 44px));
            display: flex;
            gap: 12px;
            align-items: flex-start;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-lg);
            padding: 16px;
        }
        .cookie-consent[hidden] {
            display: none !important;
        }
        .cookie-consent__icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary-color);
            font-size: 1.15rem;
        }
        .cookie-consent__title {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 4px;
        }
        .cookie-consent__body {
            min-width: 0;
        }
        .cookie-consent p {
            margin: 0 0 10px;
            font-size: 0.9rem;
            overflow-wrap: anywhere;
        }
        .cookie-consent__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .cookie-consent__actions button {
            border: 0;
            border-radius: 999px;
            padding: 8px 12px;
            font-weight: 700;
            font-size: 0.88rem;
        }
        .cookie-consent__accept {
            background: var(--primary-color);
            color: white;
        }
        .cookie-consent__reject {
            background: #f3f4f6;
            color: var(--secondary-color);
        }
        /* Back to top */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow-md);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            text-decoration: none;
        }
        #back-to-top.active { opacity: 1; visibility: visible; }
        #back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

        @media (max-width: 768px) {
            .navbar > .container {
                max-width: 100%;
                display: flex;
                flex-wrap: nowrap;
                align-items: center;
                justify-content: space-between;
            }
            .mobile-nav-toggle {
                margin-left: auto;
                flex: 0 0 auto;
                position: fixed;
                top: 50%;
                right: 16px;
                top: 16px;
                transform: none;
                display: inline-flex !important;
                z-index: 1201;
            }
            .navbar-collapse {
                position: absolute;
                top: calc(100% + 1px);
                left: 12px;
                right: 12px;
                background: rgba(255, 255, 255, 0.98);
                border: 1px solid var(--border-color);
                border-radius: 14px;
                padding: 12px;
                box-shadow: var(--shadow-md);
            }
            #hero {
                min-height: auto;
                padding: 102px 0 64px;
                text-align: center;
            }
            #hero::before {
                background:
                    radial-gradient(20rem 20rem at 50% 4%, rgba(210,105,30,0.20), transparent 60%),
                    linear-gradient(180deg, rgba(255,243,232,0.95) 0%, rgba(255,245,236,0.86) 56%, rgba(255,247,240,0.72) 100%);
            }
            #hero h1 {
                font-size: 1.82rem;
                line-height: 1.14;
                width: min(280px, calc(100vw - 32px));
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            #hero h1 span {
                display: block;
            }
            #hero p.lead {
                width: min(280px, calc(100vw - 40px));
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                font-size: 0.98rem;
            }
            #hero .btn {
                width: min(270px, calc(100vw - 32px));
                margin-left: auto;
                margin-right: auto;
            }
            #hero .d-flex {
                justify-content: center;
            }
            .hero-img-wrapper {
                width: min(360px, 92vw);
                margin-top: 10px;
                border-radius: 22px;
                padding: 8px;
            }
            .hero-img-wrapper img {
                border-radius: 16px;
            }
            .trust-badges { justify-content: center; }
            .trust-badge {
                width: min(280px, 100%);
                justify-content: center;
            }
            .quick-facts-panel {
                margin-top: -30px;
                padding: 20px;
            }
            .pricing-card.popular { transform: none; }
            .pricing-card.popular:hover { transform: translateY(-5px); }
            .contact-box { padding: 30px 20px; }
            .page-hero {
                padding: 110px 0 42px;
                overflow: hidden;
            }
            .page-hero h1 {
                width: min(300px, calc(100vw - 32px));
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                font-size: 1.85rem;
                line-height: 1.16;
            }
            .page-hero p {
                width: min(300px, calc(100vw - 40px));
                max-width: 100%;
                font-size: 1rem;
            }
            .legal-content { padding: 24px; }
            .order-help-card { position: static; }
            .contact-box,
            .legal-content,
            .order-help-card,
            .artwork-card,
            .form-section-note {
                max-width: calc(100vw - 24px);
                overflow-wrap: anywhere;
            }
            .form-section-note {
                align-items: flex-start;
            }
            .form-control,
            .form-select {
                min-width: 0;
            }
            .cookie-consent {
                left: 12px;
                right: 12px;
                bottom: 12px;
                width: auto;
                padding: 14px;
            }
            .cookie-consent__body {
                width: min(280px, calc(100vw - 96px));
            }
        }

        @media (min-width: 520px) and (max-width: 768px) {
            #hero h1 {
                font-size: 2.45rem;
                width: min(100%, 12em);
            }
            #hero p.lead {
                width: min(100%, 38rem);
                font-size: 1.08rem;
            }
            #hero .btn {
                width: auto;
            }
            .trust-badge {
                width: auto;
            }
            .page-hero h1 {
                width: min(100%, 720px);
                font-size: clamp(2.2rem, 5vw, 3rem);
            }
            .page-hero p {
                width: min(100%, 760px);
                font-size: 1.08rem;
            }
        }

        @media (max-width: 380px) {
            .navbar-brand {
                font-size: 1.32rem;
                gap: 8px;
            }
            .brand-logo {
                width: 148px;
                max-width: 40vw;
            }
            .brand-mark {
                width: 30px;
                height: 30px;
            }
            #hero h1 {
                font-size: 1.62rem;
                width: min(280px, calc(100vw - 32px));
            }
            #hero p.lead {
                width: min(280px, calc(100vw - 40px));
                font-size: 0.98rem;
            }
            #hero .btn {
                width: min(270px, calc(100vw - 32px));
            }
            .cookie-consent {
                display: block;
            }
            .cookie-consent__icon {
                float: left;
                margin: 0 10px 4px 0;
            }
            .cookie-consent__actions {
                clear: both;
            }
        }

/* Order wizard */
.order-wizard-section {
    padding: 112px 0 64px;
    background:
        linear-gradient(180deg, #fff7f1 0%, #ffffff 34%),
        #ffffff;
}

.wizard-shell {
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
    padding: 28px;
}

.wizard-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.wizard-heading h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3.45rem);
    letter-spacing: 0;
}

.wizard-heading p {
    max-width: 780px;
    margin: 0;
    font-size: 1.08rem;
}

.wizard-heading__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.order-wizard {
    position: relative;
}

.wizard-progress {
    margin-bottom: 18px;
}

.wizard-progress__bar {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #f1f5f9;
}

.wizard-progress__bar span {
    display: block;
    width: 16.666%;
    height: 100%;
    border-radius: inherit;
    background: var(--primary-color);
    transition: width 0.25s ease;
}

.wizard-progress__steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.wizard-step-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.88rem;
}

.wizard-step-tab span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--primary-color);
    font-size: 0.78rem;
}

.wizard-step-tab.is-active,
.wizard-step-tab.is-complete {
    border-color: rgba(210, 105, 30, 0.34);
    background: var(--primary-light);
    color: var(--secondary-color);
}

.wizard-step-tab--after[disabled] {
    opacity: 0.55;
    cursor: default;
}

.wizard-progress--review {
    max-width: 720px;
    margin: 22px auto 0;
}

.wizard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.wizard-main {
    min-width: 0;
}

.wizard-step {
    display: none;
    padding: 0;
}

.wizard-step.is-active {
    display: block;
}

.wizard-step-title {
    margin-bottom: 22px;
}

.wizard-step-title h2 {
    margin-bottom: 8px;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.wizard-step-title p {
    margin-bottom: 0;
}

.choice-grid {
    display: grid;
    gap: 12px;
}

.choice-grid--usage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid--sizes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
    position: relative;
    display: block;
    min-height: 138px;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card:hover {
    transform: translateY(-2px);
    border-color: rgba(210, 105, 30, 0.35);
    box-shadow: var(--shadow-sm);
}

.choice-card input {
    position: absolute;
    inset: 16px 16px auto auto;
    width: 18px;
    height: 18px;
}

.choice-card:has(input:checked) {
    border-color: var(--primary-color);
    background: #fff8f3;
    box-shadow: 0 12px 28px rgba(210, 105, 30, 0.13);
}

.choice-card strong,
.choice-card small,
.choice-card span {
    display: block;
    padding-right: 22px;
}

.choice-card strong {
    color: var(--secondary-color);
    font-size: 1.02rem;
}

.choice-card small {
    margin-top: 8px;
    color: var(--text-color);
    line-height: 1.48;
}

.choice-card span:not(.choice-card__icon) {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;
}

.choice-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #fff0e6;
    color: var(--primary-color);
}

.microcopy-panel,
.bleed-info,
.wizard-alert,
.summary-note {
    border-radius: 8px;
    background: #fff7ed;
    border: 1px solid rgba(210, 105, 30, 0.18);
}

.microcopy-panel {
    margin-top: 16px;
    padding: 14px 16px;
    color: #7c2d12;
}

.wizard-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    color: #7c2d12;
    font-weight: 700;
}

/* Plavajoče obvestilo o napaki – vedno vidno, ne glede na pomik. */
.wizard-alert:not([hidden]) {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 1085;
    width: min(560px, calc(100% - 32px));
    margin: 0;
    background: #fef2f2;
    border: 1px solid #f3a5a5;
    color: #b91c1c;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    animation: wizardAlertIn 0.18s ease-out;
}
@keyframes wizardAlertIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Napačno polje – rdeča obroba. */
.field-invalid,
.field-invalid .form-control,
.field-invalid .form-select {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.16) !important;
}
.toggle-line.field-invalid,
.privacy-check.field-invalid {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

/* Napis "brez skritih stroškov". */
.no-hidden-fees {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    font-size: 0.92rem;
}
.no-hidden-fees i { font-size: 1.05rem; flex: 0 0 auto; }
.no-hidden-fees--center { max-width: 680px; margin-left: auto; margin-right: auto; justify-content: center; }

.size-comparison {
    display: flex;
    align-items: end;
    gap: 20px;
    min-height: 96px;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 8px;
    background: #f8fafc;
    overflow-x: auto;
}

.size-comparison span {
    width: calc(var(--s) * 1.3px);
    height: calc(var(--s) * 1.3px);
    min-width: calc(var(--s) * 1.3px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: inset 0 0 0 6px rgba(210, 105, 30, 0.08);
}

.motif-repeater {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.motif-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    padding: 18px;
}

.motif-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.motif-card__head h3 {
    margin: 0;
    font-size: 1.2rem;
}

.motif-fields {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 170px;
    gap: 14px;
}

.motif-fields .form-control,
.motif-fields .form-select,
.order-wizard .form-control,
.order-wizard .form-select {
    border-radius: 8px;
    min-height: 48px;
}

.motif-prep-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.motif-prep-options label,
.segmented-control label,
.toggle-line,
.privacy-check {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    padding: 11px 12px;
    cursor: pointer;
}

.motif-prep-options label:has(input:checked),
.segmented-control label:has(input:checked),
.toggle-line:has(input:checked),
.privacy-check:has(input:checked) {
    border-color: var(--primary-color);
    background: #fff8f3;
}

.motif-warning {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff7ed;
    color: #7c2d12;
    border: 1px solid rgba(210, 105, 30, 0.2);
}

.motif-warning.is-visible {
    display: block;
}

.motif-line-total {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.motif-line-total span {
    min-height: 58px;
    padding: 10px;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.82rem;
}

.motif-line-total strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.preview-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
}

.preview-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.preview-canvas-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 300px;
    border-radius: 8px;
    background:
        linear-gradient(45deg, #f1f5f9 25%, transparent 25%),
        linear-gradient(-45deg, #f1f5f9 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f1f5f9 75%),
        linear-gradient(-45deg, transparent 75%, #f1f5f9 75%);
    background-size: 18px 18px;
    background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}

.preview-canvas {
    width: 280px;
    height: 280px;
    max-width: 100%;
    touch-action: none;
    cursor: grab;
}

.preview-empty {
    display: grid;
    place-items: center;
    min-height: 240px;
    border-radius: 8px;
    background: #f8fafc;
    text-align: center;
    padding: 18px;
}

.preview-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.bleed-info {
    margin-top: 18px;
    padding: 16px;
}

.segmented-control {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.conditional-fields {
    display: none;
}

.conditional-fields.is-visible {
    display: block;
}

.toggle-line,
.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
}

.toggle-line input,
.privacy-check input {
    flex: 0 0 auto;
    margin: 0;
}

.wizard-sidebar {
    min-width: 0;
    position: sticky;
    top: 104px;
    align-self: start;
    z-index: 5;
}

.sticky-summary {
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 18px;
    max-height: calc(100vh - 124px);
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.sticky-summary h2 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.live-summary-table {
    display: grid;
    gap: 10px;
}

.live-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef2f7;
}

.live-summary-row strong {
    color: var(--secondary-color);
}

.live-summary-row.total {
    border-bottom: 0;
    padding-top: 8px;
    font-size: 1.15rem;
}

.summary-note {
    margin: 14px 0;
    padding: 12px;
    font-size: 0.88rem;
}

.summary-panel {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.summary-panel table {
    width: 100%;
    margin: 0;
}

.summary-panel th,
.summary-panel td {
    padding: 12px;
    border-bottom: 1px solid #eef2f7;
    vertical-align: top;
}

.summary-panel th {
    color: var(--secondary-color);
    background: #f8fafc;
}

.summary-totals {
    padding: 16px;
    background: #fff8f3;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.wizard-actions__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.form-submit-state {
    margin-top: 16px;
}

.mobile-sticky-cta {
    display: none;
}

/* SEO landing pages */
.seo-page-hero {
    padding-bottom: 64px;
}

.page-hero--split {
    text-align: left;
}

.page-hero--split p {
    margin-left: 0;
    margin-right: 0;
}

/* Heroti s sliko na desni: naslov, opis in gumbi desno poravnani (le na namizju,
   kjer je slika dejansko ob besedilu; mobilno se slika prestavi pod besedilo). */
@media (min-width: 992px) {
    .seo-page-hero .col-lg-7,
    .page-hero--split .col-lg-7 {
        text-align: right;
    }
    .seo-page-hero .col-lg-7 p,
    .page-hero--split .col-lg-7 p {
        margin-left: auto;
        margin-right: 0;
    }
    .seo-page-hero .col-lg-7 .d-flex,
    .page-hero--split .col-lg-7 .d-flex {
        justify-content: flex-end;
    }
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--text-color);
    font-size: 0.94rem;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
}

.seo-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.seo-content-section {
    padding: 64px 0;
}

.seo-content {
    max-width: 980px;
    margin: 0 auto;
}

.seo-content > section {
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
}

.seo-content h2 {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.seo-content p {
    font-size: 1.02rem;
    line-height: 1.75;
}

.seo-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px !important;
    border: 1px solid rgba(210, 105, 30, 0.22) !important;
    border-radius: 8px;
    background: #fff7ed;
}

.seo-cta-strip h2 {
    margin-bottom: 8px;
}

.seo-cta-strip p {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    padding: 14px 16px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--secondary-color);
    font-weight: 800;
}

.faq-list p {
    margin: 12px 0 0;
    font-size: 0.98rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid rgba(210, 105, 30, 0.25);
    border-radius: 8px;
    color: var(--primary-dark);
    background: #fff8f3;
    text-decoration: none;
    font-weight: 800;
}

.pricing-calculator {
    display: block;
    margin-top: 34px;
    padding: 26px;
    border: 1px solid rgba(210, 105, 30, 0.24);
    border-radius: 12px;
    background: #fff8f3;
}

.pricing-calculator__intro {
    margin-bottom: 18px;
}

.pricing-calculator h2 {
    margin-bottom: 6px;
    font-size: 1.5rem;
}

.pricing-calculator p {
    margin-bottom: 0;
}

.pricing-calculator__controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
    align-items: end;
}

.pricing-calculator__options {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.pricing-calculator__options .pricing-calculator__check {
    flex: 1 1 240px;
}

.pricing-calculator__result {
    margin-bottom: 18px;
}

.pricing-calculator [data-calc-continue] {
    display: inline-flex;
    align-items: center;
}

/* Tabele cen po velikostih: številčni stolpci poravnani desno */
.pricing-size-table th:not(:first-child),
.pricing-size-table td:not(:first-child) {
    text-align: right;
    white-space: nowrap;
}

.pricing-calculator__controls label {
    color: var(--secondary-color);
    font-weight: 800;
}

.pricing-calculator__check {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
}

.pricing-calculator__result {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 28px;
    padding: 16px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(31, 41, 55, 0.08);
}

.pricing-calculator__result div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 5px;
    font-size: 0.9rem;
}

.pricing-calculator__result div.total {
    grid-column: 1 / -1;
    border-bottom: 0;
    color: var(--secondary-color);
    font-size: 1.05rem;
    font-weight: 700;
}

.pricing-calculator__result p {
    grid-column: 1 / -1;
}

.pricing-calculator__result strong {
    color: var(--secondary-color);
}

.pricing-calculator__result p {
    margin-top: 6px;
    color: #7c2d12;
    font-size: 0.84rem;
}

.example-calculation {
    display: grid;
    gap: 7px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.example-calculation div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted-color);
}

.example-calculation strong {
    color: var(--secondary-color);
    text-align: right;
    white-space: nowrap;
}

.example-calculation .total {
    padding-top: 7px;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-weight: 800;
}

.bleed-diagram-row {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(210, 105, 30, 0.2);
    border-radius: 8px;
    background: #fff;
}

.bleed-diagram {
    position: relative;
    width: min(280px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.16) 0 55%, rgba(210, 105, 30, 0.08) 56% 100%);
    border: 3px dashed var(--primary-color);
}

.bleed-diagram::before,
.bleed-diagram::after {
    content: "";
    position: absolute;
    inset: 17%;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.bleed-diagram::after {
    inset: 28%;
    border: 2px dashed #64748b;
}

.bleed-diagram span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.bleed-diagram__outer {
    top: 12px;
}

.bleed-diagram__safe {
    top: 42%;
}

.bleed-diagram__visible {
    bottom: 18px;
}

.section-eyebrow {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.artwork-guide {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 26px;
    border: 1px solid rgba(210, 105, 30, 0.22);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    scroll-margin-top: 110px;
}

.artwork-guide__diagram {
    position: relative;
    width: min(300px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    background:
        repeating-conic-gradient(from 45deg, rgba(210, 105, 30, 0.08) 0deg 12deg, rgba(255, 255, 255, 0) 12deg 24deg),
        radial-gradient(circle, rgba(210, 105, 30, 0.15) 0 100%);
}

.artwork-guide__circle {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.artwork-guide__circle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.18;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.artwork-guide__circle--bleed {
    width: 100%;
    height: 100%;
    border: 3px dashed var(--primary-color);
    z-index: 3;
}

.artwork-guide__circle--bleed span {
    align-self: start;
    margin-top: 14px;
    color: var(--primary-color);
}

.artwork-guide__circle--visible {
    width: 83%;
    height: 83%;
    border: 3px solid var(--secondary-color);
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.artwork-guide__circle--visible span {
    align-self: end;
    margin-bottom: 18px;
}

.artwork-guide__circle--safe {
    width: 76%;
    height: 76%;
    border: 2px dashed #0f766e;
    background: rgba(15, 118, 110, 0.08);
    z-index: 2;
}

.artwork-guide__circle--safe span {
    color: #0f766e;
}

.artwork-guide__content h2 {
    margin-top: 0;
}

.artwork-guide__legend {
    display: grid;
    gap: 9px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.artwork-guide__legend li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--muted-color);
}

.artwork-guide__legend strong {
    color: var(--secondary-color);
}

.artwork-guide__dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    border: 2px solid currentColor;
}

.artwork-guide__dot--safe {
    color: #0f766e;
    background: rgba(15, 118, 110, 0.16);
}

.artwork-guide__dot--visible {
    color: var(--secondary-color);
    background: rgba(31, 41, 55, 0.12);
}

.artwork-guide__dot--bleed {
    color: var(--primary-color);
    background: rgba(210, 105, 30, 0.16);
}

.artwork-guide__note {
    margin-bottom: 0;
    padding: 12px 14px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    background: #fff8f0;
    color: var(--secondary-color);
    font-weight: 600;
}

.wizard-progress__steps--compact .wizard-step-tab {
    min-width: 0;
}

.upload-dropzone {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 190px;
    padding: 28px;
    border: 2px dashed rgba(210, 105, 30, 0.45);
    border-radius: 8px;
    background: #fffaf4;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.upload-dropzone:hover,
.upload-dropzone.is-dragover {
    border-color: var(--primary-color);
    background: #fff4e8;
    transform: translateY(-1px);
}

.upload-dropzone input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.upload-dropzone__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-size: 1.9rem;
    box-shadow: var(--shadow-sm);
}

.upload-dropzone strong {
    color: var(--secondary-color);
    font-size: 1.08rem;
}

.upload-dropzone small {
    max-width: 650px;
    color: var(--muted-color);
    line-height: 1.55;
}

.wizard-inline-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 16px 0 22px;
}

.preview-grid--configurator {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    align-items: start;
}

.motif-config-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.motif-fields--three {
    grid-template-columns: minmax(0, 1fr) 132px 112px;
}

.name-series-box {
    display: grid;
    gap: 10px;
}

.name-series-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0;
}

.name-series-fields {
    display: none;
    padding: 14px;
    border: 1px solid rgba(210, 105, 30, 0.24);
    border-radius: 8px;
    background: #fff8f3;
}

.name-series-box.is-active .name-series-fields {
    display: grid;
    gap: 10px;
}

.name-series-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.name-series-price-note {
    color: #7c2d12;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--muted-color);
    text-align: center;
}

.preview-confirm-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(210, 105, 30, 0.25);
    border-radius: 8px;
    background: #fff8ef;
    color: var(--secondary-color);
}

.preview-confirm-card input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.summary-total-box {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border-color);
}

.summary-total-box > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 7px;
    border-bottom: 1px solid #eef2f7;
}

.summary-total-box > div.total {
    border-bottom: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.summary-total-box strong {
    text-align: right;
    color: var(--secondary-color);
}

.summary-explain {
    margin-top: 14px;
    color: var(--muted-color);
}

.review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
}

.review-main {
    display: grid;
    gap: 22px;
}

.review-panel {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.review-motif-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.review-motif-card {
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
}

.review-preview-circle {
    display: grid;
    place-items: center;
    width: min(230px, 100%);
    aspect-ratio: 1;
    margin: 0 auto 14px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px dashed var(--primary-color);
    background:
        linear-gradient(45deg, #f3f6fb 25%, transparent 25%),
        linear-gradient(-45deg, #f3f6fb 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f3f6fb 75%),
        linear-gradient(-45deg, transparent 75%, #f3f6fb 75%);
    background-color: #fff;
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

.review-preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-preview-circle div {
    display: grid;
    place-items: center;
    gap: 8px;
    color: var(--muted-color);
    text-align: center;
}

.review-preview-circle i {
    color: var(--primary-color);
    font-size: 2rem;
}

.review-motif-card dl,
.review-data-grid {
    display: grid;
    gap: 8px;
}

.review-motif-card dl div,
.review-data-grid div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 7px;
    border-bottom: 1px solid #eef2f7;
}

.review-motif-card dt,
.review-data-grid span {
    color: var(--muted-color);
}

.review-motif-card dd {
    margin: 0;
    font-weight: 800;
    color: var(--secondary-color);
}

.review-file-list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted-color);
    font-size: 0.9rem;
}

.review-summary {
    min-width: 0;
}

@media (max-width: 1199px) {
    .bleed-diagram-row {
        grid-template-columns: 1fr;
    }

    .artwork-guide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .order-wizard-section {
        padding-top: 92px;
    }

    .wizard-layout {
        grid-template-columns: 1fr;
    }

    .wizard-sidebar {
        position: static;
    }

    .sticky-summary {
        max-height: none;
        overflow: visible;
        scrollbar-gutter: auto;
    }

    .wizard-shell {
        padding: 18px;
    }

    .wizard-heading {
        display: block;
    }

    .wizard-heading__actions {
        justify-content: flex-start;
        margin-top: 16px;
    }

    .wizard-progress__steps {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .wizard-step-tab {
        min-width: 128px;
    }

    .choice-grid--usage,
    .choice-grid--sizes,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .review-layout,
    .review-motif-grid {
        grid-template-columns: 1fr;
    }

    .motif-fields,
    .motif-fields--three,
    .motif-prep-options,
    .segmented-control {
        grid-template-columns: 1fr;
    }

    .motif-line-total {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-actions {
        display: block;
    }

    .wizard-actions__right {
        justify-content: stretch;
        margin-top: 12px;
    }

    .wizard-actions .btn {
        width: 100%;
    }

    .seo-cta-strip {
        display: block;
    }

    .seo-cta-strip .btn {
        margin-top: 14px;
        width: 100%;
    }

    .pricing-calculator__controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-progress__steps--compact .wizard-step-tab {
        min-width: 170px;
    }
}

@media (max-width: 575px) {
    .pricing-calculator__controls,
    .pricing-calculator__result {
        grid-template-columns: 1fr;
    }

    .order-wizard-section {
        padding-bottom: 92px;
    }

    .wizard-shell {
        margin-inline: -4px;
        padding: 14px;
    }

    .choice-card {
        min-height: auto;
    }

    .motif-card {
        padding: 14px;
    }

    .motif-card__head {
        display: block;
    }

    .motif-card__head .btn {
        margin-top: 10px;
        width: 100%;
    }

    .motif-line-total {
        grid-template-columns: 1fr;
    }

    .name-series-head {
        display: grid;
    }

    .name-series-head .btn {
        width: 100%;
    }

    .summary-panel {
        overflow-x: auto;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
    }

    .pricing-table tbody tr.is-recommended td:first-child::after {
        display: block;
        margin: 3px 0 0;
    }

    .pricing-actions .btn {
        width: 100%;
    }

    .artwork-guide {
        padding: 18px;
    }

    .artwork-guide__diagram {
        width: min(250px, 100%);
    }

    .artwork-guide__circle span {
        min-width: 84px;
        padding: 4px 7px;
        font-size: 0.68rem;
    }

    .artwork-guide__circle--bleed span {
        margin-top: 22px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1040;
        display: grid;
        grid-template-columns: 1fr 0.65fr;
        gap: 8px;
    }

    .mobile-sticky-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 48px;
        border-radius: 8px;
        background: var(--primary-color);
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        box-shadow: var(--shadow-md);
    }

    .mobile-sticky-cta a:last-child {
        background: var(--secondary-color);
    }
}


/* Hero pomirjevalni mikrocopy */
.hero-reassurance {
    margin: 14px 0 0;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-reassurance i {
    color: var(--primary-color);
}

/* Mnenja strank */
#mnenja .testimonial-rating {
    text-align: center;
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 6px;
}
.testimonial-stars {
    color: #f59e0b;
    letter-spacing: 1px;
    display: inline-flex;
    gap: 1px;
}
.testimonial-card {
    height: 100%;
    margin: 0;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.testimonial-card blockquote {
    margin: 0;
    color: var(--text-color);
    font-size: 0.98rem;
    line-height: 1.6;
}
.testimonial-card figcaption {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}
.testimonial-card figcaption strong {
    color: var(--secondary-color);
}
.testimonial-card figcaption span {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Naročilnica: noscript opozorilo in mikrocopy zaupanja */
.noscript-notice {
    margin: 8px 0 20px;
    padding: 20px 22px;
    border: 1px solid rgba(210, 105, 30, 0.3);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    background: var(--primary-light);
}
.noscript-notice h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}
.noscript-notice ul {
    margin: 10px 0;
    padding-left: 20px;
}
.noscript-notice li {
    margin-bottom: 6px;
}
.form-reassurance {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    color: var(--text-color);
    font-size: 0.92rem;
}
.form-reassurance i {
    color: var(--primary-color);
}

/* Predloge za prenos */
.template-downloads {
    padding: 22px;
    border: 1px solid rgba(210, 105, 30, 0.24);
    border-radius: var(--border-radius-md);
    background: var(--primary-light);
}
.template-downloads__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}
.template-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 16px 10px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}
.template-download:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.template-download i { font-size: 1.3rem; color: var(--primary-color); }
.template-download strong { color: var(--secondary-color); font-size: 1.05rem; }
.template-download span { font-size: 0.78rem; color: #6b7280; }
@media (max-width: 575px) {
    .template-downloads__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Blog / nasveti */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.blog-card__tag { font-size: 0.78rem; font-weight: 700; color: var(--primary-color); text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card h3 { font-size: 1.2rem; margin: 0; }
.blog-card p { margin: 0; color: var(--text-color); font-size: 0.96rem; }
.blog-card a.blog-card__link { margin-top: auto; font-weight: 700; text-decoration: none; }
.blog-article { max-width: 820px; margin: 0 auto; }
.blog-article h2 { margin-top: 32px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.blog-article p, .blog-article li { font-size: 1.04rem; line-height: 1.75; }
.blog-article ul { padding-left: 20px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog – slike, figure, callout, CTA */
.blog-card__thumb {
    display: block;
    aspect-ratio: 5 / 3;
    overflow: hidden;
}
.blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card h3 a { text-decoration: none; color: var(--secondary-color); }
.blog-card h3 a:hover { color: var(--primary-color); }

.blog-lead-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    margin-bottom: 26px;
}
.blog-figure {
    margin: 26px 0;
}
.blog-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    display: block;
}
.blog-figure figcaption {
    margin-top: 8px;
    font-size: 0.88rem;
    color: #6b7280;
    text-align: center;
}
.blog-article .callout {
    margin: 24px 0;
    padding: 16px 18px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    background: var(--primary-light);
    font-size: 0.98rem;
}
.blog-article .callout--fact {
    border-left-color: #2563eb;
    background: #eff6ff;
}
.blog-article .callout strong { color: var(--secondary-color); }
.blog-cta {
    margin: 30px 0 8px;
    padding: 24px;
    border-radius: var(--border-radius-md);
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}
.blog-cta p {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.05rem;
}

/* Diagram (bleed/varna cona) v blog članku */
.blog-figure--diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
}
.blog-figure--diagram .artwork-guide__diagram {
    margin-bottom: 12px;
}

/* Vodnik velikosti (priprava grafike) – diagrami s črtkami za vse velikosti */
.size-guide-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 6px 0 14px;
    font-size: 0.9rem;
    color: var(--text-color);
}
.size-guide-legend span { display: inline-flex; align-items: center; gap: 7px; }
.size-guide-chip { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
.size-guide-chip--bleed { border: 2px dashed var(--primary-color); }
.size-guide-chip--visible { border: 2px solid var(--secondary-color); }
.size-guide-chip--safe { border: 2px dashed #0f766e; }

.size-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 8px 0 20px;
}
.size-guide-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px 12px;
}
.size-ring {
    position: relative;
    width: 130px;
    max-width: 100%;
    aspect-ratio: 1;
    margin: 0 auto 12px;
}
.size-ring__c {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.size-ring__bleed { width: 100%; height: 100%; border: 2px dashed var(--primary-color); }
.size-ring__visible { border: 2px solid var(--secondary-color); }
.size-ring__safe { border: 2px dashed #0f766e; }
.size-guide-card h3 { font-size: 1.15rem; margin: 0 0 6px; }
.size-guide-dims { font-size: 0.8rem; color: #6b7280; margin: 0 0 8px; line-height: 1.5; }
.size-guide-tip { font-size: 0.86rem; margin: 0; color: var(--text-color); }
@media (max-width: 991px) { .size-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .size-guide-grid { grid-template-columns: 1fr; } }
