* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefaf5;
    color: #3e2a2a;
    line-height: 1.5;
}


header {
    background-color: #fff8f0;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0e2d0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #b47c5e;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;        /* prilagodi visini headera */
    width: auto;
    max-height: 60px;
}

.logo span {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #6b4c3a;
    font-weight: normal;
    display: block;
}

nav a {
    margin-left: 1.8rem;
    text-decoration: none;
    color: #5a3e2e;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #b47c5e;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fef5e7 0%, #fff 100%);
    gap: 2rem;
}

.hero-text {
    flex: 1;
    min-width: 250px;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #5a3e2e;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #7e5a48;
    margin-bottom: 1.8rem;
}

.btn {
    background-color: #b47c5e;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    background-color: #8f5e45;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.image-placeholder {
    background: #e9dbcf;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: #7e5a48;
}

.benefits {
    background-color: #fff4ec;
    padding: 3rem 2rem;
    text-align: center;
}

.benefits h2 {
    font-size: 2rem;
    color: #5a3e2e;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 1.8rem;
    border-radius: 20px;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card .emoji {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.card h3 {
    color: #b47c5e;
    margin-bottom: 0.5rem;
}

.featured {
    padding: 3rem 2rem;
    text-align: center;
}

.featured h2 {
    font-size: 2rem;
    color: #5a3e2e;
    margin-bottom: 2rem;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}


.product-card {
    background: white;
    border-radius: 20px;
    width: 250px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card .product-img {
    background: #e9dbcf;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    color: #5a3e2e;
    margin-bottom: 0.3rem;
}

.product-info .miris {
    font-size: 0.85rem;
    color: #7e5a48;
}

.price {
    color: #b47c5e;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.buy-btn {
    background-color: #e7d9cc;
    color: #5a3e2e;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
}

.buy-btn:hover {
    background-color: #b47c5e;
    color: white;
}

footer {
    background-color: #e9dbcf;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    color: #5a3e2e;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    .logo img {
        height: 40px;
    }
    .logo span {
        font-size: 0.7rem;
    }
    nav a {
        margin: 0 1rem;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
}