/* === Glavni kontejner kartice === */
.product-card {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    background: #f8f9fd;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

/* === Wrapper slike === */
.product-image-wrapper {
    width: 100%;
    height: 65%;
    background-color: #f8f9fd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-wrapper img {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    width: 85%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    mix-blend-mode: multiply;
}

.product-card:hover .product-image-wrapper img {
    transform: translate(-50%, -50%) scale(1.07);
}

/* === Tag badge === */
.product-tag-badge {
    position: absolute;
    top: 7%;
    left: 6%;
    padding: 0.2em 1em;
    border: 1.5px solid var(--tag-color);
    border-radius: 999px;
    background-color: var(--tag-color);
    color: white;
    font-size: 75%;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
}

/* === Info sekcija === */
.product-info {
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1% 6%;
    box-sizing: border-box;
    text-align: left;
    position: relative;
}

/* Red 1 – Brend */
.brand-name {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    font-weight: 500;
    color: #111;
    margin: 0;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Open Sans", sans-serif;
}

/* Red 2 – Naziv proizvoda */
.product-name {
    font-size: clamp(0.9rem, 1vw, 1.2rem);
    font-weight: normal;
    color: #787878;
    margin: 0;
    margin-top: 2%;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-colors {
    font-size: clamp(0.9rem, 1vw, 1.2rem);
    font-weight: normal;
    color: #787878;
    margin: 0;
    margin-top: 1%;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Red 3 – Cijena (pozicionirana dole desno) */
.product-price {
    position: absolute;
    bottom: 15%;
    right: 6%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8%;
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
}

/* Sale cijena */
.sale-price {
    font-weight: bold;
    color: #245069;
}

/* Regularna cijena */
.regular-price {
    font-weight: normal;
    color: #245069;
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 90%;
}

/* === Wrapper za boje (ako aktiviraš u budućnosti) === */
.brand-colors-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2%;
    height: 100%;
}

/* === Krugovi za boje === */
.color-dot {
    height: 20%;
    aspect-ratio: 1/1;
    background-color: #ccc;
    border-radius: 50%;
    margin-left: -30%;
    box-shadow: 0px 0.5vw 0.5vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}


/* === 4K === */
@media (min-width: 2560px) {
    .product-tag-badge {
        font-size: 95%;
        padding: 0.2em 1em;
    }
}

/* === 2K === */
@media (min-width: 2000px) and (max-width: 2559px) {
    .product-tag-badge {
        font-size: 95%;
        padding: 0.2em 1em;
    }
}

/* === Full HD (1920px) === */
@media (min-width: 1441px) and (max-width: 1999px) {
    .product-tag-badge {
        font-size: clamp(0.9rem, 0.9vw, 1.5rem);
        padding: clamp(0.15em, 0.3vw, 0.2em) clamp(0.8em, 2vw, 1em);
    }
}

/* === Laptopi (1440, 1536, 1600) === */
@media (min-width: 1201px) and (max-width: 1440px) {
    .product-tag-badge {
        font-size: clamp(0.85rem, 0.8vw, 0.95rem);
        padding: clamp(0.14em, 0.25vw, 0.18em) clamp(0.7em, 1.8vw, 0.9em);
    }
}

/* === Tablet / mobilni (do 1200px) === */
@media (max-width: 1200px) {
    .product-tag-badge {
        font-size: 80%;
        padding: 0.18em 0.8em;
    }
}
