.search-field {
    display: inline-block;
    width: 80%;
}

button[type="submit"] {
    background: url('https://cdn1.iconfinder.com/data/icons/unicons-line-vol-5/24/search-alt-512.png') no-repeat center center;
    background-size: contain;
    border: none;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
}

.breadcrumbs {
    padding: 0px;
    margin-bottom: 4px;
    color: #0489B1;
	font-family: Inter, sans-serif;
    font-size: 16px;
	color: black;
	
}

.breadcrumbs a {
	display: inline-block;
    color: #0489B1;
    text-decoration: none;
    font-weight: 350;
}

/* Layout grid */
.staron-product-grid {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

/* Naslov */
.staron-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* PDF dugme */
.staron-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #d90000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.staron-btn:hover {
    background: #a50000;
}

/* Video */
.staron-video {
    margin-top: 20px;
}

/* Dodatna galerija */
.staron-extra-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 30px;
}
.staron-extra-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsivno */
@media (max-width: 992px) {
    .staron-product-grid {
        grid-template-columns: 1fr;
    }
}
