/*************************************
    BREADCRUMB
*************************************/
#breadcrumbs {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #ebf0fa, #c8d3ea);
    color: black;
    border: none;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    padding: 15px;
}


/*************************************
    KARTICA PROIZVODA
*************************************/
.product-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    padding: 8px;
    cursor: pointer;
    transition: .2s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Lijeva i desna strana */
.product-left  { width: 40%; position: relative; }
.product-right { width: 60%; padding-left: 15px; display: flex; flex-direction: column; }

/* Slika proizvoda */
.product-image-wrapper { width: 100%; position: relative; }
.product-image {
    width: 100%;
    border-radius: 8px;
}

/* Logo banke */
.product-logo {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 60px;
    background: #fff;
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* Naslov i opis */
.product-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.product-desc {
    font-size: 13px;
    color: #444;
    flex: 1;
}

/* Dugme Uporedi/Ukloni */
.compare-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    min-width: 75px;
    height: 32px;
    padding: 4px 8px;
    font-weight: 700;
    font-size: 13px;
    z-index: 9999;
    pointer-events: auto;
}

/* Klik cijele kartice */
.product-link { position: relative; }
.product-link::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}


/*************************************
    MOBILE PRIKAZ
*************************************/
@media (max-width: 768px) {

    .product-card {
        flex-direction: row;
        padding: 4px;
        min-height: 110px;
    }

    .product-left  { width: 45%; }
    .product-right { width: 55%; padding-left: 10px; }

    .product-logo {
        width: 45px;
        bottom: 6px;
        right: 6px;
    }

    .product-title { font-size: 14px; }
    .product-desc  { font-size: 12px; }

    .compare-btn {
        height: 28px;
        min-width: 60px;
        font-size: 12px;
        color: black;
        background-color: orange;
    }
}


    .proizvod-detalji-table {
        width: 100%;
        border-collapse: collapse;
        margin: 15px 0 25px 0;
        font-size: 15px;
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }

    .proizvod-detalji-table tr td {
        border: 1px solid #e6e6e6;
        padding: 10px 14px;
    }

    .proizvod-detalji-table tr td:first-child {
        background: #f7f9fc;
        font-weight: 600;
        width: 35%;
        color: #003e9c;
    }

    .proizvod-detalji-table tr:nth-child(even) td {
        background: #fafafa;
    }

    @media(max-width: 767px) {
        .proizvod-detalji-table tr td {
            display: block;
            width: 100% !important;
        }
        .proizvod-detalji-table tr td:first-child {
            border-bottom: none;
            background: #eff3fa;
        }
    }
/* U varijantama smanji marginu za tabele */
.tab-content .proizvod-detalji-table {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}
