/* Reset i osnovni stilovi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Discount banner */
.discount-banner {
    background-color: #2D4F2D;
    color: white;
    padding: 2px 0;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 30px;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.social-icons a {
    color: white;
    margin-right: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.discount-text {
    flex-grow: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
}

/* Header i navigacija */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    max-width: 400px;
    flex: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    flex: 1;
}

.nav-links a {
    margin: 0 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.nav-right {
    max-width: 400px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.nav-right a {
    font-size: 18px;
}
.nav-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 30px;
    width: auto;
}

.logo {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
}
/* Icon wrapper styles */
.icon-wrapper {
    position: relative;
    display: inline-block;
}

.icon-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.count-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #000;
    color: white;
    font-size: 11px;
    font-weight: 400;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: scale(1);
    transition: transform 0.2s ease;
}

.count-badge:not(:empty) {
    display: flex;
    transform: scale(1.1);
}

.icon-wrapper:hover .count-badge {
    transform: scale(1.2);
}

/* Footer with thinner text */
footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-around; /* Promijenjeno s space-between za bolje centriranje */
    max-width: 1000px; /* Smanjena maksimalna širina */
    margin: 0 auto;
    gap: 30px; /* Dodano razmak između sekcija */
}

.footer-section {
    flex: 1;
    max-width: 300px; /* Ograničava maksimalnu širinu svake sekcije */
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 200; /* Thinner text */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a,
.footer-section p {
    color: #666;
    transition: color 0.3s ease;
    font-weight: 200; /* Thinner text */
}

.footer-section ul li a:hover {
    color: #333;
}

.payment-icons {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.payment-icons i {
    font-size: 24px;
    margin-right: 10px;
    color: #666;
    transition: color 0.3s ease;
}

/* Footer Logo Styles */
.footer-section:nth-child(3) {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.footer-nav-logo {
    width: 100px; /* Veći od loga u headeru */
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    font-weight: 200; /* Thinner text */
    max-width: 1000px; /* Usklađeno s footer-content */
    margin: 20px auto 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-left, .nav-right {
        max-width: 300px;
    }
    
    .nav-links a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links a {
        padding: 10px 20px;
        text-align: left;
        margin: 0;
    }

    .menu-toggle {
        display: block;
        font-size: 18px;
        color: #000;
    }

    .nav-left {
        order: -1;
        max-width: none;
    }

    .nav-center {
        flex: 1;
        margin: 0 20px;
    }

    .nav-right {
        order: 1;
        max-width: none;
        gap: 15px;
    }

    .nav-right a {
        font-size: 16px;
    }

    .count-badge {
        font-size: 10px;
        min-width: 14px;
        height: 14px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center; /* Na mobilnom centriraj */
    }
    
    .footer-nav-logo {
        width: 80px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.discount-code {
    background: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 5px;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.modal-info {
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}
