/* General Styles */


#luma-container {
    position: relative;
    width: 650px;
    height: 365px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
}

#luma-video {
    width: 100%;
    height: 100%;
}


#cart-container {
    position: absolute;
    top: 75px;
    right: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;  
    height: 40px; 
    font-size: 18px;
    font-weight: bold;
    color: black;
    border: 3px solid #ffffff;
    border-radius: 50%;
    text-align: center;
}

#cart-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

#cart-count {
    color: #fff;
    font-size: 18px;
}

#slider-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
}

#slider {
    display: flex;
    overflow: hidden;
    width: 80%;
    justify-content: center;
    gap: 10px;
}

.slide {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide:hover {
    transform: scale(1.1);
}

button {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

button:focus {
    outline: none;
}

#prev-slide {
    margin-right: 20px;
}

#next-slide {
    margin-left: 20px;
}


.custom-button {
    position: absolute;
    top: 190px; /* Malo ispod korpe */
    right: 55px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
}



.custom-button:hover {
    text-decoration: none;
    background-color: #cc5500;
    color:white;
}


.hidden {
    display: none !important;
}
