:root {
    --primary-black: #121212;
    --text-grey: #555;
    --light-grey: #f5f5f5;
    --border-color: #e8e8e8;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Assistant', sans-serif; color: var(--primary-black); background: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ANNOUNCEMENT */
.announcement-bar { background: var(--primary-black); color: white; text-align: center; padding: 10px; font-size: 13px; letter-spacing: 1px; }

/* HEADER */
.main-header { padding: 20px 0; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; background: white; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 600; letter-spacing: 2px; }
.logo span { font-weight: 300; }
.desktop-nav ul { display: flex; list-style: none; gap: 30px; }
.desktop-nav a { text-decoration: none; color: var(--primary-black); font-size: 15px; transition: 0.3s; }
.desktop-nav a:hover { text-decoration: underline; }

/* HERO */
.hero {
    height: 80vh;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('head.jpeg'); /* Primer prodajne slike */
    background-size: cover;
    background-position: center;
}
.hero-content { background: rgba(255,255,255,0.9); padding: 40px 60px; }
.hero h1 { font-size: 48px; margin-bottom: 15px; }
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-black);
    color: white;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}
.btn-primary:hover { opacity: 0.8; }

/* PRODUCT GRID */
.section { padding: 80px 0; }
.section-title { margin-bottom: 40px; text-align: center; font-size: 28px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.product-card { position: relative; transition: 0.3s; }
.product-image img { width: 100%; height: auto; display: block; background: #f9f9f9; }
.product-badge { position: absolute; top: 10px; left: 10px; background: #334fb4; color: white; padding: 5px 12px; font-size: 12px; }
.product-info { padding: 15px 0; text-align: left; }
.product-info h3 { font-size: 16px; margin-bottom: 8px; font-weight: 400; }
.price { font-size: 18px; color: var(--text-grey); margin-bottom: 15px; }

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--primary-black);
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
}
.add-to-cart-btn:hover { background: var(--primary-black); color: white; }

/* NEWSLETTER */
.newsletter { background: var(--light-grey); padding: 80px 0; text-align: center; }
.newsletter h2 { margin-bottom: 10px; }
.newsletter-form { margin-top: 30px; display: flex; justify-content: center; gap: 10px; }
.newsletter-form input { padding: 12px; width: 300px; border: 1px solid #ccc; }
.newsletter-form button { padding: 12px 30px; background: var(--primary-black); color: white; border: none; cursor: pointer; }

/* FOOTER */
.main-footer { padding: 60px 0 20px; border-top: 1px solid var(--border-color); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-col h4 { margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-grey); text-decoration: none; }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--border-color); color: #999; }
