.product-holder {
    width: 100%;
    height: auto;
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 0%, rgba(79,78,78,1) 38%, rgba(130,128,128,1) 100%);
    border-bottom: 3px solid #EA530F;
    padding-top: 30px;
}

.product {
    margin: 75px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

 .product-ls {
     width: 60%;
     margin: 20px;

 }


.product-ls img {
    width: 100%;
}




.quantity-container {
    /*display: flex;*/
    /*align-items: center;*/
    margin: 20px;
    gap: 5px;
}

.quantity-btn {
    padding: 8px 12px;
    font-size: 16px;
    background-color: #EA530F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #EA530F;
}

input[type="number"] {
    width: 80px;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
}
input[type="number"]:focus {
    border-color: #EA530F;
}

/* Sakrivanje strelica za povećanje/smanjenje */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}


.product-rs h2 {
    margin-bottom: 20px;
}


.product-rs p {
    margin-bottom: 20px;
}

.btn {
    width: 175px;
    height: 50px;
    transform: skewX(-15deg);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #EA530F;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    /*margin: 30px 0 0 0;*/
}

.btn-a {
    display: inline-block;
    padding: 12px 31px 12px 31px;
    font-size: 18px;
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
}

.btn-a span {
    display: inline-block;
    transform: skewX(15deg); /* Vraća tekst u normalan položaj */

}


.btn:hover {
    transform: skewX(-15deg) scale(1.05);
    box-shadow: rgba(12, 1, 8, 0.4) 5px 5px, rgba(2, 1, 1, 0.3) 10px 10px, rgba(0, 0, 0, 0.2) 15px 15px, rgba(0, 0, 0, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}

.product-detailsproduct-details  {
    max-width: 1000px;
        
}

.product-details h1 {
    color: #EA530F ;
        
}

.product-details p {
    color: white ;
        
}


.d-btn {
    border: 2px solid black;
    
    
    
}


