/* Specifikacije proizvoda - posebna lista */
.product-specs {
    list-style: disc inside;
    display: block;
    padding: 1em 2em;
    margin: 0.5em 0 0 0;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    font-size: 1em;
}
.product-specs li {
    margin-bottom: 0.3em;
    padding: 0;
    color: #222;
}
/* Korpa — badge na nav linku */
.cart-badge {
    display: none;
    background: #007b3a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 4px;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-left: 3px;
    line-height: 18px;
}

/* Dodaj u korpu — dugme na karticama */
.add-to-cart-btn {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.55em 0;
    background: #007b3a;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.18s;
    letter-spacing: 0.03em;
}
.add-to-cart-btn:hover { background: #005c2b; }

/* AI savetnik — brza dugmad */
.ai-chip {
    border: 1px solid #b9c8b9;
    background: #fff;
    border-radius: 16px;
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #2a4a2a;
    transition: background 0.15s, border-color 0.15s;
}
.ai-chip:hover {
    background: #edf5ed;
    border-color: #007b3a;
}
/* Grid raspored za proizvode */
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.product {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1.5rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.product:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.product img {
    max-width: 120px;
    max-height: 120px;
    margin-bottom: 1rem;
    object-fit: contain;
}
.product h2 {
    font-size: 1.2rem;
    margin: 0.5rem 0 0.5rem 0;
    text-align: center;
}
.product p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
    background: none;
    padding: 0;
}
.product .price {
    font-weight: bold;
    color: #007b3a;
    margin-bottom: 0.5rem;
}
.product a {
    background: #222;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s;
}
.product a:hover {
    background: #007b3a;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    width: 100%;
    min-height: 100vh;
    background-color: white;
}

@font-face {
    font-family: 'bankgothic_lt_btlight';
    src: url('bgothl-webfont.woff2') format('woff2'),
         url('bgothl-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

#menuBg {
    display: none;
}

nav.main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.09);
    z-index: 25;
}

.nav-logo {
    font-family: 'bankgothic_lt_btlight', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #111;
    text-decoration: none;
    letter-spacing: 0.15em;
    flex-shrink: 0;
    margin-right: 1.5rem;
}
.nav-logo:hover { color: #007b3a; }

.main-menu ul, ul.main-menu {
    position: static;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    font-size: 0.95rem;
    font-family: 'bankgothic_lt_btlight';
    font-weight: bold;
}
.main-menu ul li, ul.main-menu li {
    list-style: none;
    padding: 0;
}
.main-menu ul li a, ul.main-menu li a {
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    display: block;
    white-space: nowrap;
    color: #0f6b34;
}
.main-menu ul li a:hover,
.main-menu ul li a.active,
ul.main-menu li a:hover,
ul.main-menu li a.active {
    background-color: black;
    color: white;
}

p{
  background-color: white;
  color:rgb(0, 0, 0);
  padding: 50px;
  margin: 0;
  font-size: 1.5em;
  font-family: 'Open Sans Condensed', sans-serif;
  letter-spacing: 4px;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid #dbe5de;
    background: #f6f9f7;
    padding: 1rem 1.2rem 1.25rem;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-footer-copy {
    margin: 0;
    padding: 0;
    background: transparent;
    color: #4b5e53;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    font-family: Arial, sans-serif;
}

.site-footer-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.site-footer-links a {
    color: #0f6b34;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
}

.site-footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}