/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1F2937;
    background: #FFFFFF;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ========== TIPOGRAFIJA ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
}

/* ========== DUGMAD ========== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: #A7C358;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #8BA843;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #A7C358;
    color: #A7C358;
}

.btn-outline:hover {
    background: #A7C358;
    color: #FFFFFF;
}

.btn-large {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-link {
    background: none;
    border: none;
    color: #FFFFFF;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-top: 16px;
    display: inline-block;
    opacity: 0.8;
}

.btn-link:hover {
    opacity: 1;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #A7C358;
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #A7C358;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #A7C358;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li:hover {
    background: #F3F4F6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1F2937;
}

/* ========== HERO ========== */
/* Hero sekcija sa slikom */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    margin-top: 80px;
    padding: 40px 0;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-content {
    color: #FFFFFF;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

/* Dugmad u hero sekciji */
.hero-content .btn-primary {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 16px;
}

.hero-content .btn-link {
    display: block;
    margin: 16px auto 0 auto;
    color: #FFFFFF;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.8;
    width: fit-content;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-img {
        max-height: 280px;
    }
    
    .hero-content .btn-link {
        display: inline-block;
    }
}

/* ========== BOOKING SECTION ========== */
.booking-section {
    padding: 60px 0;
    background: #F9FAFB;
}

.booking-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.booking-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

/* ========== KAKO RADI ========== */
.how-it-works {
    padding: 80px 0;
    background: #FFFFFF;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: #A7C358;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h3 {
    margin-bottom: 8px;
}

.step-card p {
    color: #6B7280;
}

/* ========== PREDNOSTI ========== */
.benefits {
    padding: 80px 0;
    background: #F9FAFB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 40px;
    color: #A7C358;
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 8px;
}

.benefit-card p {
    color: #6B7280;
}

/* ========== PERSONALIZED VS READY ========== */
.comparison {
    padding: 80px 0;
    background: #FFFFFF;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

.comparison-card {
    padding: 32px;
    border-radius: 24px;
    background: #F9FAFB;
    position: relative;
}

.comparison-card.personalized {
    border: 2px solid #A7C358;
    background: #FFFFFF;
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #A7C358;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.comparison-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #A7C358;
    margin-bottom: 16px;
}

.comparison-card ul {
    list-style: none;
    margin: 24px 0;
}

.comparison-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-card li i {
    color: #A7C358;
    font-size: 14px;
}

/* ========== PROIZVODI ========== */
.products {
    padding: 80px 0;
    background: #F9FAFB;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 250px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A7C358;
    margin: 12px 0;
}

/* ========== CAROUSEL ========== */
.ingredients-carousel {
    padding: 80px 0;
    background: #FFFFFF;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 8px 0;
    flex: 1;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: #A7C358;
    border-color: #A7C358;
    color: #FFFFFF;
}

.ingredient-card {
    min-width: 200px;
    background: #F9FAFB;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.ingredient-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.ingredient-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.ingredient-benefit {
    font-size: 12px;
    color: #6B7280;
}

/* ========== ISKUSTVA ========== */
.testimonials {
    padding: 80px 0;
    background: #F9FAFB;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #A7C358;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-text {
    color: #6B7280;
    font-style: italic;
    margin-top: 12px;
}

/* ========== FAQ ========== */
.faq {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 20px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #6B7280;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 12px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ========== FOOTER ========== */
.footer {
    background: #1F2937;
    color: #9CA3AF;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #A7C358;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #9CA3AF;
    text-decoration: none;
}

.footer-col a:hover {
    color: #A7C358;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    color: #9CA3AF;
    font-size: 20px;
}

.social-links a:hover {
    color: #A7C358;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    padding: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-cart {
    max-width: 600px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #9CA3AF;
}

.modal-note {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 16px;
    text-align: center;
}

/* ========== FORME ========== */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ========== RESPONZIVNOST ========== */
@media (max-width: 1024px) {
    .steps-grid,
    .benefits-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #FFFFFF;
        flex-direction: column;
        padding: 32px;
        transition: left 0.3s;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .benefits-grid,
    .products-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        display: none;
    }
}

/* ========== LOGO SLIKA ========== */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* ========== HERO SEKCIJA - SLIKA KAO POZADINA ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    background: linear-gradient(rgba(31, 41, 55, 0.7), rgba(31, 41, 55, 0.7)), url('model.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-content {
    color: #FFFFFF;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-content .btn-primary {
    display: inline-block;
    margin: 0 0 16px 0;
}

.hero-content .btn-link {
    display: block;
    margin-top: 8px;
    color: #FFFFFF;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.8;
}

.hero-content .btn-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-wrapper {
        padding: 40px 20px;
    }
}

/* ========== SLIKE SASTOJAKA ========== */

/* Za homepage carousel - okrugle slike */
.ingredient-image-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
}

.ingredient-img-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Za sastojci.html - kompletne slike */
.ingredient-img-full {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Personalized kartica sa slikom - originalne dimenzije boxa i slova */
.comparison-card.personalized {
    position: relative;
    background: #FFFFFF;
    border: 2px solid #A7C358;
    border-radius: 24px;
    padding: 32px;
    overflow: visible;
}

/* Originalna veličina slova i teksta */
.comparison-card.personalized h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.comparison-card.personalized .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #A7C358;
    margin-bottom: 16px;
}

.comparison-card.personalized ul {
    list-style: none;
    margin: 24px 0;
}

.comparison-card.personalized li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-card.personalized .btn {
    margin-top: 16px;
}

/* Badge - izvan kartice */
.comparison-card.personalized .badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: #A7C358;
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Slika - još više desno */
.personalized-image {
    position: absolute;
    right: -30px;        /* Još dalje desno */
    top: 50%;
    transform: translateY(-50%);
    width: 232px;
    pointer-events: none;
    z-index: 5;
}

.personalized-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Na mobitelu */
@media (max-width: 768px) {
    .personalized-image {
        width: 150px;
        right: -5px;
    }
    
    .comparison-card.personalized .badge {
        right: 10px;
        font-size: 10px;
        padding: 4px 12px;
    }
}

/* Naruči putem koda sekcija */
.order-code-section {
    padding: 60px 0;
    background: #F9FAFB;
}

.order-code-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.order-code-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.order-code-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

/* Slika na stranici Zašto VIVATEC */
.philosophy-image {
    background: #F3F4F6;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.philosophy-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: 0px;  /* Ako želiš čiste ivice, stavi 0 */
    background: none;
    border: none;
}

/* Slika na početku O nama stranice */
.story-image {
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.story-img {
    background: transparent;
    border: none;
    display: block;
}

/* ========== KORPA SIDEBAR ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6B7280;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: #F3F4F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image i {
    font-size: 30px;
    color: #A7C358;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-price {
    color: #A7C358;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
}

.cart-item-remove {
    color: #EF4444;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid #E5E7EB;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-checkout {
    width: 100%;
    padding: 14px;
    background: #A7C358;
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.cart-checkout:hover {
    background: #8BA843;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.overlay.open {
    visibility: visible;
    opacity: 1;
}

.cart-btn-header {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    margin-left: 20px;
    color: #ffffff;
}

.cart-btn-header:hover {
    color: #A7C358;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #A7C358;
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== HEADER SIVI GLASS ===== */
.header {
    background: rgba(75, 85, 99, 0.25) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header {
    padding: 18px 0; /* bilo je 16px → malo povećano */
}

/* ========== PREMIUM PERSONALIZACIJA ========== */
.personalization-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.premium-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1F2937 0%, #A7C358 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-header p {
    font-size: 1.2rem;
    color: #6B7280;
}

/* Vizualni dio */
.premium-visual {
    position: relative;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
}

/* Centralna slika */
.premium-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.premium-center-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.premium-center-img:hover {
    transform: scale(1.02);
}

.premium-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167,195,88,0.2) 0%, rgba(167,195,88,0) 70%);
    z-index: -1;
}

/* Linije SVG */
.premium-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Krugovi sa glass efektom */
.premium-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.premium-node {
    position: absolute;
    z-index: 6;
}

.node-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-circle:hover {
    transform: scale(1.1);
    background: rgba(167, 195, 88, 0.9);
    backdrop-filter: blur(8px);
    border-color: white;
}

.node-circle:hover .node-name {
    color: white;
}

.node-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1F2937;
    transition: color 0.3s ease;
}

/* Footer */
.premium-footer {
    margin-top: 80px;
    text-align: center;
}

.premium-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.premium-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #A7C358;
    line-height: 1;
}

.stat-txt {
    font-size: 0.85rem;
    color: #6B7280;
}

.premium-desc {
    font-size: 1rem;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-desc strong {
    color: #A7C358;
}

/* Responsive */
@media (max-width: 768px) {
    .personalization-premium {
        padding: 60px 0;
    }
    
    .premium-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-visual {
        height: 500px;
    }
    
    .premium-center-img {
        width: 130px;
        height: 130px;
    }
    
    .premium-center-glow {
        width: 160px;
        height: 160px;
    }
    
    .node-circle {
        width: 60px;
        height: 60px;
    }
    
    .node-name {
        font-size: 0.65rem;
    }
    
    .premium-stats {
        gap: 30px;
    }
    
    .stat-num {
        font-size: 1.5rem;
    }
}

/* ========== PREMIUM PERSONALIZACIJA ========== */
.personalization-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.premium-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1F2937 0%, #A7C358 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-header p {
    font-size: 1.2rem;
    color: #6B7280;
}

/* Vizualni dio */
.premium-visual {
    position: relative;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
}

/* Centralna slika */
.premium-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.premium-center-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.premium-center-img:hover {
    transform: scale(1.02);
}

.premium-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167,195,88,0.2) 0%, rgba(167,195,88,0) 70%);
    z-index: -1;
}

/* Linije SVG */
.premium-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Krugovi sa glass efektom */
.premium-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.premium-node {
    position: absolute;
    width: 90px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    z-index: 6;
}

.node-circle {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-circle:hover {
    transform: scale(1.1);
    background: rgba(167, 195, 88, 0.9);
    backdrop-filter: blur(8px);
    border-color: white;
}

.node-circle:hover .node-name {
    color: white;
}

.node-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1F2937;
    transition: color 0.3s ease;
}

/* Desktop pozicije (default) */
.node-top { top: 8%; left: 50%; }
.node-top-right { top: 15%; left: 70%; }
.node-right-top { top: 28%; left: 85%; }
.node-right { top: 50%; left: 88%; }
.node-right-bottom { top: 72%; left: 85%; }
.node-bottom-right { top: 85%; left: 70%; }
.node-bottom { top: 92%; left: 50%; }
.node-bottom-left { top: 85%; left: 30%; }
.node-left-bottom { top: 72%; left: 15%; }
.node-left { top: 50%; left: 12%; }
.node-left-top { top: 28%; left: 15%; }
.node-top-left { top: 15%; left: 30%; }

/* Tablet (između 768px i 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .premium-node { width: 75px; height: 75px; margin-left: -37px; margin-top: -37px; }
    .node-name { font-size: 0.75rem; }
    .node-top { top: 5%; left: 50%; }
    .node-top-right { top: 12%; left: 72%; }
    .node-right-top { top: 25%; left: 87%; }
    .node-right { top: 50%; left: 90%; }
    .node-right-bottom { top: 75%; left: 87%; }
    .node-bottom-right { top: 88%; left: 72%; }
    .node-bottom { top: 95%; left: 50%; }
    .node-bottom-left { top: 88%; left: 28%; }
    .node-left-bottom { top: 75%; left: 13%; }
    .node-left { top: 50%; left: 10%; }
    .node-left-top { top: 25%; left: 13%; }
    .node-top-left { top: 12%; left: 28%; }
}

/* Mobilni (max 768px) */
@media (max-width: 768px) {
    .personalization-premium {
        padding: 60px 0;
    }
    
    .premium-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-visual {
        height: 500px;
    }
    
    .premium-center-img {
        width: 120px;
        height: 120px;
    }
    
    .premium-center-glow {
        width: 150px;
        height: 150px;
    }
    
    .premium-node {
        width: 55px;
        height: 55px;
        margin-left: -27px;
        margin-top: -27px;
    }
    
    .node-name {
        font-size: 0.55rem;
    }
    
    /* Pozicije za mobitel */
    .node-top { top: 3%; left: 50%; }
    .node-top-right { top: 8%; left: 75%; }
    .node-right-top { top: 20%; left: 88%; }
    .node-right { top: 50%; left: 90%; }
    .node-right-bottom { top: 80%; left: 88%; }
    .node-bottom-right { top: 92%; left: 75%; }
    .node-bottom { top: 97%; left: 50%; }
    .node-bottom-left { top: 92%; left: 25%; }
    .node-left-bottom { top: 80%; left: 12%; }
    .node-left { top: 50%; left: 10%; }
    .node-left-top { top: 20%; left: 12%; }
    .node-top-left { top: 8%; left: 25%; }
}

/* Footer */
.premium-footer {
    margin-top: 80px;
    text-align: center;
}

.premium-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.premium-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #A7C358;
    line-height: 1;
}

.stat-txt {
    font-size: 0.85rem;
    color: #6B7280;
}

.premium-desc {
    font-size: 1rem;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-desc strong {
    color: #A7C358;
}

/* Mali mobiteli (max 480px) */
@media (max-width: 480px) {
    .premium-visual {
        height: 450px;
    }
    
    .premium-center-img {
        width: 90px;
        height: 90px;
    }
    
    .premium-center-glow {
        width: 110px;
        height: 110px;
    }
    
    .premium-node {
        width: 45px;
        height: 45px;
        margin-left: -22px;
        margin-top: -22px;
    }
    
    .node-name {
        font-size: 0.45rem;
    }
    
    .premium-stats {
        gap: 20px;
    }
    
    .stat-num {
        font-size: 1.2rem;
    }
    
    .stat-txt {
        font-size: 0.7rem;
    }
}

/* Mobilni prikaz - umjesto krugova, uredan grid */
@media (max-width: 768px) {
    .premium-visual {
        height: auto;
        min-height: auto;
    }
    
    /* Sakrij linije na mobitelu */
    .premium-lines {
        display: none;
    }
    
    /* Centralna slika ostaje centrirana */
    .premium-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 40px auto;
        width: fit-content;
    }
    
    /* Umjesto apsolutnog pozicioniranja - koristimo grid */
    .premium-nodes {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .premium-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        width: 100%;
        height: auto;
        margin: 0;
        transform: none !important;
    }
    
    .node-circle {
        width: 100%;
        height: auto;
        min-height: 70px;
        padding: 12px 8px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
    }
    
    .node-name {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    /* Sakrij opis u krugu na mobitelu (ima ga ispod) */
    .node-circle span {
        display: block;
    }
}

/* ========== FEEL THE DIFFERENCE SEKCIJA ========== */
.feel-difference {
    padding: 80px 0;
    background: #FFFFFF;
}

.feel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LIJEVA STRANA */
.feel-text {
    text-align: left;
}

.feel-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1F2937;
    line-height: 1.2;
}

.feel-description p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feel-description p:last-of-type {
    margin-bottom: 0;
}

.feel-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    margin-top: 20px;
}

/* DESNA STRANA - SLIKE (manji razmaci) */
.feel-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feel-card {
    position: relative;
}

.feel-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feel-image:hover {
    transform: translateY(-3px);
}

.feel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay (tamni sloj) - tekst na sredini lijevog ćoška */
.feel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
}

.feel-label {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-align: left;
    max-width: 85%;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .feel-grid {
        gap: 30px;
    }
    
    .feel-title {
        font-size: 2.5rem;
    }
    
    .feel-row {
        gap: 10px;
    }
    
    .feel-icons {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .feel-difference {
        padding: 60px 0;
    }
    
    .feel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feel-text {
    text-align: left;
    padding-top: 30px;
}

/* Na desktopu - poravnanje sa slikama */
@media (min-width: 769px) {
    .feel-text {
        padding-top: 40px;
    }
    
    .feel-title {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Na mobitelu ukloni padding */
@media (max-width: 768px) {
    .feel-text {
        padding-left: 0;
    }
}
    
    .feel-title {
        font-size: 2rem;
    }
    
    .feel-description p {
        font-size: 0.95rem;
    }
    
    .feel-overlay {
        padding: 12px;
    }
    
    .feel-label {
        font-size: 0.75rem;
    }
}
.feel-text {
    text-align: left;
    transform: translateY(-80px);
}

@media (max-width: 768px) {
    .feel-grid {
        display: flex;
        flex-direction: column;
    }
    
    /* Prvo slike (redoslijed) */
    .feel-icons {
        order: 1;
    }
    
    /* Onda tekst i dugme */
    .feel-text {
        order: 2;
        text-align: center;
        transform: translateY(0);
        padding-top: 30px;
    }
    
    .feel-title {
        text-align: center;
    }
    
    .feel-description p {
        text-align: center;
    }
    
    .feel-btn {
        display: block;
        width: fit-content;
        margin: 20px auto 0;
    }
}
@media (max-width: 768px) {
    /* Mobile menu linkovi - siva boja */
    .nav-menu a {
        color: #6B7280 !important;
    }
    
    .nav-menu a:hover {
        color: #A7C358 !important;
    }
    
    /* Dropdown menu linkovi */
    .dropdown-menu a {
        color: #6B7280 !important;
    }
    
    .dropdown-menu a:hover {
        color: #A7C358 !important;
    }
}
/* Ikona korpe na mobitelu - siva */
@media (max-width: 768px) {
    .cart-btn-header {
        color: #6B7280 !important;
    }
    
    .cart-btn-header:hover {
        color: #A7C358 !important;
    }
}

/* Mobile menu - potpuno lijevo poravnanje */
@media (max-width: 768px) {
    .nav {
        padding-left: 0 !important;
    }
    
    .nav-menu {
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
        margin-left: 0;
        padding-left: 0;
    }
    
    .nav-menu a {
        text-align: left;
        padding-left: 0 !important;
        display: block;
    }
    
    .dropdown-menu {
        text-align: left;
        padding-left: 20px !important;
        margin-left: 0 !important;
    }
    
    .nav-buttons {
        width: 100%;
        text-align: left;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .nav-buttons .btn-primary {
        margin-left: 0 !important;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        padding-left: 20px !important;
    }
    
    .nav-buttons {
        padding-left: 20px !important;
    }
}
@media (max-width: 768px) {
    /* Centralna slika - horizontalna, zaobljena */
    .premium-center-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
        aspect-ratio: 16 / 9;
    }
    
    .premium-center-img img {
        border-radius: 20px;
    }
    
    /* Ukloni glow efekat */
    .premium-center-glow {
        display: none;
    }
    
    /* Ukloni krug (sakrij prethodni okrugli oblik) */
    .premium-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    /* Ukloni okrugli oblik i ram */
    .premium-center-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
        aspect-ratio: 16 / 9;
        border: none !important;
        box-shadow: none !important;
    }
    
    .premium-center-img img {
        border-radius: 20px;
    }
    
    .premium-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
    }
    
    /* Ukloni glow */
    .premium-center-glow {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Samo malo pomjeri gore - 5-10px */
    .hero {
        margin-top: 40px !important;
        padding-top: 0 !important;
    }
    
    .hero-wrapper {
        padding-top: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Dropdown meni pozadina - bijela */
    .dropdown-menu {
        background: #FFFFFF !important;
    }
}

/* Ukloni podvlakne iz krugova */
.premium-node {
    text-decoration: none !important;
}

.premium-node .node-circle {
    text-decoration: none !important;
}

.node-name {
    text-decoration: none !important;
}

/* POPRAVKA - footer ispod krugova */
.premium-visual {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px auto;
    min-height: 550px;
}

.premium-footer {
    position: relative;
    margin-top: 200px;
    padding-top: 40px;
    clear: both;
    width: 100%;
    float: left;
}

.premium-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.premium-desc {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
@media (min-width: 769px) {
    .premium-footer {
        margin-top: 600px;
    }
    
    .premium-visual {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        margin-top: 30px !important;
    }
}

/* Klikabilni krugovi za korake */
.step-card-link {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* Mobitel: sakrij desktop verziju, prikaži mobilnu */
.mobile-grid {
    display: none;
}

@media (max-width: 768px) {
    .desktop-grid {
        display: none;
    }
    
    .mobile-grid {
        display: block;
    }
    
    .mobile-grid .feel-icons {
        margin: 20px 0;
    }
    
    .mobile-grid .feel-description {
        margin: 20px 0;
    }
}

/* Desktop: sakrij mobilnu verziju */
@media (min-width: 769px) {
    .mobile-grid {
        display: none;
    }
    
    .desktop-grid {
        display: grid;
    }
}

/* ========== PERSONALIZED SPLIT - IDENTIČNO KAO READY ========== */
.personalized-split {
    padding: 80px 0;
    background: #F9FAFB;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    justify-items: center;  /* centrira kartice horizontalno */
}

.split-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    cursor: pointer;
    max-width: 378px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.split-card:hover {
    transform: translateY(-4px);
}

.split-image {
    width: 100%;
    height: 250px;
    background: #F3F4F6;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.split-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1F2937;
}

.split-description {
    color: #6B7280;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .split-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .personalized-split {
        padding: 60px 0;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .split-image {
        height: 220px;
    }
    
    .split-card {
        max-width: 100%;
    }
}

.ingredient-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

/* Promjena boje naslova u premium sekciji */
.premium-header h2 {
    color: #1F2937 !important;
    background: none !important;
    -webkit-text-fill-color: #1F2937 !important;
}

.personalization-premium {
    padding: 100px 0 140px 0;  /* gore 100px, dole 120px (povećano) */
}

.value-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* Okrugla slika na stranici Zašto VIVATEC */
.philosophy-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.philosophy-image {
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

@media (max-width: 768px) {
    .philosophy-text {
        text-align: center;
    }
    
    .philosophy-text h2 {
        text-align: center;
    }
    
    .philosophy-text p {
        text-align: center;
    }
}

/* Desktop - poravnanje naslova sa slikom */
@media (min-width: 769px) {
    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }
    
    .story-text h2 {
        margin-top: 0;
        padding-top: 0;
    }
    
    .story-image {
        margin-top: 0;
    }
}

/* Feel difference dugme - ista veličina kao header */
.feel-btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
}

/* Poravnanje dugmadi u comparison sekciji */
.comparison-card .btn {
    margin-top: 20px;
    display: inline-block;
}

.comparison-card.ready .btn {
    margin-top: 20px;
}

/* Ista visina dugmadi u comparison sekciji */
.comparison-card .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Glassmorphism efekat na cijeloj stranici */
body {
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: -1;
}