.kontrol {
    background-color: transparent;
    border: none;
}

.k-icon {
    filter: brightness(100%);
    -webkit-filter: brightness(100%);
}

.kontrol:hover,
.kontrol:focus {
    background-color: rgba(0, 0, 0, 0.1);
}

.prd-c {
    color: var(--primary);
}

.three-container {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .three-container {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .three-container {
        height: 500px;
    }
}

.table-borderless td {
    padding-left: 0px;
}

.btn-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 15px 20px; 
    font-size: 16px;
    cursor: pointer;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}