/*
Theme Name: Printko 3D Shop
Theme URI: https://printko.me
Author: Printko
Description: Printko — 3D štampa webshop (narandžasta brend tema, pingvin maskot)
Version: 3.0.0
*/

:root {
    /* Colors - Printko Light Brand */
    --color-bg: #FFFBF7;
    --color-surface: #FFF3E9;
    --color-surface-transparent: rgba(255, 255, 255, 0.8);
    --color-primary: #F26A1B; /* Printko Orange */
    --color-primary-hover: #d9590f;
    --color-secondary: #FF9D4D; /* Light Orange */
    --color-accent: #FF5C39; /* Orange-Red */
    --color-text: #2A2320;
    --color-text-muted: #7d7269;
    --color-border: #f0e4d8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-surface: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    --gradient-glow: radial-gradient(circle at center, rgba(242, 106, 27, 0.18) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Baloo 2', 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(242, 106, 27, 0.3);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-center { text-align: center; }
.mt-lg { margin-top: var(--spacing-lg); }
.bg-surface { background-color: var(--color-surface); }
.section-spacing { padding: var(--spacing-xl) 0; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(242, 106, 27, 0.5);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: rgba(242, 106, 27, 0.1);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(21, 17, 13, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(21, 17, 13, 0.95);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo span {
    color: var(--color-primary);
}

.site-logo-img {
    height: 46px;
    width: auto;
    display: block;
}

@media (max-width: 640px) {
    .site-logo-img { height: 38px; }
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: #fff;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    font-size: 1.25rem;
    color: var(--color-text);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    background-image: 
        radial-gradient(at 0% 0%, rgba(242, 106, 27, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 157, 77, 0.15) 0px, transparent 50%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: 10%;
    left: 10%;
    opacity: 0.4;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--color-secondary);
    bottom: 20%;
    right: 10%;
    opacity: 0.3;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.4rem;
}
@media (min-width: 1000px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 17, 13, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-title a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.product-meta {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--color-secondary);
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: #0d0a07;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block h3, .footer-block h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.brand-block p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--color-text-muted);
}

.footer-nav a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.contact-block li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.contact-block i {
    color: var(--color-secondary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    color: #fff;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons,
    .feature-list {
        justify-content: center;
    }
    
    .feature-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--color-surface);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        border-bottom: 1px solid var(--color-border);
    }
    
    .main-navigation.active {
        transform: translateY(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================================
   PRINTKO — LIGHT THEME OVERRIDES + HOMEPAGE
   ============================================================ */
h1, h2, h3, h4, h5, h6 { color: var(--color-text); }

/* Header light */
.site-header {
    background: rgba(255, 251, 247, 0.92);
    border-bottom: 1px solid var(--color-border);
}
.site-header.scrolled {
    background: rgba(255, 251, 247, 0.98);
    box-shadow: 0 4px 20px rgba(242, 106, 27, 0.08);
}
.main-navigation a { color: var(--color-text-muted); }
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--color-primary); }
.menu-toggle, .cart-icon { color: var(--color-text); }

/* Buttons */
.btn-primary { box-shadow: 0 8px 20px rgba(242, 106, 27, 0.25); color: #fff; }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(242, 106, 27, 0.4); }
.btn-outline:hover { background: rgba(242, 106, 27, 0.08); }

/* Hero light */
.hero-bg {
    background: var(--color-bg);
    background-image:
        radial-gradient(at 12% 12%, rgba(242, 106, 27, 0.13) 0px, transparent 45%),
        radial-gradient(at 88% 18%, rgba(255, 157, 77, 0.14) 0px, transparent 45%);
}
.hero-section { min-height: 100vh; padding: 100px 0 60px; }
.floating-shape { opacity: 0.22 !important; }

/* Cards light */
.product-card, .visual-card {
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.product-card:hover { background: #fff; box-shadow: 0 16px 32px rgba(242, 106, 27, 0.12); }
.product-title a { color: var(--color-text); }
.about-preview.bg-surface { background: var(--color-surface); }

/* Footer (ostaje tamna) — svijetli tekst */
.footer-block h3, .footer-block h4 { color: #fff; }
.brand-block p, .footer-nav a, .contact-block li, .footer-bottom { color: #b8a89b; }
.footer-nav a:hover { color: var(--color-secondary); }

/* === Kategorije === */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 920px; margin: 0 auto; }
@media (max-width: 820px) { .cat-grid { grid-template-columns: repeat(3, 1fr); max-width: 640px; } }
@media (max-width: 500px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
    border: 1px solid var(--color-border); border-radius: 20px;
    padding: 1.7rem 1rem 1.4rem; text-align: center; transition: var(--transition);
    color: var(--color-text); position: relative; overflow: hidden;
}
.cat-card::after {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(242, 106, 27, 0.06); transition: var(--transition);
}
.cat-card:hover { transform: translateY(-7px); border-color: var(--color-primary); box-shadow: 0 16px 34px rgba(242, 106, 27, 0.16); }
.cat-card:hover::after { transform: scale(1.6); background: rgba(242, 106, 27, 0.09); }
.cat-card .emoji {
    font-size: 2rem; width: 66px; height: 66px;
    background: linear-gradient(135deg, #FFEFE0, #FFE0C7);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; position: relative; z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(242, 106, 27, 0.12); transition: var(--transition);
}
.cat-card:hover .emoji { transform: scale(1.12) rotate(-5deg); }
.cat-card span { font-weight: 600; font-size: 0.96rem; position: relative; z-index: 1; }

/* === Kako radi === */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; max-width: 980px; margin: 0 auto; }
.steps::before {
    content: ''; position: absolute; top: 70px; left: 17%; right: 17%; height: 3px;
    background: repeating-linear-gradient(90deg, rgba(242,106,27,0.5) 0 9px, transparent 9px 19px);
    z-index: 0;
}
.step {
    text-align: center; background: #fff; border: 1px solid var(--color-border);
    border-radius: 20px; padding: 2.4rem 1.5rem 1.9rem; position: relative; z-index: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04); transition: var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(242,106,27,0.13); }
.step .num {
    width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-primary);
    color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem;
    box-shadow: 0 8px 20px rgba(242, 106, 27, 0.3); border: 4px solid #fff;
}
.step > i { font-size: 1.7rem; color: var(--color-primary); margin-bottom: 0.7rem; display: block; }
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--color-text-muted); }
@media (max-width: 768px) { .steps::before { display: none; } }

/* === Zašto Printko === */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card {
    background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
    padding: 2rem 1.5rem; text-align: center; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.why-card i { font-size: 2rem; color: var(--color-primary); margin-bottom: 1rem; }
.why-card p { color: var(--color-text-muted); }

/* === CTA banner === */
.printko-cta-banner {
    background: var(--gradient-primary); border-radius: var(--radius-lg); padding: 3.5rem 2rem;
    text-align: center; color: #fff; box-shadow: 0 20px 40px rgba(242, 106, 27, 0.25);
}
.printko-cta-banner h2 { color: #fff; }
.printko-cta-banner p { color: rgba(255, 255, 255, 0.92); margin-bottom: 1.5rem; font-size: 1.15rem; }
.printko-cta-banner .btn { background: #fff; color: var(--color-primary); }
.printko-cta-banner .btn:hover { transform: translateY(-2px); }

/* Hero mascot */
.hero-mascot { max-width: 380px; width: 100%; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(242, 106, 27, 0.18)); }

/* Centriran hero */
.hero-centered { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-centered h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); margin-bottom: 1.5rem; line-height: 1.05; }
.hero-centered p { font-size: 1.2rem; color: var(--color-text-muted); max-width: 560px; margin: 0 auto 2.5rem; }
.hero-centered .hero-buttons { justify-content: center; }
.hero-mascot-top {
    width: 150px; height: auto; margin: 0 auto 1.8rem; display: block;
    filter: drop-shadow(0 14px 22px rgba(242, 106, 27, 0.22));
    animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Sjaj iza pingvina */
.hero-mascot-wrap { position: relative; display: inline-block; margin-bottom: 1.4rem; }
.hero-mascot-wrap::before {
    content: '';
    position: absolute; inset: -40px;
    background: radial-gradient(circle, rgba(242, 106, 27, 0.22) 0%, transparent 68%);
    z-index: -1; border-radius: 50%;
}
.hero-mascot-top { margin: 0 auto; }

/* Hero badge */
.hero-badge {
    display: inline-block; background: #fff; color: var(--color-primary);
    border: 1px solid var(--color-border); border-radius: 30px;
    padding: 0.45rem 1.1rem; font-weight: 600; font-size: 0.9rem;
    margin-bottom: 1.2rem; box-shadow: 0 6px 16px rgba(242, 106, 27, 0.08);
}

/* Plutajuće bubble ikonice */
.hero-section { position: relative; overflow: hidden; }
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco {
    position: absolute; width: 68px; height: 68px; font-size: 2rem;
    background: #fff; border: 1px solid var(--color-border); border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(242, 106, 27, 0.12);
    animation: floaty 5.5s ease-in-out infinite;
}
.d1 { top: 16%; left: 13%; animation-delay: 0s; }
.d2 { top: 20%; right: 15%; animation-delay: -1.2s; width: 56px; height: 56px; font-size: 1.6rem; }
.d3 { bottom: 22%; left: 17%; animation-delay: -2.2s; width: 56px; height: 56px; font-size: 1.6rem; }
.d4 { bottom: 16%; right: 13%; animation-delay: -1.6s; }
.d5 { top: 46%; left: 7%; animation-delay: -2.8s; width: 50px; height: 50px; font-size: 1.4rem; }
.d6 { top: 50%; right: 8%; animation-delay: -0.6s; width: 50px; height: 50px; font-size: 1.4rem; }
.hero-centered { position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-deco { display: none; } }

/* ====== MODERNA NAVIGACIJA ====== */
.bottom-nav { display: none; }

.site-logo-icon { display: none; }

/* Search u headeru */
.header-search {
    display: flex; align-items: center; gap: 0.5rem;
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 30px; padding: 0.5rem 1rem; width: 240px;
    transition: var(--transition);
}
.header-search i { color: var(--color-text-muted); font-size: 0.9rem; }
.header-search input {
    border: none; background: transparent; outline: none;
    color: var(--color-text); font-size: 0.9rem; width: 100%;
}
.header-search input::placeholder { color: var(--color-text-muted); }
.header-search:focus-within { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.1); }

/* DESKTOP: cist gornji header */
@media (min-width: 769px) {
    .site-header {
        background: rgba(255, 251, 247, 0.92);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--color-border);
        padding: 0.85rem 0;
    }
    .site-header.scrolled {
        box-shadow: 0 6px 24px rgba(242, 106, 27, 0.08);
        padding: 0.65rem 0;
    }
    .site-logo-img { display: block; height: 44px; width: auto; }
    .site-logo-icon { display: none; }
}

/* MOBILNI: search sakriven u headeru (ima u ponudi) */
@media (max-width: 768px) {
    .header-search { display: none; }
}

/* MOBILNI: donji tab bar, gornji nav sakriven */
@media (max-width: 768px) {
    .menu-toggle { display: none !important; }
    .main-navigation { display: none !important; }

    body { padding-bottom: 72px; }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; width: 100%;
        background: rgba(255, 251, 247, 0.97);
        backdrop-filter: blur(14px);
        border-top: 1px solid var(--color-border);
        justify-content: space-around;
        align-items: flex-end;
        padding: 0.5rem 0.3rem calc(0.5rem + env(safe-area-inset-bottom));
        z-index: 2000;
        box-shadow: 0 -4px 22px rgba(0, 0, 0, 0.07);
    }
    .bn-item {
        display: flex; flex-direction: column; align-items: center; gap: 3px;
        color: var(--color-text-muted); font-size: 0.66rem; font-weight: 600;
        flex: 1; padding: 4px 0; text-align: center;
    }
    .bn-item i { font-size: 1.25rem; }
    .bn-item:hover, .bn-item.active { color: var(--color-primary); }
    .bn-center i {
        background: var(--gradient-primary); color: #fff;
        width: 50px; height: 50px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin-top: -22px; font-size: 1.35rem;
        box-shadow: 0 6px 18px rgba(242, 106, 27, 0.45);
        border: 3px solid var(--color-bg);
    }
    .bn-center { color: var(--color-primary); }
}

@media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; }
}

/* ====== NAŠA OPREMA (tech) ====== */
.tech-section { position: relative; overflow: hidden; }
.tech-glow {
    position: absolute; top: 10%; left: -10%; width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(242, 106, 27, 0.16) 0%, transparent 70%);
    border-radius: 50%; z-index: 0; pointer-events: none; will-change: transform;
}
.tech-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.tech-visual { position: relative; text-align: center; }
.tech-visual img { width: 78%; max-width: 360px; filter: drop-shadow(0 25px 40px rgba(0,0,0,0.18)); will-change: transform; }
.tech-badge {
    position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary); color: #fff; font-weight: 700; font-family: var(--font-heading);
    padding: 0.5rem 1.3rem; border-radius: 30px; box-shadow: 0 10px 24px rgba(242,106,27,0.35); white-space: nowrap;
}
.eyebrow { display: inline-block; color: var(--color-primary); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.6rem; }
.tech-content p { color: var(--color-text-muted); font-size: 1.12rem; margin-bottom: 1.8rem; max-width: 480px; }
.tech-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.spec { display: flex; align-items: center; gap: 0.9rem; background: #fff; border: 1px solid var(--color-border); border-radius: 14px; padding: 1rem 1.1rem; box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
.spec i { font-size: 1.4rem; color: var(--color-primary); }
.spec b { display: block; font-size: 1rem; }
.spec span { font-size: 0.82rem; color: var(--color-text-muted); }
@media (max-width: 900px) {
    .tech-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .tech-content .section-title { text-align: center !important; }
    .tech-content p { margin-left: auto; margin-right: auto; }
}

/* Page-template stranice (Galerija, Kontakt, FAQ, O nama...) — razmak ispod fiksnog headera */
.main-content > .section-spacing:first-child { padding-top: 120px; }
.main-content > .container:first-child { padding-top: 120px; }
.admin-bar .main-content > .section-spacing:first-child,
.admin-bar .main-content > .container:first-child { padding-top: 140px; }

/* ====== ARHIVA PROIZVODA ====== */
.archive-main { padding-top: 110px; padding-bottom: 60px; }
.archive-head { text-align: center; margin-bottom: 1.4rem; }
.page-title { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.archive-sub { color: var(--color-text-muted); }
.cat-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 2.4rem; }
.cat-pill { background: #fff; border: 1px solid var(--color-border); color: var(--color-text-muted); border-radius: 30px; padding: 7px 15px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.cat-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.cat-pill.on { background: var(--gradient-primary); color: #fff; border-color: transparent; }
.product-image-wrapper { display: block; background: #fff; aspect-ratio: 1/1; }
.ph-img { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; background: var(--color-surface); }
.product-card { border-radius: 16px; }
.product-info { padding: 0.85rem 1rem 1.05rem; }
.product-title a { font-size: 1rem; line-height: 1.34; }
.product-meta { margin-top: 0.65rem; }
.product-price { font-size: 0.95rem; font-weight: 700; color: var(--color-primary); }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.no-prod { text-align: center; color: var(--color-text-muted); padding: 3rem; grid-column: 1/-1; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 3rem; flex-wrap: wrap; }
.pagination .page-numbers { background: #fff; border: 1px solid var(--color-border); border-radius: 10px; padding: 8px 14px; color: var(--color-text); font-weight: 600; }
.pagination .page-numbers.current { background: var(--color-primary); color: #fff; border-color: transparent; }
.pagination a.page-numbers:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ====== POJEDINAČNI PROIZVOD ====== */
.single-main { padding-top: 110px; padding-bottom: 60px; }
.single-product { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 4rem; }
.single-gallery img { width: 100%; border-radius: 20px; border: 1px solid var(--color-border); box-shadow: 0 14px 34px rgba(0,0,0,0.08); }
.single-gallery .ph-img { aspect-ratio: 1; border-radius: 20px; }
.single-cat { display: inline-block; color: var(--color-primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.single-info h1 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin-bottom: 0.8rem; }
.single-price { display: inline-block; background: var(--color-surface); color: var(--color-primary); font-weight: 700; font-size: 1.15rem; padding: 0.5rem 1.1rem; border-radius: 12px; margin-bottom: 1.4rem; }
.single-note { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.6rem; color: var(--color-text-muted); font-size: 0.9rem; }
.single-order { font-size: 1.05rem; padding: 0.9rem 2rem; }
.single-desc { margin-top: 2rem; border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.single-desc h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.single-desc p { color: var(--color-text-muted); line-height: 1.7; }
.single-credit { margin-top: 1.5rem; color: var(--color-text-muted); font-size: 0.8rem; font-style: italic; }
.related-head { margin: 2.5rem 0 1.5rem; text-align: center; }
@media (max-width: 768px) { .single-product { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ====== STRANICE (Kontakt / O nama) ====== */
.page-main { padding-top: 120px; padding-bottom: 60px; }
.container-narrow { max-width: 760px; }
.page-content .page-title { text-align: center; margin-bottom: 2rem; }
.page-body { color: var(--color-text); line-height: 1.8; font-size: 1.05rem; }
.page-body h2 { font-size: 1.5rem; margin: 1.5rem 0 1rem; }
.page-body p { margin-bottom: 1rem; color: var(--color-text-muted); }
.page-body ul { margin: 1.2rem 0; padding-left: 0; }
.page-body li { margin-bottom: 0.7rem; color: var(--color-text-muted); background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 0.8rem 1.1rem; list-style: none; }
.page-body b { color: var(--color-text); }

/* ====== STRANICE (Kontakt, O nama) ====== */
.page-main { padding-top: 120px; padding-bottom: 70px; }
.container-narrow { max-width: 760px; }
.page-content .page-title { text-align: center; margin-bottom: 2rem; }
.page-body { color: var(--color-text); line-height: 1.8; font-size: 1.05rem; }
.page-body h2 { font-size: 1.5rem; margin: 1.5rem 0 1rem; }
.page-body p { margin-bottom: 1.1rem; color: var(--color-text-muted); }
.page-body ul { margin: 1.2rem 0; padding: 0; }
.page-body li { margin-bottom: 0.7rem; color: var(--color-text-muted); list-style: none; }
.page-body b { color: var(--color-text); }

/* ── LITOFANIJE — showcase sekcija ───────────────────────── */
.lito-feature {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
    overflow: hidden;
}
.lito-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.lito-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.lito-visual img {
    width: 100%;
    max-width: 340px;
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(242, 106, 27, 0.28), 0 0 60px rgba(255, 200, 120, 0.35);
    background: #1a1410;
    padding: 10px;
}
.lito-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(242, 106, 27, 0.4);
}
.lito-content .eyebrow {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}
.lito-content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2rem; }
.lito-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    display: grid;
    gap: 0.6rem;
}
.lito-points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
}
.lito-points li i {
    color: var(--color-primary);
    width: 22px;
    text-align: center;
}
@media (max-width: 860px) {
    .lito-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .lito-content .section-title { text-align: center !important; }
    .lito-points { justify-items: center; }
    .lito-content .hero-buttons { justify-content: center; }
    .lito-visual img { max-width: 280px; }
}

/* ── Blog sekcija na homepage ── */
.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.blog-card-home {
    display: block;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--color-text);
    transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(242,106,27,.14);
    border-color: rgba(242,106,27,.3);
}
.blog-cat-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    background: var(--color-primary);
    padding: .3rem .75rem;
    border-radius: 999px;
    margin-bottom: .8rem;
    box-shadow: 0 4px 10px rgba(242,106,27,.28);
}
.blog-card-home h3 {
    font-size: 1.1rem;
    line-height: 1.35;
    margin: 0 0 .6rem;
}
.blog-card-home p {
    font-size: .92rem;
    color: var(--color-text-muted, #6b6258);
    margin: 0 0 1rem;
    line-height: 1.6;
}
.blog-more { font-weight: 700; color: var(--color-primary); font-size: .9rem; }
.blog-home-cta { text-align: center; margin-top: 2rem; }
.blog-ilink { color: var(--color-primary); font-weight: 600; text-decoration: underline; }
@media (max-width: 860px) { .blog-grid-home { grid-template-columns: 1fr; } }

/* ── Litofanija narudžba forma ── */
.lito-form { background:#fff; border:1px solid rgba(0,0,0,.07); border-radius:var(--radius-lg); padding:2rem; margin-top:1.5rem; box-shadow:0 8px 30px rgba(0,0,0,.05); }
.lito-form .lf-row { margin-bottom:1.3rem; }
.lito-form label { display:block; font-weight:600; margin-bottom:.4rem; }
.lito-form input[type=text],.lito-form input[type=email],.lito-form input[type=file],.lito-form textarea {
  width:100%; padding:.7rem .9rem; border:1px solid rgba(0,0,0,.15); border-radius:var(--radius-sm); font-size:1rem; font-family:inherit; margin-top:.3rem; }
.lito-form small { display:block; font-weight:400; color:#8a8178; font-size:.82rem; margin-top:.3rem; }
.lf-sizes { display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; margin-top:.4rem; }
.lf-size { display:flex; align-items:center; gap:.5rem; border:2px solid rgba(0,0,0,.1); border-radius:var(--radius-md); padding:.8rem; cursor:pointer; font-weight:500; transition:all .15s; }
.lf-size:has(input:checked) { border-color:var(--color-primary); background:rgba(242,106,27,.06); }
.lf-size input { margin:0; }
.lf-check { display:flex; align-items:center; gap:.6rem; font-weight:500; }
.lf-check input { width:auto; }
.lf-procjena { background:rgba(242,106,27,.08); border-radius:var(--radius-md); padding:1rem 1.2rem; margin-bottom:1.3rem; display:flex; align-items:baseline; gap:.6rem; flex-wrap:wrap; }
.lf-procjena strong { font-size:1.8rem; color:var(--color-primary); }
.lf-procjena small { width:100%; color:#8a8178; font-weight:400; }
.lf-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1.3rem; }
.lf-submit { width:100%; font-size:1.1rem; padding:.9rem; }
.lf-note { text-align:center; color:#8a8178; font-size:.85rem; margin-top:.8rem; }
.lito-form-msg { padding:2rem; border-radius:var(--radius-lg); text-align:center; margin:2rem 0; }
.lito-form-msg.ok { background:rgba(40,160,60,.08); border:1px solid rgba(40,160,60,.3); }
.lito-form-msg.err { background:rgba(200,40,40,.06); border:1px solid rgba(200,40,40,.25); }
@media (max-width:680px){ .lf-sizes,.lf-grid2{grid-template-columns:1fr;} }

/* ── Litofanija narudžba — LIJEPA verzija ── */
.lito-order-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:2rem; align-items:start; max-width:1000px; margin:1.5rem auto 0; }
.lito-form { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:var(--radius-lg); padding:2rem; box-shadow:0 10px 40px rgba(0,0,0,.06); }
.lf-step { display:flex; align-items:center; gap:.6rem; font-weight:700; font-size:1.05rem; margin:1.6rem 0 .8rem; }
.lf-step:first-of-type { margin-top:0; }
.lf-num { display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:var(--color-primary); color:#fff; font-size:.85rem; }
/* drop zone */
.lf-drop { position:relative; display:block; border:2px dashed rgba(242,106,27,.4); border-radius:var(--radius-md); background:rgba(242,106,27,.04); cursor:pointer; overflow:hidden; transition:all .15s; min-height:150px; }
.lf-drop:hover { border-color:var(--color-primary); background:rgba(242,106,27,.07); }
.lf-drop input[type=file] { position:absolute; inset:0; opacity:0; cursor:pointer; width:100%; height:100%; }
.lf-drop-inner { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:2rem 1rem; gap:.3rem; }
.lf-drop-icon { font-size:2.4rem; }
.lf-drop-inner small { color:#8a8178; }
#lf-preview { display:block; width:100%; max-height:280px; object-fit:contain; background:#1a1410; }
.lf-drop.has-img { border-style:solid; border-color:var(--color-primary); }
/* veličine */
.lf-sizes { display:grid; grid-template-columns:repeat(3,1fr); gap:.7rem; }
.lf-size { cursor:pointer; }
.lf-size input { position:absolute; opacity:0; }
.lf-size span { display:flex; flex-direction:column; align-items:center; text-align:center; gap:.2rem; border:2px solid rgba(0,0,0,.1); border-radius:var(--radius-md); padding:1rem .5rem; font-weight:600; transition:all .15s; }
.lf-size span i { font-style:normal; font-size:1.3rem; opacity:.5; }
.lf-size span b { color:var(--color-primary); font-size:.9rem; }
.lf-size input:checked + span { border-color:var(--color-primary); background:rgba(242,106,27,.07); box-shadow:0 4px 14px rgba(242,106,27,.15); }
.lf-check { display:flex; align-items:center; gap:.6rem; font-weight:600; margin-top:1rem; cursor:pointer; padding:.9rem 1rem; border:1px solid rgba(0,0,0,.1); border-radius:var(--radius-md); }
.lf-check input { width:auto; }
.lf-check b { color:var(--color-primary); }
/* procjena */
.lf-procjena { background:linear-gradient(135deg, rgba(242,106,27,.1), rgba(242,106,27,.04)); border-radius:var(--radius-md); padding:1.2rem 1.4rem; margin:1.5rem 0; }
.lf-procjena > div { display:flex; align-items:center; justify-content:space-between; }
.lf-procjena span { font-weight:600; }
.lf-procjena strong { font-size:2rem; color:var(--color-primary); }
.lf-procjena small { display:block; color:#8a8178; margin-top:.4rem; }
/* polja */
.lito-form label { display:block; font-weight:600; margin-bottom:.3rem; }
.lito-form input[type=text],.lito-form input[type=email],.lito-form textarea { width:100%; padding:.7rem .9rem; border:1px solid rgba(0,0,0,.15); border-radius:var(--radius-sm); font-size:1rem; font-family:inherit; margin-top:.3rem; }
.lito-form input:focus,.lito-form textarea:focus { outline:none; border-color:var(--color-primary); box-shadow:0 0 0 3px rgba(242,106,27,.12); }
.lf-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.lf-full { display:block; margin-bottom:1rem; }
.lf-submit { width:100%; font-size:1.1rem; padding:.95rem; margin-top:.5rem; }
.lf-note { text-align:center; color:#8a8178; font-size:.85rem; margin-top:.7rem; }
/* sidebar */
.lito-order-aside { display:flex; flex-direction:column; gap:1.2rem; position:sticky; top:90px; }
.lo-card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 8px 30px rgba(0,0,0,.05); position:relative; }
.lo-img { display:block; width:100%; background:#1a1410; }
.lo-badge { position:absolute; bottom:12px; left:12px; background:var(--color-primary); color:#fff; font-weight:700; font-size:.82rem; padding:.4rem .8rem; border-radius:999px; }
.lo-steps { padding:1.4rem; }
.lo-steps h3 { margin:0 0 .9rem; }
.lo-steps ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.8rem; }
.lo-steps li { display:flex; align-items:flex-start; gap:.7rem; font-weight:500; line-height:1.4; }
.lo-steps li span { flex:none; width:24px; height:24px; border-radius:50%; background:rgba(242,106,27,.12); color:var(--color-primary); font-weight:700; font-size:.8rem; display:inline-flex; align-items:center; justify-content:center; }
.lo-benefits { display:grid; grid-template-columns:repeat(3,1fr); gap:.6rem; text-align:center; }
.lo-benefits div { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:var(--radius-md); padding:.9rem .4rem; font-size:1.4rem; display:flex; flex-direction:column; gap:.3rem; }
.lo-benefits span { font-size:.75rem; font-weight:600; color:var(--color-text); }
/* uspjeh */
.lito-form-msg { padding:2.5rem; border-radius:var(--radius-lg); text-align:center; margin:2rem auto; background:#fff; box-shadow:0 10px 40px rgba(0,0,0,.06); }
.lito-form-msg.ok { border:2px solid rgba(40,160,60,.3); }
.lf-ok-emoji { font-size:3rem; }
.lito-form-msg .muted { color:#8a8178; }
.lito-form-msg.err { background:rgba(200,40,40,.06); border:1px solid rgba(200,40,40,.25); padding:1.2rem; }
@media (max-width:880px){ .lito-order-grid{ grid-template-columns:1fr; } .lito-order-aside{ position:static; } }
@media (max-width:600px){ .lf-sizes{ grid-template-columns:1fr; } .lf-grid2{ grid-template-columns:1fr; } }

/* veličina — vizuelni okviri koji rastu (umjesto unicode) */
.lf-size span::before { content:''; display:block; margin:0 auto .5rem; border:2.5px solid rgba(242,106,27,.45); border-radius:4px; background:rgba(242,106,27,.05); }
.lf-size .sz-s::before { width:18px; height:24px; }
.lf-size .sz-m::before { width:24px; height:32px; }
.lf-size .sz-l::before { width:30px; height:40px; }
.lf-size input:checked + span::before { border-color:var(--color-primary); background:rgba(242,106,27,.15); }
.lf-size span i { display:none; }

/* fix: centriraj benefit kartice */
.lo-benefits div { align-items:center; justify-content:center; text-align:center; min-height:92px; }
.lo-benefits span { line-height:1.25; }

/* ── Kontakt stranica ── */
.kontakt-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:2rem; max-width:1000px; margin:1.5rem auto 0; align-items:start; }
.kontakt-info { display:flex; flex-direction:column; gap:.9rem; }
.ki-card { display:flex; align-items:center; gap:.9rem; background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:var(--radius-md); padding:1rem 1.1rem; text-decoration:none; color:var(--color-text); box-shadow:0 4px 16px rgba(0,0,0,.04); }
.ki-card i { font-size:1.3rem; color:var(--color-primary); width:28px; text-align:center; }
.ki-card b { display:block; }
.ki-card span { font-size:.88rem; color:#8a8178; }
.ki-litho { margin-top:.4rem; text-align:center; }
@media (max-width:820px){ .kontakt-grid{ grid-template-columns:1fr; } }

/* ── Litofanija showcase — premium izgled (override) ── */
.lito-visual { position:relative; display:flex; justify-content:center; align-items:center; padding:2rem; }
.lito-visual::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:radial-gradient(circle at 50% 45%, rgba(255,180,90,.45), rgba(255,140,60,.18) 45%, transparent 70%);
  filter:blur(8px);
}
.lito-visual img {
  position:relative; z-index:1; width:100%; max-width:330px;
  border-radius:18px; padding:0; background:none;
  border:6px solid #fff;
  box-shadow:0 20px 55px rgba(242,106,27,.30), 0 0 70px rgba(255,190,110,.45), 0 4px 12px rgba(0,0,0,.12);
}
.lito-badge {
  position:absolute; top:14px; left:14px; z-index:2;
  background:var(--color-primary); color:#fff; font-weight:700; font-size:.85rem;
  padding:.4rem .85rem; border-radius:999px; box-shadow:0 6px 18px rgba(242,106,27,.45);
}
@media (max-width:860px){ .lito-visual{ padding:1rem; } }

/* single proizvod — siguran prelom + čitljiv opis */
.single-product, .single-info, .single-desc { min-width:0; }
.single-desc { overflow-wrap:anywhere; word-break:break-word; }
.single-desc h3 { color:var(--color-text); font-size:1.1rem; margin-bottom:.6rem; }
.single-desc p { color:var(--color-text); margin-bottom:.8rem; line-height:1.7; }
.single-gallery img { max-width:480px; display:block; }
.single-info h1 { color:var(--color-text); }

/* ── Plutajuće DM dugme ── */
.floating-dm {
  position:fixed; right:20px; bottom:24px; z-index:900;
  display:flex; align-items:center; gap:.5rem;
  background:var(--color-primary); color:#fff; text-decoration:none;
  padding:.85rem 1.1rem; border-radius:999px; font-weight:700;
  box-shadow:0 8px 26px rgba(242,106,27,.5); transition:transform .15s, box-shadow .15s;
}
.floating-dm i { font-size:1.4rem; }
.floating-dm:hover { transform:translateY(-3px) scale(1.04); box-shadow:0 12px 32px rgba(242,106,27,.6); }
.fdm-label { font-size:.95rem; }
@media (max-width:768px){ .floating-dm{ bottom:80px; padding:.8rem; } .fdm-label{ display:none; } }

/* ── Galerija ── */
.galerija-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1rem; }
.gal-item { margin:0; position:relative; border-radius:var(--radius-md); overflow:hidden; box-shadow:0 6px 22px rgba(0,0,0,.08); aspect-ratio:1; background:#eee; }
.gal-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s; }
.gal-item:hover img { transform:scale(1.06); }
.gal-item figcaption { position:absolute; left:0; right:0; bottom:0; background:linear-gradient(transparent, rgba(0,0,0,.7)); color:#fff; padding:1.2rem .8rem .7rem; font-size:.9rem; font-weight:600; }
.gal-empty { text-align:center; background:var(--color-surface); border-radius:var(--radius-lg); padding:3rem 1.5rem; }
.gal-empty p { font-size:1.1rem; margin-bottom:1.2rem; }

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:.8rem; }
.faq-item { background:#fff; border:1px solid rgba(0,0,0,.07); border-radius:var(--radius-md); overflow:hidden; box-shadow:0 4px 16px rgba(0,0,0,.04); }
.faq-item summary { cursor:pointer; padding:1.1rem 1.3rem; font-weight:700; font-size:1.05rem; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; color:var(--color-primary); font-size:1.5rem; font-weight:400; transition:transform .2s; }
.faq-item[open] summary::after { transform:rotate(45deg); }
.faq-a { padding:0 1.3rem 1.2rem; color:var(--color-text); line-height:1.7; }
.faq-cta { text-align:center; margin-top:2rem; }
.faq-cta p { margin-bottom:.8rem; font-weight:600; }

/* ── Recenzije ── */
.recenzije-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.rec-card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:var(--radius-lg); padding:1.6rem; box-shadow:0 8px 26px rgba(0,0,0,.05); }
.rec-stars { color:#f5a623; font-size:1.1rem; margin-bottom:.7rem; }
.rec-text { line-height:1.7; margin-bottom:1rem; color:var(--color-text); }
.rec-name { font-weight:700; color:var(--color-primary); }
@media (max-width:860px){ .recenzije-grid{ grid-template-columns:1fr; } }

/* select u formi */
.lito-form select { width:100%; padding:.7rem .9rem; border:1px solid rgba(0,0,0,.15); border-radius:var(--radius-sm); font-size:1rem; font-family:inherit; margin-top:.3rem; background:#fff; }

/* ── Kad si loginovan: spusti header ispod WP admin trake ── */
.admin-bar .site-header { top: 32px; }
.admin-bar .bottom-nav { bottom: 0; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ── Blog listing — kartice ── */
.blog-page-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.blog-page-card { display:flex; flex-direction:column; background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 6px 22px rgba(0,0,0,.05); transition:transform .2s, box-shadow .2s; }
.blog-page-card:hover { transform:translateY(-5px); box-shadow:0 16px 38px rgba(242,106,27,.14); }
.bpc-img { display:block; aspect-ratio:16/10; background:linear-gradient(135deg, #ffe8d6, #ffd0a8); overflow:hidden; }
.bpc-img img { width:100%; height:100%; object-fit:cover; }
.bpc-ph { display:flex; align-items:center; justify-content:center; height:100%; font-size:2.6rem; }
.bpc-body { padding:1.3rem; display:flex; flex-direction:column; flex:1; }
.bpc-body h2 { font-size:1.15rem; line-height:1.35; margin:.6rem 0; }
.bpc-body h2 a { color:var(--color-text); }
.bpc-body h2 a:hover { color:var(--color-primary); }
.bpc-excerpt { color:#6b6258; font-size:.92rem; line-height:1.6; margin:0 0 1rem; flex:1; }
.bpc-foot { display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(0,0,0,.06); padding-top:.8rem; }
.bpc-date { font-size:.82rem; color:#9a9088; }
.bpc-more { font-weight:700; color:var(--color-primary); font-size:.9rem; }
@media (max-width:880px){ .blog-page-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .blog-page-grid{ grid-template-columns:1fr; } }

/* pagination */
.pagination { display:flex; justify-content:center; gap:.4rem; margin-top:3rem; }
.pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; min-width:42px; height:42px; padding:0 .6rem; border:1px solid rgba(0,0,0,.1); border-radius:var(--radius-sm); font-weight:600; color:var(--color-text); background:#fff; }
.pagination .page-numbers.current { background:var(--color-primary); color:#fff; border-color:var(--color-primary); }
.pagination a.page-numbers:hover { border-color:var(--color-primary); color:var(--color-primary); }

/* ── Single članak ── */
.single-post-page { padding-top:0; }
.post-hero { background:linear-gradient(180deg, var(--color-surface), var(--color-bg)); padding:3.5rem 0 2rem; text-align:center; margin-top:80px; }
.post-hero-cat { display:inline-block; background:var(--color-primary); color:#fff; font-weight:700; font-size:.8rem; padding:.35rem .8rem; border-radius:999px; margin-bottom:1rem; }
.post-hero h1 { font-size:clamp(1.8rem, 4vw, 2.6rem); line-height:1.2; margin-bottom:1rem; color:var(--color-text); }
.post-hero-meta { display:flex; gap:1.2rem; justify-content:center; color:#8a8178; font-size:.9rem; }
.post-hero-meta i { color:var(--color-primary); }
.post-hero-img { margin:2rem auto; border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 14px 40px rgba(0,0,0,.1); }
.post-hero-img img { width:100%; display:block; }
.post-content { font-size:1.08rem; line-height:1.85; color:var(--color-text); padding:1.5rem 0; }
.post-content h2 { font-size:1.5rem; margin:2rem 0 1rem; color:var(--color-text); }
.post-content h3 { font-size:1.2rem; margin:1.5rem 0 .8rem; color:var(--color-text); }
.post-content p { margin-bottom:1.2rem; }
.post-content ul, .post-content ol { margin:0 0 1.2rem 1.4rem; }
.post-content li { margin-bottom:.5rem; }
.post-content a:not(.btn) { color:var(--color-primary); font-weight:600; }
.post-content .btn, .post-content a.btn { color:#fff !important; font-weight:700; }
.post-content .blog-cta .btn { box-shadow:0 8px 20px rgba(242,106,27,.32); }
.post-content .blog-cta { background:var(--color-surface); border-radius:var(--radius-lg); padding:1.8rem; text-align:center; margin:2rem 0; }
.post-content .blog-cta h3 { margin-top:0; }
.post-share { display:flex; align-items:center; gap:.8rem; padding:1.5rem 0; border-top:1px solid rgba(0,0,0,.08); }
.post-share span { font-weight:600; }
.post-share a { width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:var(--color-surface); color:var(--color-primary); transition:all .15s; }
.post-share a:hover { background:var(--color-primary); color:#fff; }
.single-post-page .related-head { margin-bottom:1.5rem; }
.single-post-page .bpc-img { aspect-ratio:16/6; }
.single-post-page .bpc-ph { font-size:1.8rem; }
.single-post-page .bpc-body { padding:1rem 1.1rem 1.1rem; }

/* Pretraga na stranici proizvoda */
.archive-search { display:flex; align-items:center; gap:.5rem; max-width:520px; margin:1.2rem auto 0;
  background:#fff; border:1px solid var(--color-border); border-radius:999px; padding:.5rem .6rem .5rem 1rem;
  box-shadow:0 6px 18px rgba(0,0,0,.05); }
.archive-search i { color:var(--color-primary); font-size:.95rem; }
.archive-search input[type=search] { flex:1; border:0; outline:0; background:transparent; font-size:1rem;
  font-family:inherit; color:var(--color-text); min-width:0; }
.archive-search button { border:0; background:var(--gradient-primary); color:#fff; font-weight:700;
  font-family:var(--font-heading); padding:.55rem 1.2rem; border-radius:999px; cursor:pointer; white-space:nowrap; }
.archive-search button:hover { box-shadow:0 6px 16px rgba(242,106,27,.35); }
@media (max-width:600px){ .archive-search { margin-top:1rem; } .archive-search button { padding:.55rem .9rem; } }


/* WordPress dodaje klasu `single-product` i na <body>, pa je pravilo
   `.single-product { display:grid; grid-template-columns:1fr 1fr }`
   — pisano za omotač sadržaja — slagalo <main> i <footer> jedno pored
   drugog. Grid ostaje samo unutar sadržaja. */
body.single-product { display: block; }
