/*
Theme Name: Smisli Theme v2
Description: Modern AI Print-on-Demand Theme with 3D Studio
Version: 2.0.0
Author: Smisli.me Team
*/

:root {
    /* --- Colors --- */
    --primary-purple: #5c27fe;
    --primary-red: #ff0000;
    --logo-cyan: #00f2ea;
    --logo-pink: #ff0055;
    --dark: #111111;
    --light-grey: #f4f4f4;
    --accent-indigo: #a5b4fc;
    --text-main: #333333;
    --text-light: #ffffff;

    /* --- Spacing --- */
    --container-padding: 20px;
    --header-height: 80px;
    --studio-ui-width: 380px;

    /* --- Fonts --- */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* =========================================
   1. RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fix za fiksno zaglavlje na WooCommerce naloga stranicama */
body.woocommerce-account main#content {
    padding-top: 140px !important;
}

@media (max-width: 1024px) {
    body.woocommerce-account main#content {
        padding-top: 100px !important;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   2. UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.grid {
    display: grid;
    gap: 20px;
}

.flex {
    display: flex;
    gap: 20px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}


/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
/* =========================================
   3. HEADER & NAVIGATION (Redesign)
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 40px;
    pointer-events: none;
    /* Allow clicking through header area */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

/* 3.1 LOGO (Top Left) */
.logo-wrapper {
    pointer-events: auto;
    width: 140px;
    transition: transform 0.3s ease;
}

@media (min-width: 1025px) {
    .logo-wrapper {
        width: 168px;
    }
}

.logo-wrapper:hover {
    transform: scale(1.05);
}

.site-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* 3.2 NAVIGATION (Top Right) */
.nav-wrapper {
    pointer-events: auto;
    position: relative;
}

.main-nav {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.nav-links li {
    position: relative;
}

.nav-item {
    display: block;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 40px;
    white-space: nowrap;
}

.nav-links li.active .nav-item,
.nav-links li:hover .nav-item {
    color: white;
}

/* Action Button Style (Prijava) — currently uniform with nav-item */

/* CART MENU ITEM */
.smisli-cart-menu-item .nav-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.smisli-nav-cart-wrapper {
    display: inherit;
    align-items: inherit;
    gap: inherit;
}

.smisli-nav-cart-wrapper i {
    font-size: 1.15em;
}

/* 3.3 PILL ANIMATION */
.nav-pill {
    position: absolute;
    top: 6px;
    left: 0;
    height: calc(100% - 12px);
    background: var(--dark);
    border-radius: 40px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    /* JS enables it */
    pointer-events: none;
}

/* 3.4 NAV CLOSE BUTTON — hidden on desktop, visible only in mobile burger menu */
.nav-close-btn {
    display: none; /* Desktop default horizontal menu doesn't need it */
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* =========================================
   3.4 BURGER MENU & AURORA GLASSMORPHISM
   ========================================= */
:root {
    --aurora-1: #5c27fe;
    /* Primary Purple */
    --aurora-2: #00f2ea;
    /* Logo Cyan */
    --aurora-3: #ff0055;
    /* Logo Pink */
}

/* --- DUGME BURGERA (Vidljivo na mobilnom) --- */
.modern-burger-btn {
    display: none;
    /* Desktop hidden by default */
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
    z-index: 10001;
    transition: all 0.3s ease !important;
    padding: 0;
}

body.studio-active .modern-burger-btn {
    display: flex;
    /* Force Burger Menu on Desktop when in Studio */
    margin-right: 15px;
}

.modern-burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.modern-burger-btn.is-active span {
    background: #ffffff !important;
}

.modern-burger-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.modern-burger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.modern-burger-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- SLIDING MENI (OFF-CANVAS) --- */
/* By default .main-nav is a desktop horizontal pill menu. 
   We only transform it to the Aurora menu within Studio or Mobile queries! */
body.studio-active .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    display: flex !important;
    /* override the horizontal layout */
}

body.studio-active .main-nav.is-open {
    transform: translateX(0);
}

body.studio-active .nav-pill {
    display: none !important;
}

body.studio-active .nav-close-btn {
    display: flex !important;
}

/* Sadržaj i Dugmići unutar sliding menija */
body.studio-active .nav-links {
    position: relative;
    z-index: 2;
    padding: 100px 30px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    width: 100%;
}

/* --- STAKLENI DUGMIĆI --- */
body.studio-active .nav-item {
    display: block;
    width: 100%;
    padding: 18px 24px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.studio-active .nav-item:hover,
body.studio-active .nav-links li.active .nav-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

body.studio-active .nav-item:active {
    transform: scale(0.96);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Animirana Pozadina (samo vidljiva u offcanvas modu) */
.menu-aurora-bg {
    display: none;
}

body.studio-active .menu-aurora-bg {
    display: block;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--aurora-1), transparent 60%),
        radial-gradient(circle at 80% 20%, var(--aurora-2), transparent 50%),
        radial-gradient(circle at 20% 80%, var(--aurora-3), transparent 50%);
    opacity: 0.15;
    filter: blur(60px);
    animation: auroraRotate 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes auroraRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* RESPONSIVE CSS za Mobilni (isti taj Aurora meni) */
@media (max-width: 1024px) {
    .site-header {
        padding: 15px 20px;
    }

    body.single-product .logo-wrapper,
    body.post-type-archive-product .logo-wrapper {
        pointer-events: none;
    }

    .nav-close-btn {
        display: flex !important;
    }

    .nav-pill {
        display: none !important;
    }

    .modern-burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        border-radius: 0;
        display: flex !important;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .menu-aurora-bg {
        display: block;
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 50% 50%, var(--aurora-1), transparent 60%),
            radial-gradient(circle at 80% 20%, var(--aurora-2), transparent 50%),
            radial-gradient(circle at 20% 80%, var(--aurora-3), transparent 50%);
        opacity: 0.15;
        filter: blur(60px);
        animation: auroraRotate 20s linear infinite;
        z-index: 1;
        pointer-events: none;
    }

    .nav-links {
        position: relative;
        z-index: 2;
        padding: 100px 30px 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        list-style: none;
        margin: 0;
        width: 100%;
    }

    .nav-item {
        display: block;
        width: 100%;
        padding: 18px 24px;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-item:hover,
    .nav-links li.active .nav-item {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        color: #ffffff;
    }

    .nav-item:active {
        transform: scale(0.96);
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Zatamnjenje pozadine ispod overlay menija */
    body.no-scroll::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        backdrop-filter: blur(5px);
    }

    .no-scroll {
        overflow: hidden;
    }
}

/* =========================================
   5. CONTENT PAGES (O Nama, Kontakt)
   ========================================= */

.content-page-wrapper {
    padding-top: 120px;
    /* Space for fixed header */
    padding-bottom: 80px;
    background: #fff;
    min-height: 100vh;
}

.content-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.content-container.narrow {
    max-width: 800px;
}

/* Typography */
.page-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--dark);
}

.page-main-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.highlight {
    color: var(--primary-purple);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.section-title-small {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.big-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-60 {
    margin-top: 60px;
}

/* Components */
.highlight-box {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: var(--primary-purple);
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-zapocni-small {
    display: inline-block;
    padding: 15px 40px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.btn-zapocni-small:hover {
    transform: translateY(-3px);
    background: var(--primary-purple);
}

/* Kontakt Page Specifics */
.info-block {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.info-block.no-border {
    border-bottom: none;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-number {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    color: var(--dark);
}

.info-header h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.info-text {
    color: #444;
    line-height: 1.6;
}

.info-list {
    color: #444;
    margin-top: 10px;
    line-height: 1.6;
    padding-left: 20px;
}

.info-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}

.delivery-badge {
    display: inline-block;
    padding: 5px 12px;
    background: #e0f2f1;
    color: #00695c;
    border-radius: 5px;
    font-weight: 600;
}

.info-sub-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.small-note {
    font-size: 0.85rem;
    color: #777;
}

.email-link {
    color: var(--primary-purple);
    font-weight: bold;
}

.complaint-procedure {
    margin-top: 20px;
    border-left: 3px solid var(--dark);
    padding-left: 20px;
}

.complaint-procedure h3 {
    font-size: 1.1rem;
    margin-top: 0;
    font-weight: 700;
}

.solution-box {
    margin-top: 20px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 8px;
}

/* =========================================
   4. HERO SECTION (LEGACY STRUCTURE RESTORED)
   ========================================= */

/* 4.1 HERO PIN WRAPPER */
#hero-pin {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 4.2 VIDEO BACKGROUND */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ============================================
   4.3 PROMPT WRAPPER — FIXED WIDTH, NEVER CHANGES
   ============================================ */
.prompt-wrapper {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 15px 40px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
    max-width: 90%;
}

.text-container-morph {
    filter: url(#threshold) blur(0.6px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 50px;
    width: 100%;
}

#text1,
#text2 {
    position: absolute;
    font-size: clamp(1.1rem, 3.5vw, 2rem);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    width: 100%;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.cursor {
    margin-left: 8px;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 200;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ============================================
   4.4 MODEL & DESIGN BOX (HERO GIRL + CHEST)
   ============================================ */
.model-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
    flex: 1;
    min-height: 0;
}

/* Wrapper — EXPLICIT 67vh = 2/3 viewport, anchored at bottom*/
.hero-model-inner {
    position: relative;
    display: inline-block;
    line-height: 0;
    height: 67vh;
    transform: translateX(5%);
}

/* Girl image — fills wrapper height, width auto = aspect ratio preserved */
.hero-model-inner img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    z-index: 1;
}

/* Design box — ALL positions as % of parent (.hero-model-inner)
   so it scales perfectly at every viewport width              */
.design-box {
    position: absolute;
    top: 62%;
    left: 45.5%;
    transform: translate(-50%, -50%);
    width: 11.5%;
    /* % of image WIDTH  — scales automatically */
    aspect-ratio: 3 / 4;
    overflow: hidden;
    z-index: 2;
    /* Uklonjena box-shadow jer baca box-style senku koja se prikazuje oko ivica transparentnog PNG boxa kvareći utisak otiska! */
}

.design-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.design-box img.active {
    opacity: 1;
}


/* =====================================================
   FUNNELKIT CART BUBBLE — Upravljanje Vidljivošću
   Bubble je sakriven dok JS ne doda .smisli-cart-visible
   Pravi selektor potvrđen inspekcijom live sajta:
     ID: #fkcart-floating-toggler
     Class: .fkcart-toggler
   ===================================================== */

/* Po defaultu — SAKRIVENO na svim stranicama */
#fkcart-floating-toggler,
.fkcart-toggler {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
    transform: scale(0.8) !important;
}

/* Prikazuje se kada JS doda .smisli-cart-visible klasu na element */
.smisli-cart-visible#fkcart-floating-toggler,
.smisli-cart-visible.fkcart-toggler {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: scale(1) !important;
}

/* ============================================
   4.5 SLOGAN SECTION (SCROLL ANIMATION OVERLAY)
   ============================================ */
.slogan-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    padding: 20px;
}

.slogan-section.active {
    pointer-events: all;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.sub-title {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
}

.btn-zapocni-big {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-purple);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(92, 39, 254, 0.4);
}

.btn-zapocni-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(92, 39, 254, 0.6);
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
    .prompt-wrapper {
        top: 10%;
    }

    .main-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .btn-checkout {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}

/* =========================================
   CUSTOM WOOCOMMERCE CHECKOUT (REVIEW ORDER)
   ========================================= */

/* Glavni kontejner za prikaz korpe */
.smisli-custom-review-order {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

/* Naslovi (Proizvod / Ukupno) */
.smisli-review-order-headers {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Jedan proizvod u korpi */
.smisli-review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Sredina zbog slike */
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

/* Deo gde su slika i naziv proizvoda zajedno */
.smisli-review-item .product-name {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

/* Sama slika ili nas webm klip */
.smisli-review-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    /* Da se ne suzi na malom ekranu */
}

.smisli-review-thumbnail img,
.smisli-review-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tekst pored slike (naziv, veličina...) */
.smisli-review-info {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #444;
}

.smisli-review-info .product-quantity {
    font-weight: bold;
    color: #777;
}

/* Cena pojedinacnog proizvoda */
.smisli-review-item .product-total {
    font-weight: 700;
    color: var(--primary-purple);
    /* Koristimo tvoju varijablu */
    font-size: 16px;
}

/* Donji deo korpe (Dostava, Zbir, PDV) */
.smisli-review-order-footer {
    padding-top: 15px;
}

/* Redovi ispod (medjuzbir, dostava) */
.smisli-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #555;
    font-size: 14px;
}

/* Specijalno za WooCommerce shipping tabelu (da sakrijemo tackice) */
.smisli-review-shipping ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.smisli-review-shipping .woocommerce-shipping-destination {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* Total iznos na dnu */
.smisli-total-row {
    margin-top: 10px;
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    font-size: 18px;
    font-weight: 900;
    color: #111;
}

.smisli-total-row .smisli-row-value .amount {
    color: var(--primary-purple);
    font-size: 24px;
}

@media (max-width: 768px) {
    .prompt-wrapper {
        top: 15%;
        padding: 10px 20px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .sub-title {
        font-size: 1.1rem;
    }

    .btn-zapocni-big {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* =========================================
   5. HOME: SELECTION CARDS
   ========================================= */
.selection-section {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
}

.section-title {
    font-family: var(--font-heading);
    /* Smanjen minimum sa 2rem na 1.4rem radi manjih ekrana */
    font-size: clamp(1.4rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.choice-card {
    position: relative;
    height: 400px;
    background: var(--dark);
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choice-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.choice-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease-out;
}

.choice-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.choice-card span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* =========================================
   6. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {

    /* Tablet */
    :root {
        --header-height: 70px;
    }
}

@media (max-width: 768px) {

    /* Mobile */
    :root {
        --header-height: 60px;
    }

    /* Header */
    .menu-container {
        display: none;
        /* Hide standard menu */
        position: absolute;
        top: 70px;
        right: 20px;
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 20px;
        width: 200px;
        align-items: stretch;
    }

    .menu-container.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        /* Show hamburger */
    }

    /* Hero — width stays 450px, max-width: 90% handles mobile */
    .prompt-wrapper {
        padding: 8px 15px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
        max-width: 350px;
    }

    .choice-card {
        height: 300px;
    }
}

/* =========================================
   HOME: SLOGAN SECTION
   ========================================= */
.slogan-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    position: relative;
    padding: 100px 20px;
    z-index: 5;
}

.slogan-logo-large img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
}

.hashtag-container {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.hashtag-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    text-align: center;
    color: var(--primary-purple);
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hashtag-text {
        font-size: clamp(0.9rem, 4.5vw, 1.4rem);
        white-space: normal;
    }

    .hashtag-container {
        min-height: 60px;
    }
}

/* =========================================
   HOME: O NAMA / INTRO SECTION
   ========================================= */
.o-nama-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.o-nama-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.o-nama-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    max-width: 900px;
}

.o-nama-box {
    text-align: center;
}

.o-nama-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.o-nama-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.o-nama-subtitle {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

/* --- GLAVNO DUGME (PURPLE PILL STYLE) --- */
.btn-zapocni {
    background: linear-gradient(90deg, #5c27fe, #8338ec);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(92, 39, 254, 0.4);
    position: relative;
    z-index: 300;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
}

.btn-zapocni:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(92, 39, 254, 0.6);
    filter: brightness(1.1);
}

/* --- Focus-In-Expand Animation (Hashtag Text) --- */
.focus-in-expand {
    animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes focus-in-expand {
    0% {
        letter-spacing: -0.5em;
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        filter: blur(0px);
        opacity: 1;
    }
}